Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore(deps): bump the npm group across 1 directory with 16 updates #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the npm group with 16 updates in the / directory:

Package From To
@effect/schema 0.64.16 0.75.4
@effect/typeclass 0.23.15 0.28.2
effect 2.4.15 3.9.2
fast-check 3.17.1 3.22.0
typescript 5.4.3 5.6.3
@changesets/cli 2.27.1 2.27.9
@effect/docgen 0.4.0 0.4.5
@faker-js/faker 8.4.1 9.0.3
@typescript-eslint/eslint-plugin 7.4.0 8.8.1
@typescript-eslint/parser 7.4.0 8.8.1
ajv 8.12.0 8.17.1
eslint 8.57.0 9.12.0
eslint-plugin-deprecation 2.0.0 3.0.0
husky 9.0.11 9.1.6
tsup 8.0.2 8.3.0
vitest 1.4.0 2.1.2

Updates @effect/schema from 0.64.16 to 0.75.4

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.75.4

Patch Changes

  • Updated dependencies [61a99b2]:
    • effect@3.9.2

@​effect/schema@​0.75.3

Patch Changes

  • #3761 360ec14 Thanks @​gcanti! - Allow Schema.Either to support Schema.Never without type errors, closes #3755.

    • Updated the type parameters of format to extend Schema.All instead of Schema<A, I, R>.
    • Updated the type parameters of Schema.EitherFromSelf to extend Schema.All instead of Schema.Any.
    • Updated the type parameters of Schema.Either to extend Schema.All instead of Schema.Any.
    • Updated the type parameters of Schema.EitherFromUnion to extend Schema.All instead of Schema.Any.
Changelog

Sourced from @​effect/schema's changelog.

0.75.4

Patch Changes

  • Updated dependencies [61a99b2]:
    • effect@3.9.2

0.75.3

Patch Changes

  • #3761 360ec14 Thanks @​gcanti! - Allow Schema.Either to support Schema.Never without type errors, closes #3755.

    • Updated the type parameters of format to extend Schema.All instead of Schema<A, I, R>.
    • Updated the type parameters of Schema.EitherFromSelf to extend Schema.All instead of Schema.Any.
    • Updated the type parameters of Schema.Either to extend Schema.All instead of Schema.Any.
    • Updated the type parameters of Schema.EitherFromUnion to extend Schema.All instead of Schema.Any.

0.75.2

Patch Changes

  • #3753 f02b354 Thanks @​gcanti! - Enhanced Error Reporting for Discriminated Union Tuple Schemas, closes #3752

    Previously, irrelevant error messages were generated for each member of the union. Now, when a discriminator is present in the input, only the relevant member will trigger an error.

    Before

    import * as Schema from "@effect/schema/Schema"
    const schema = Schema.Union(
    Schema.Tuple(Schema.Literal("a"), Schema.String),
    Schema.Tuple(Schema.Literal("b"), Schema.Number)
    ).annotations({ identifier: "MyUnion" })
    console.log(Schema.decodeUnknownSync(schema)(["a", 0]))
    /*
    throws:
    ParseError: MyUnion
    ├─ readonly ["a", string]
    │  └─ [1]
    │     └─ Expected string, actual 0
    └─ readonly ["b", number]
    └─ [0]
    └─ Expected "b", actual "a"
    */

    After

... (truncated)

Commits

Updates @effect/typeclass from 0.23.15 to 0.28.2

Release notes

Sourced from @​effect/typeclass's releases.

@​effect/typeclass@​0.28.2

Patch Changes

Changelog

Sourced from @​effect/typeclass's changelog.

0.28.2

Patch Changes

0.28.1

Patch Changes

  • Updated dependencies [3b2ad1d]:
    • effect@3.9.1

0.28.0

Patch Changes

0.27.5

Patch Changes

0.27.4

Patch Changes

  • Updated dependencies [4509656]:
    • effect@3.8.4

0.27.3

Patch Changes

  • Updated dependencies [bb5ec6b]:
    • effect@3.8.3

0.27.2

Patch Changes

  • Updated dependencies [f0d8ef1]:
    • effect@3.8.2

... (truncated)

Commits

Updates effect from 2.4.15 to 3.9.2

Release notes

Sourced from effect's releases.

effect@3.9.2

Patch Changes

Changelog

Sourced from effect's changelog.

3.9.2

Patch Changes

3.9.1

Patch Changes

3.9.0

Minor Changes

... (truncated)

Commits

Updates fast-check from 3.17.1 to 3.22.0

Release notes

Sourced from fast-check's releases.

Graphemes support on fc.string

[Code][Diff]

