Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore(deps): bump the npm group with 8 updates #60

Merged
merged 1 commit into from
Mar 25, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 25, 2024

Bumps the npm group with 8 updates:

Package From To
@effect/schema 0.64.5 0.64.13
@effect/typeclass 0.23.7 0.23.13
effect 2.4.7 2.4.13
fast-check 3.16.0 3.17.0
typescript 5.4.2 5.4.3
@effect/docgen 0.3.8 0.4.0
@typescript-eslint/eslint-plugin 7.2.0 7.3.1
@typescript-eslint/parser 7.2.0 7.3.1

Updates @effect/schema from 0.64.5 to 0.64.13

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.64.13

Patch Changes

@​effect/schema@​0.64.12

Patch Changes

  • #2359 9392de6 Thanks @​tim-smart! - preserve defect information in Cause.Die

  • #2385 3307729 Thanks @​tim-smart! - align runtime tuple behaviour to ts 5.4:

    from

    // ts 5.3
    type A = readonly [string, ...number[], boolean];
    type B = Required<A>; // readonly [string, ...(number | boolean)[], number | boolean]

    to

    // ts 5.4
    type A = readonly [string, ...number[], boolean];
    type B = Required<A>; // readonly [string, ...number[], boolean]
  • #2359 9392de6 Thanks @​tim-smart! - use provided message in Schema.TaggedError .toString

  • #2385 3307729 Thanks @​tim-smart! - update typescript to 5.4

  • #2396 d17a427 Thanks @​sukovanej! - Fix extend with nested union.

  • Updated dependencies [3307729]:

    • effect@2.4.12

@​effect/schema@​0.64.11

Patch Changes

@​effect/schema@​0.64.10

Patch Changes

... (truncated)

Changelog

Sourced from @​effect/schema's changelog.

0.64.13

Patch Changes

0.64.12

Patch Changes

  • #2359 9392de6 Thanks @​tim-smart! - preserve defect information in Cause.Die

  • #2385 3307729 Thanks @​tim-smart! - align runtime tuple behaviour to ts 5.4:

    from

    // ts 5.3
    type A = readonly [string, ...number[], boolean];
    type B = Required<A>; // readonly [string, ...(number | boolean)[], number | boolean]

    to

    // ts 5.4
    type A = readonly [string, ...number[], boolean];
    type B = Required<A>; // readonly [string, ...number[], boolean]
  • #2359 9392de6 Thanks @​tim-smart! - use provided message in Schema.TaggedError .toString

  • #2385 3307729 Thanks @​tim-smart! - update typescript to 5.4

  • #2396 d17a427 Thanks @​sukovanej! - Fix extend with nested union.

  • Updated dependencies [3307729]:

    • effect@2.4.12

0.64.11

Patch Changes

0.64.10

... (truncated)

Commits

Updates @effect/typeclass from 0.23.7 to 0.23.13

Release notes

Sourced from @​effect/typeclass's releases.

@​effect/typeclass@​0.23.13

Patch Changes

@​effect/typeclass@​0.23.12

Patch Changes

@​effect/typeclass@​0.23.11

Patch Changes

@​effect/typeclass@​0.23.10

Patch Changes

@​effect/typeclass@​0.23.9

Patch Changes

  • Updated dependencies [71fd528]:
    • effect@2.4.9
Changelog

Sourced from @​effect/typeclass's changelog.

0.23.13

Patch Changes

0.23.12

Patch Changes

0.23.11

Patch Changes

0.23.10

Patch Changes

0.23.9

Patch Changes

  • Updated dependencies [71fd528]:
    • effect@2.4.9

0.23.8

Patch Changes

Commits

Updates effect from 2.4.7 to 2.4.13

Release notes

Sourced from effect's releases.

effect@2.4.13

Patch Changes

effect@2.4.12

Patch Changes

effect@2.4.11

Patch Changes

  • #2384 2f488c4 Thanks @​tim-smart! - update dependencies

  • #2381 37ca592 Thanks @​tim-smart! - add fiber ref for disabling the tracer

    You can use it with the Effect.withTracerEnabled api:

    import { Effect } from "effect";
    Effect.succeed(42).pipe(
    Effect.withSpan("my-span"),
    // the span will not be registered with the tracer
    Effect.withTracerEnabled(false),
    );

  • #2383 317b5b8 Thanks @​tim-smart! - add Duration.isFinite api, to determine if a duration is not Infinity

