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 across 1 directory with 15 updates #84

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2024

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

Package From To
@effect/schema 0.64.16 0.72.0
@effect/typeclass 0.23.15 0.26.0
effect 2.4.15 3.7.0
fast-check 3.17.1 3.22.0
typescript 5.4.3 5.5.4
@changesets/cli 2.27.1 2.27.7
@effect/docgen 0.4.0 0.4.3
@typescript-eslint/eslint-plugin 7.4.0 8.3.0
@typescript-eslint/parser 7.4.0 8.3.0
ajv 8.12.0 8.17.1
eslint 8.57.0 9.9.1
eslint-plugin-deprecation 2.0.0 3.0.0
husky 9.0.11 9.1.5
tsup 8.0.2 8.2.4
vitest 1.4.0 2.0.5

Updates @effect/schema from 0.64.16 to 0.72.0

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.72.0

Patch Changes

@​effect/schema@​0.71.4

Patch Changes

  • Updated dependencies [e809286]:
    • effect@3.6.8

@​effect/schema@​0.71.3

Patch Changes

  • Updated dependencies [50ec889]:
    • effect@3.6.7
Changelog

Sourced from @​effect/schema's changelog.

0.72.0

Patch Changes

0.71.4

Patch Changes

  • Updated dependencies [e809286]:
    • effect@3.6.8

0.71.3

Patch Changes

  • Updated dependencies [50ec889]:
    • effect@3.6.7

0.71.2

Patch Changes

0.71.1

Patch Changes

0.71.0

Minor Changes

  • #3433 c1987e2 Thanks @​gcanti! - Make json schema output more compatible with Open AI structured output, closes #3432.

    JSONSchema

    • remove oneOf in favour of anyOf (e.g. in JsonSchema7object, JsonSchema7empty, JsonSchema7Enums)
    • remove const in favour of enum (e.g. in JsonSchema7Enums)
    • remove JsonSchema7Const type
    • remove JsonSchema7OneOf type

    AST

... (truncated)

Commits

Updates @effect/typeclass from 0.23.15 to 0.26.0

Release notes

Sourced from @​effect/typeclass's releases.

@​effect/typeclass@​0.26.0

Patch Changes

@​effect/typeclass@​0.25.8

Patch Changes

  • Updated dependencies [e809286]:
    • effect@3.6.8

@​effect/typeclass@​0.25.7

Patch Changes

  • Updated dependencies [50ec889]:
    • effect@3.6.7

@​effect/typeclass@​0.25.6

Patch Changes

Changelog

Sourced from @​effect/typeclass's changelog.

0.26.0

Patch Changes

0.25.8

Patch Changes

  • Updated dependencies [e809286]:
    • effect@3.6.8

0.25.7

Patch Changes

  • Updated dependencies [50ec889]:
    • effect@3.6.7

0.25.6

Patch Changes

0.25.5

Patch Changes

0.25.4

Patch Changes

0.25.3

Patch Changes

  • Updated dependencies [04adcac]:
    • effect@3.6.3

0.25.2

... (truncated)

Commits

Updates effect from 2.4.15 to 3.7.0

Release notes

Sourced from effect's releases.

effect@3.7.0

Minor Changes

  • #3410 2f456cc Thanks @​vinassefranche! - preserve Array.modify Array.modifyOption non emptiness

  • #3410 8745e41 Thanks @​patroza! - improve: type Fiber.awaitAll as Exit<A, E>[].

  • #3410 e557838 Thanks @​titouancreach! - New constructor Config.nonEmptyString

  • #3410 d6e7e40 Thanks @​KhraksMamtsov! - preserve Array.replace Array.replaceOption non emptiness

  • #3410 8356321 Thanks @​KhraksMamtsov! - add Effect.bindAll api

    This api allows you to combine Effect.all with Effect.bind. It is useful when you want to concurrently run multiple effects and then combine their results in a Do notation pipeline.

    import { Effect } from "effect"
    const result = Effect.Do.pipe(
    Effect.bind("x", () => Effect.succeed(2)),
    Effect.bindAll(
    ({ x }) => ({
    a: Effect.succeed(x + 1),
    b: Effect.succeed("foo")
    }),
    { concurrency: 2 }
    )
    )
    assert.deepStrictEqual(Effect.runSync(result), {
    x: 2,
    a: 3,
    b: "foo"
    })

  • #3410 192f2eb Thanks @​tim-smart! - add propagateInterruption option to Fiber{Handle,Set,Map}

    This option will send any external interrupts to the .join result.

  • #3410 718cb70 Thanks @​dilame! - feat(Stream): implement race operator, which accepts two upstreams and returns a stream that mirrors the first upstream to emit an item and interrupts the other upstream.

    import { Stream, Schedule, Console, Effect } from "effect"
    const stream = Stream.fromSchedule(Schedule.spaced("2 millis")).pipe(
    Stream.race(Stream.fromSchedule(Schedule.spaced("1 millis"))),
    Stream.take(6),
    Stream.tap((n) => Console.log(n))

... (truncated)

Changelog

Sourced from effect's changelog.

3.7.0

Minor Changes

  • #3410 2f456cc Thanks @​vinassefranche! - preserve Array.modify Array.modifyOption non emptiness

  • #3410 8745e41 Thanks @​patroza! - improve: type Fiber.awaitAll as Exit[].

  • #3410 e557838 Thanks @​titouancreach! - New constructor Config.nonEmptyString

  • #3410 d6e7e40 Thanks @​KhraksMamtsov! - preserve Array.replace Array.replaceOption non emptiness

  • #3410 8356321 Thanks @​KhraksMamtsov! - add Effect.bindAll api

    This api allows you to combine Effect.all with Effect.bind. It is useful when you want to concurrently run multiple effects and then combine their results in a Do notation pipeline.

    import { Effect } from "effect"
    const result = Effect.Do.pipe(
    Effect.bind("x", () => Effect.succeed(2)),
    Effect.bindAll(
    ({ x }) => ({
    a: Effect.succeed(x + 1),
    b: Effect.succeed("foo")
    }),
    { concurrency: 2 }
    )
    )
    assert.deepStrictEqual(Effect.runSync(result), {
    x: 2,
    a: 3,
    b: "foo"
    })

  • #3410 192f2eb Thanks @​tim-smart! - add propagateInterruption option to Fiber{Handle,Set,Map}

    This option will send any external interrupts to the .join result.

  • #3410 718cb70 Thanks @​dilame! - feat(Stream): implement race operator, which accepts two upstreams and returns a stream that mirrors the first upstream to emit an item and interrupts the other upstream.

    import { Stream, Schedule, Console, Effect } from "effect"
    const stream = Stream.fromSchedule(Schedule.spaced("2 millis")).pipe(
    Stream.race(Stream.fromSchedule(Schedule.spaced("1 millis"))),
    Stream.take(6),

... (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.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.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.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates @changesets/cli from 2.27.1 to 2.27.7

Release notes

Sourced from @​changesets/cli's releases.

@​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

  • #1390 6a3452e Thanks @​bluwy! - Display changeset status --verbose in list form and remove tty-table dependency

@​changesets/cli@​2.27.5

Patch Changes

  • #1370 5e9d33a Thanks @​Andarist! - Fixed a regression that caused changeset version to fail on packages having a dev dependency on a skipped package.

  • Updated dependencies [5e9d33a]:

    • @​changesets/get-dependents-graph@​2.1.0
    • @​changesets/assemble-release-plan@​6.0.2
    • @​changesets/config@​3.0.1
    • @​changesets/get-release-plan@​4.0.2
    • @​changesets/apply-release-plan@​7.0.3

@​changesets/cli@​2.27.4

Patch Changes

  • #1361 954a16a Thanks @​jakebailey! - Version 2.25.0 introduced the privatePackage configuration option with default { version: false, tag: false }; due to a bug, these options were not respected in all commands, leading to commands like changeset tag still tagging private packages. This has been fixed, and all packages now respect this option.

  • #1369 d729d8c Thanks @​Andarist! - changeset tag should now correctly skip tags that exist on the remote

  • Updated dependencies [954a16a]:

    • @​changesets/assemble-release-plan@​6.0.1
    • @​changesets/apply-release-plan@​7.0.2
    • @​changesets/get-release-plan@​4.0.1

@​changesets/cli@​2.27.3

Patch Changes

  • #1357 18c966a Thanks @​Andarist! - Fixed an issue with changeset status executed without since argument. It should now correctly use the configured base branch as the default value.

... (truncated)

Commits

Updates @effect/docgen from 0.4.0 to 0.4.3

Release notes

Sourced from @​effect/docgen's releases.

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.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 @typescript-eslint/eslint-plugin from 7.4.0 to 8.3.0

Release notes

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

v8.3.0

8.3.0 (2024-08-26)

🚀 Features

  • eslint-plugin: [no-deprecation] add rule (#9783)
  • typescript-estree: replace globby w/ fast-glob (#9518)
  • typescript-estree: reload project service once when file config isn't found (#9853)

🩹 Fixes

  • ast-spec: use Expression in argument of ThrowStatement (#9632)
  • eslint-plugin: [no-unnecessary-template-expression] add missing parentheses in autofix (#8673)
  • eslint-plugin: [no-unnecessary-type-parameters] check mapped alias type arguments (#9741)
  • utils: add missing TSSatisfiesExpression in RuleListenerBaseSelectors (#9832)
  • utils: add TSDeclareFunction to functionTypeTypes (#9788)

❤️ Thank You

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

v8.2.0

8.2.0 (2024-08-19)

🚀 Features

  • eslint-plugin: add suggestion to require-await to remove async keyword (#9718)
  • typescript-estree: special-case error for parserOptions.project and project references (#9686)

🩹 Fixes

  • eslint-plugin: [use-unknown-in-catch-callback-variable] flag second argument of .then (#9059)
  • eslint-plugin: [no-unnecessary-type-assertion] conflict with TS for variables used before assignment (#9209)
  • eslint-plugin: delete [] in message if ReadOnly is detected (#9513)
  • eslint-plugin: [no-redundant-type-constituents] differentiate a types-error any from a true any (#9555)
  • eslint-plugin: [no-unnecessary-type-parameters] check mapped constraint types if necessary (#9740)
  • eslint-plugin: [no-unsafe-enum-comparison] add logic to see through intersections (#9777)
  • typescript-estree: pass in tsconfigRootDir as cwd to getParsedConfigFile (#9804)

❤️ Thank You

... (truncated)

Changelog

Sourced from

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

| Package | From | To |
| --- | --- | --- |
| [@effect/schema](https://github.com/Effect-TS/effect/tree/HEAD/packages/schema) | `0.64.16` | `0.72.0` |
| [@effect/typeclass](https://github.com/Effect-TS/effect/tree/HEAD/packages/typeclass) | `0.23.15` | `0.26.0` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `2.4.15` | `3.7.0` |
| [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.5.4` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.7` |
| [@effect/docgen](https://github.com/effect-ts/docgen) | `0.4.0` | `0.4.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.4.0` | `8.3.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.4.0` | `8.3.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.12.0` | `8.17.1` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.9.1` |
| [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.5` |
| [tsup](https://github.com/egoist/tsup) | `8.0.2` | `8.2.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.4.0` | `2.0.5` |



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

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

Updates `effect` from 2.4.15 to 3.7.0
- [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.7.0/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.5.4
- [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.5.4)

Updates `@changesets/cli` from 2.27.1 to 2.27.7
- [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.7)

Updates `@effect/docgen` from 0.4.0 to 0.4.3
- [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.3)

Updates `@typescript-eslint/eslint-plugin` from 7.4.0 to 8.3.0
- [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.3.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.4.0 to 8.3.0
- [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.3.0/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.9.1
- [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.9.1)

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.5
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.5)

Updates `tsup` from 8.0.2 to 8.2.4
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](egoist/tsup@v8.0.2...v8.2.4)

Updates `vitest` from 1.4.0 to 2.0.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.5/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: "@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 Sep 2, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 9, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 9, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-7691606bb9 branch September 9, 2024 07:52
# 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.

0 participants