Features

  • (PR#5222) Support for grapheme on fc.string
  • (PR#5233) Mark as deprecated most of char and string arbitraries
  • (PR#5238) Deprecate bigInt's alternatives

Fixes

  • (PR#5237) CI: Drop TypeScript rc release channel
  • (PR#5241) CI: Move to changeset
  • (PR#5199) Doc: Publish release note for 3.21.0
  • (PR#5240) Doc: Better string's deprecation note in documentation
  • (PR#5203) Refactor: Add missing types on exported

Support customisable versions on uuid

[Code][Diff]

Features

  • (PR#5172) Support UUID versions [1-15] on uuidV
  • (PR#5189) Deprecate uuidV in favor of uuid
  • (PR#5188) Customize versions directly from uuid

Fixes

  • (PR#5190) CI: Support npm publish on other tags
  • (PR#5124) Doc: Publish release note for 3.20.0
  • (PR#5137) Doc: Add missing options in the documentation for float and double
  • (PR#5142) Doc: Better width for stargazer badge in the documentation
  • (PR#5143) Doc: Document Faker integration
  • (PR#5144) Doc: Add support us page in our documentation

New arbitraries to alter shrinking capabilities

[Code][Diff]

Features

  • (PR#5047) Introduce new fc.noShrink arbitrary
  • (PR#5050) Introduce new fc.noBias arbitrary
  • (PR#5006) Add ability to limit shrink path
  • (PR#5112) Simplify limitShrink before releasing

Fixes

  • (PR#5013) CI: Drop verbosity flag at unpack step in CI
  • (PR#5074) CI: Check types with multiple TypeScript
  • (PR#5015) Doc: Release note for 3.19.0

... (truncated)

Changelog

Sourced from fast-check's changelog.

3.22.0

Graphemes support on fc.string [Code][Diff]

Features

  • (PR#5222) Support for grapheme on fc.string
  • (PR#5233) Mark as deprecated most of char and string arbitraries
  • (PR#5238) Deprecate bigInt's alternatives

Fixes

  • (PR#5237) CI: Drop TypeScript rc release channel
  • (PR#5241) CI: Move to changeset
  • (PR#5199) Doc: Publish release note for 3.21.0
  • (PR#5240) Doc: Better string's deprecation note in documentation
  • (PR#5203) Refactor: Add missing types on exported

3.21.0

Support customisable versions on uuid [Code][Diff]

Features

  • (PR#5172) Support UUID versions [1-15] on uuidV
  • (PR#5189) Deprecate uuidV in favor of uuid
  • (PR#5188) Customize versions directly from uuid

Fixes

  • (PR#5190) CI: Support npm publish on other tags
  • (PR#5124) Doc: Publish release note for 3.20.0
  • (PR#5137) Doc: Add missing options in the documentation for float and double
  • (PR#5142) Doc: Better width for stargazer badge in the documentation
  • (PR#5143) Doc: Document Faker integration
  • (PR#5144) Doc: Add support us page in our documentation

3.20.0

New arbitraries to alter shrinking capabilities [Code][Diff]

Features

... (truncated)

Commits
  • 4e04fda 🔖 Update CHANGELOG.md for fast-check@3.22.0, @​fast-check/vitest@​0.1.3, @​fast-...
  • 1baccc5 🗑️ Deprecate bigInt's alternatives (#5238)
  • 3f4f120 🗑️ Mark as deprecated most of char and string arbitraries (#5233)
  • 9f5ec86 ✨ Support for grapheme on fc.string (#5222)
  • 7d3a25f ⬆️ Update dependency @​microsoft/api-extractor to ^7.47.7 (#5230)
  • 04c9cfd ⬆️ Update dependency typedoc to ^0.26.6 (#5223)
  • acb87ef ⬆️ Update dependency @​microsoft/api-extractor to ^7.47.6 (#5208)
  • 49746db ♻️ Add missing types on exported (#5203)
  • 1801d1a ⬆️ Update dependency @​types/node to ^20.14.15 (#5197)
  • bec5d59 🔖 Update CHANGELOG.md for fast-check@3.21.0 (#5194)
  • Additional commits viewable in compare view

Updates typescript from 5.4.3 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • Additional commits viewable in compare view

Updates @changesets/cli from 2.27.1 to 2.27.9

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.9

Patch Changes

@​changesets/cli@​2.27.8

Patch Changes

@​changesets/cli@​2.27.7

Patch Changes

  • #1047 d108fa6 Thanks @​patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.

  • #1400 dd6e5bb Thanks @​Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace

  • Updated dependencies [d108fa6, dd6e5bb, dd6e5bb]:

    • @​changesets/apply-release-plan@​7.0.4
    • @​changesets/config@​3.0.2
    • @​changesets/get-dependents-graph@​2.1.1
    • @​changesets/assemble-release-plan@​6.0.3
    • @​changesets/get-release-plan@​4.0.3

@​changesets/cli@​2.27.6

Patch Changes

  • #1392 f295b3e Thanks @​bluwy! - Replace meow dependency with mri to reduce the number of transitive dependencies

... (truncated)

Commits

Updates @effect/docgen from 0.4.0 to 0.4.5

Release notes

Sourced from @​effect/docgen's releases.

v0.4.5

Patch Changes

  • 8959440: Fixes the type checking and execution of examples on Windows

v0.4.4

Patch Changes

  • 00ce7a0: upgrade ts-morph to 23.0.0
  • 5b888e5: srcDir and outDir fields in docgen.json are currently ignored. With this patch, they are taken into account

v0.4.3

Patch Changes

  • 7add2b9: update dependencies

v0.4.2

Patch Changes

  • 619a0e3: use @​effect/markdown-toc instead of github dependency

v0.4.1

Patch Changes

  • b9bfab0: add reporting of tsc and tsx errors, closes #66
Changelog

Sourced from @​effect/docgen's changelog.

0.4.5

Patch Changes

  • 8959440: Fixes the type checking and execution of examples on Windows

0.4.4

Patch Changes

  • 00ce7a0: upgrade ts-morph to 23.0.0
  • 5b888e5: srcDir and outDir fields in docgen.json are currently ignored. With this patch, they are taken into account

0.4.3

Patch Changes

  • 7add2b9: update dependencies

0.4.2

Patch Changes

  • 619a0e3: use @​effect/markdown-toc instead of github dependency

0.4.1

Patch Changes

  • b9bfab0: add reporting of tsc and tsx errors, closes #66
Commits

Updates @faker-js/faker from 8.4.1 to 9.0.3

Release notes

Sourced from @​faker-js/faker's releases.

v9.0.3

What's Changed

New Contributors

Full Changelog: faker-js/faker@v9.0.2...v9.0.3

v9.0.2

What's Changed

Full Changelog: faker-js/faker@v9.0.1...v9.0.2

v9.0.1

What's Changed

... (truncated)

Changelo...

Description has been truncated

Bumps the npm group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@effect/schema](https://github.com/Effect-TS/effect/tree/HEAD/packages/schema) | `0.64.16` | `0.75.4` |
| [@effect/typeclass](https://github.com/Effect-TS/effect/tree/HEAD/packages/typeclass) | `0.23.15` | `0.28.2` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `2.4.15` | `3.9.2` |
| [fast-check](https://github.com/dubzzz/fast-check/tree/HEAD/packages/fast-check) | `3.17.1` | `3.22.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.3` | `5.6.3` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.9` |
| [@effect/docgen](https://github.com/effect-ts/docgen) | `0.4.0` | `0.4.5` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `8.4.1` | `9.0.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.4.0` | `8.8.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.4.0` | `8.8.1` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.12.0` | `8.17.1` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.12.0` |
| [eslint-plugin-deprecation](https://github.com/gund/eslint-plugin-deprecation) | `2.0.0` | `3.0.0` |
| [husky](https://github.com/typicode/husky) | `9.0.11` | `9.1.6` |
| [tsup](https://github.com/egoist/tsup) | `8.0.2` | `8.3.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.4.0` | `2.1.2` |



Updates `@effect/schema` from 0.64.16 to 0.75.4
- [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.75.4/packages/schema)

Updates `@effect/typeclass` from 0.23.15 to 0.28.2
- [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.28.2/packages/typeclass)

Updates `effect` from 2.4.15 to 3.9.2
- [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@3.9.2/packages/effect)

Updates `fast-check` from 3.17.1 to 3.22.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.22.0/packages/fast-check)

Updates `typescript` from 5.4.3 to 5.6.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.3...v5.6.3)

Updates `@changesets/cli` from 2.27.1 to 2.27.9
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.27.1...@changesets/cli@2.27.9)

Updates `@effect/docgen` from 0.4.0 to 0.4.5
- [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.4.0...v0.4.5)

Updates `@faker-js/faker` from 8.4.1 to 9.0.3
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v8.4.1...v9.0.3)

Updates `@typescript-eslint/eslint-plugin` from 7.4.0 to 8.8.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/v8.8.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.4.0 to 8.8.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/v8.8.1/packages/parser)

Updates `ajv` from 8.12.0 to 8.17.1
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.12.0...v8.17.1)

Updates `eslint` from 8.57.0 to 9.12.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.12.0)

Updates `eslint-plugin-deprecation` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/gund/eslint-plugin-deprecation/releases)
- [Changelog](https://github.com/gund/eslint-plugin-deprecation/blob/master/CHANGELOG.md)
- [Commits](gund/eslint-plugin-deprecation@v2.0.0...v3.0.0)

Updates `husky` from 9.0.11 to 9.1.6
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.6)

Updates `tsup` from 8.0.2 to 8.3.0
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.0.2...v8.3.0)

Updates `vitest` from 1.4.0 to 2.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.2/packages/vitest)

---
updated-dependencies:
- dependency-name: "@effect/schema"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@effect/typeclass"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-major
  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-minor
  dependency-group: npm
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@effect/docgen"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@faker-js/faker"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ajv
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: eslint-plugin-deprecation
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  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 Oct 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in 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.

0 participants