effect@2.4.10

Patch Changes

effect@2.4.9

Patch Changes

Changelog

Sourced from effect's changelog.

2.4.13

Patch Changes

2.4.12

Patch Changes

2.4.11

Patch Changes

  • #2384 2f488c4 Thanks @​tim-smart! - update dependencies

  • #2381 37ca592 Thanks @​tim-smart! - add fiber ref for disabling the tracer

    You can use it with the Effect.withTracerEnabled api:

    import { Effect } from "effect";
    Effect.succeed(42).pipe(
    Effect.withSpan("my-span"),
    // the span will not be registered with the tracer
    Effect.withTracerEnabled(false),
    );

  • #2383 317b5b8 Thanks @​tim-smart! - add Duration.isFinite api, to determine if a duration is not Infinity

2.4.10

Patch Changes

2.4.9

Patch Changes

... (truncated)

Commits

Updates fast-check from 3.16.0 to 3.17.0

Release notes

Sourced from fast-check's releases.

Allow access to some internals details linked to the underlying random generator

[Code][Diff]

Features

  • (PR#4817) Expose internal state of the PRNG from Random

Fixes

  • (PR#4781) Doc: Official release note of 3.16.0
  • (PR#4799) Doc: Add more links in the footer
  • (PR#4800) Doc: Better colors for footer and dark mode
Changelog

Sourced from fast-check's changelog.

3.17.0

Allow access to some internals details linked to the underlying random generator [Code][Diff]

Features

  • (PR#4817) Expose internal state of the PRNG from Random

Fixes

  • (PR#4781) Doc: Official release note of 3.16.0
  • (PR#4799) Doc: Add more links in the footer
  • (PR#4800) Doc: Better colors for footer and dark mode

Commits
  • aa30464 🔖 Update CHANGELOG.md for fast-check@3.17.0 (#4823)
  • 4b7f27a ⬆️ Update dependency typescript to ~5.4.3 (#4816)
  • 74a9d3a ✨ Expose internal state of the PRNG from Random (#4817)
  • fc9f689 ⬆️ Update dependency typescript to ~5.4.2 (#4790)
  • db96c6d ⬆️ Update babel monorepo to ^7.24.3 (#4814)
  • 3a83c31 ⬆️ Update babel monorepo to ^7.24.1 (#4809)
  • 97cb318 ⬆️ Update dependency @​types/node to ^20.11.30 (#4808)
  • 2545622 ⬆️ Update dependency @​microsoft/api-extractor to ^7.43.0 (#4811)
  • 1a9dccc ⬆️ Update dependency @​types/node to ^20.11.28 (#4801)
  • 6f3dc3f ⬆️ Update dependency @​types/node to ^20.11.26 (#4794)
  • Additional commits viewable in compare view

Updates typescript from 5.4.2 to 5.4.3

Release notes

Sourced from typescript's releases.

TypeScript 5.4.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

Updates @effect/docgen from 0.3.8 to 0.4.0

Release notes

Sourced from @​effect/docgen's releases.

v0.4.0

Minor Changes

  • 5fbec18: update effect

Patch Changes

  • 08e8347: use ConfigProvider to load configuration for docgen
Changelog

Sourced from @​effect/docgen's changelog.

0.4.0

Minor Changes

  • 5fbec18: update effect

Patch Changes

  • 08e8347: use ConfigProvider to load configuration for docgen
Commits

Updates @typescript-eslint/eslint-plugin from 7.2.0 to 7.3.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v7.3.1

7.3.1 (2024-03-18)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] revert disable of ignoreVoid in strict config (#8718)

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

v7.3.0

7.3.0 (2024-03-18)

Note that this release enables rules to have more restrictive default options as configured in the strict and strict-type-checked configs. See #8364 for more details.

🚀 Features

  • eslint-plugin: [restrict-template-expressions] add allowArray option (#8389)
  • eslint-plugin: add meta.docs.recommended setting for strict config options (#8364)
  • eslint-plugin: add rule use-unknown-in-catch-callback-variables (#8383)
  • eslint-plugin: [prefer-reduce-type-parameter] supports tuple, union, intersection (#8642)
  • eslint-plugin-internal: add internal lint rule no-relative-paths-to-internal-packages (#8596)
  • typescript-estree: disallow switch statements with multiple default cases (#8411)
  • utils: add parser name to thrown parser error message (#8484)

🩹 Fixes

  • correct engines.node constraints in package.json (#8671)
  • eslint-plugin: [unbound-method] check method definition in object literal using longhand form (#8637)
  • eslint-plugin: [consistent-type-imports] handle imports without specifiers (#8308)
  • eslint-plugin: [no-redundant-type-constituents] incorrectly marks & string as redundant (#8282)
  • eslint-plugin: [no-unnecessary-qualifier] handle merge namespace with enum (#8591)
  • eslint-plugin: [no-unused-expressions] false negatives when using assertions (#8668)
  • eslint-plugin: [ban-ts-comment] more accurate handling of multiline comments (#8416)
  • eslint-plugin: [explicit-function-return-type, explicit-module-boundary-types] improved checking for allowHigherOrderFunctions option (#8508)
  • eslint-plugin: [class-literal-property-style] ignore property assigned in constructor (#8412)
  • eslint-plugin: [no-unnecessary-type-assertion] fix false negative for const variable declarations (#8558)
  • typescript-estree: fix the issue of single run inferring in the pnpm repo (#3811, #8702)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

7.3.1 (2024-03-18)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] revert disable of ignoreVoid in strict config

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

7.3.0 (2024-03-18)

🚀 Features

  • eslint-plugin: [restrict-template-expressions] add allowArray option

  • eslint-plugin: add meta.docs.recommended setting for strict config options

  • eslint-plugin: add rule use-unknown-in-catch-callback-variables

  • eslint-plugin: [prefer-reduce-type-parameter] supports tuple, union, intersection

🩹 Fixes

  • correct engines.node constraints in package.json

  • eslint-plugin: [unbound-method] check method definition in object literal using longhand form

  • eslint-plugin: [consistent-type-imports] handle imports without specifiers

  • eslint-plugin: [no-redundant-type-constituents] incorrectly marks & string as redundant

  • eslint-plugin: [no-unnecessary-qualifier] handle merge namespace with enum

  • eslint-plugin: [no-unused-expressions] false negatives when using assertions

  • eslint-plugin: [ban-ts-comment] more accurate handling of multiline comments

  • eslint-plugin: [explicit-function-return-type, explicit-module-boundary-types] improved checking for allowHigherOrderFunctions option

  • eslint-plugin: [class-literal-property-style] ignore property assigned in constructor

  • eslint-plugin: [no-unnecessary-type-assertion] fix false negative for const variable declarations

... (truncated)

Commits
  • 5995614 chore(release): publish 7.3.1
  • d78d98b fix(eslint-plugin): [no-floating-promises] revert disable of ignoreVoid in st...
  • 4cf8ec7 chore(release): publish 7.3.0
  • d2995df fix(eslint-plugin): [no-unnecessary-type-assertion] fix false negative for co...
  • 2869c68 feat(eslint-plugin): [prefer-reduce-type-parameter] supports tuple, union, in...
  • d830364 test(eslint-plugin): [no-unnecessary-type-assertion] add tests with noUncheck...
  • 04e32d6 fix(eslint-plugin): [class-literal-property-style] ignore property assigned i...
  • 612875b fix(eslint-plugin): [explicit-function-return-type, explicit-module-boundary-...
  • da006b1 fix(eslint-plugin): [ban-ts-comment] more accurate handling of multiline comm...
  • 71bfb7c chore: fix ast-spec type import snapshot errors (#8699)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 7.2.0 to 7.3.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v7.3.1

7.3.1 (2024-03-18)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] revert disable of ignoreVoid in strict config (#8718)

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

v7.3.0

7.3.0 (2024-03-18)

Note that this release enables rules to have more restrictive default options as configured in the strict and strict-type-checked configs. See #8364 for more details.

🚀 Features

  • eslint-plugin: [restrict-template-expressions] add allowArray option (#8389)
  • eslint-plugin: add meta.docs.recommended setting for strict config options (#8364)
  • eslint-plugin: add rule use-unknown-in-catch-callback-variables (#8383)
  • eslint-plugin: [prefer-reduce-type-parameter] supports tuple, union, intersection (#8642)
  • eslint-plugin-internal: add internal lint rule no-relative-paths-to-internal-packages (#8596)
  • typescript-estree: disallow switch statements with multiple default cases (#8411)
  • utils: add parser name to thrown parser error message (#8484)

🩹 Fixes

  • correct engines.node constraints in package.json (#8671)
  • eslint-plugin: [unbound-method] check method definition in object literal using longhand form (#8637)
  • eslint-plugin: [consistent-type-imports] handle imports without specifiers (#8308)
  • eslint-plugin: [no-redundant-type-constituents] incorrectly marks & string as redundant (#8282)
  • eslint-plugin: [no-unnecessary-qualifier] handle merge namespace with enum (#8591)
  • eslint-plugin: [no-unused-expressions] false negatives when using assertions (#8668)
  • eslint-plugin: [ban-ts-comment] more accurate handling of multiline comments (#8416)
  • eslint-plugin: [explicit-function-return-type, explicit-module-boundary-types] improved checking for allowHigherOrderFunctions option (#8508)
  • eslint-plugin: [class-literal-property-style] ignore property assigned in constructor (#8412)
  • eslint-plugin: [no-unnecessary-type-assertion] fix false negative for const variable declarations (#8558)
  • typescript-estree: fix the issue of single run inferring in the pnpm repo (#3811, #8702)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

7.3.1 (2024-03-18)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.3.0 (2024-03-18)

🩹 Fixes

  • correct engines.node constraints in package.json

❤️ Thank You

  • Abraham Guo
  • Alexu
  • Arka Pratim Chaudhuri
  • auvred
  • Derrick Isaacson
  • fnx
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Marta Cardoso
  • Michaël De Boey
  • Tristan Rasmussen
  • YeonJuan

You can read about our versioning strategy and releases on our website.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@effect/schema](https://github.com/effect-ts/effect/tree/HEAD/packages/schema) | `0.64.5` | `0.64.13` |
| [@effect/typeclass](https://github.com/effect-ts/effect/tree/HEAD/packages/typeclass) | `0.23.7` | `0.23.13` |
| [effect](https://github.com/effect-ts/effect/tree/HEAD/packages/effect) | `2.4.7` | `2.4.13` |
| [fast-check](https://github.com/dubzzz/fast-check/tree/HEAD/packages/fast-check) | `3.16.0` | `3.17.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.4.3` |
| [@effect/docgen](https://github.com/effect-ts/docgen) | `0.3.8` | `0.4.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.2.0` | `7.3.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.2.0` | `7.3.1` |


Updates `@effect/schema` from 0.64.5 to 0.64.13
- [Release notes](https://github.com/effect-ts/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/schema/CHANGELOG.md)
- [Commits](https://github.com/effect-ts/effect/commits/@effect/schema@0.64.13/packages/schema)

Updates `@effect/typeclass` from 0.23.7 to 0.23.13
- [Release notes](https://github.com/effect-ts/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/typeclass/CHANGELOG.md)
- [Commits](https://github.com/effect-ts/effect/commits/@effect/typeclass@0.23.13/packages/typeclass)

Updates `effect` from 2.4.7 to 2.4.13
- [Release notes](https://github.com/effect-ts/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/effect-ts/effect/commits/effect@2.4.13/packages/effect)

Updates `fast-check` from 3.16.0 to 3.17.0
- [Release notes](https://github.com/dubzzz/fast-check/releases)
- [Changelog](https://github.com/dubzzz/fast-check/blob/main/packages/fast-check/CHANGELOG.md)
- [Commits](https://github.com/dubzzz/fast-check/commits/v3.17.0/packages/fast-check)

Updates `typescript` from 5.4.2 to 5.4.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.2...v5.4.3)

Updates `@effect/docgen` from 0.3.8 to 0.4.0
- [Release notes](https://github.com/effect-ts/docgen/releases)
- [Changelog](https://github.com/Effect-TS/docgen/blob/main/CHANGELOG.md)
- [Commits](Effect-TS/docgen@v0.3.8...v0.4.0)

Updates `@typescript-eslint/eslint-plugin` from 7.2.0 to 7.3.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.2.0 to 7.3.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/parser)

---
updated-dependencies:
- dependency-name: "@effect/schema"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@effect/typeclass"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: fast-check
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@effect/docgen"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 25, 2024
@jessekelly881 jessekelly881 merged commit ff8eab0 into main Mar 25, 2024
7 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-f3247fed03 branch March 25, 2024 20:25
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant