chore(deps): bump the npm group across 1 directory with 16 updates
Bumps the npm group with 16 updates in the / directory:
| Package | From | To |
|---|---|---|
| @effect/schema | 0.64.16 |
0.74.1 |
| @effect/typeclass | 0.23.15 |
0.27.4 |
| effect | 2.4.15 |
3.8.4 |
| fast-check | 3.17.1 |
3.22.0 |
| typescript | 5.4.3 |
5.6.2 |
| @changesets/cli | 2.27.1 |
2.27.8 |
| @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.7.0 |
| @typescript-eslint/parser | 7.4.0 |
8.7.0 |
| ajv | 8.12.0 |
8.17.1 |
| eslint | 8.57.0 |
9.11.1 |
| 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.1 |
Updates @effect/schema from 0.64.16 to 0.74.1
Release notes
Sourced from @effect/schema's releases.
@effect/schema@0.74.1Patch Changes
#3669
734eae6Thanks@gcanti! - Add description annotation to the encoded part of NumberFromString.Before
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.NumberFromString
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* { "$schema": "http://json-schema.org/draft-07/schema#", "type": "string" } */
After
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.NumberFromString
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* { "$schema": "http://json-schema.org/draft-07/schema#", "type": "string", "description": "a string that will be parsed into a number" } */
#3667
fd83d0eThanks@gcanti! - Remove default json schema annotations from string, number and boolean.Before
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.String.annotations({ examples: ["a", "b"] })
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* {
... (truncated)
Changelog
Sourced from @effect/schema's changelog.
0.74.1
Patch Changes
#3669
734eae6Thanks@gcanti! - Add description annotation to the encoded part of NumberFromString.Before
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.NumberFromString
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* { "$schema": "http://json-schema.org/draft-07/schema#", "type": "string" } */
After
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.NumberFromString
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* { "$schema": "http://json-schema.org/draft-07/schema#", "type": "string", "description": "a string that will be parsed into a number" } */
#3667
fd83d0eThanks@gcanti! - Remove default json schema annotations from string, number and boolean.Before
import { JSONSchema, Schema } from "@effect/schema"const schema = Schema.String.annotations({ examples: ["a", "b"] })
console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /*
... (truncated)
Commits
46efdc6Version Packages (#3668)ad7e1deadd more description annotations (#3673)090e41cJSON Schema: handle refinements where the 'from' part includes a tran… (#3672)c57ee0cchore: fix json schema test (#3670)734eae6add description annotation to the encoded part of NumberFromString (#3669)fd83d0eremove default json schema annotations from string, number and boolean (#3667)cc3b5baVersion Packages (#3655)de48aa5Remove internal sorting of property signatures, closes #3652 (#3654)a7c3c85Version Packages (#3641)6f836a6Version Packages (#3636)- Additional commits viewable in compare view
Updates @effect/typeclass from 0.23.15 to 0.27.4
Release notes
Sourced from @effect/typeclass's releases.
@effect/typeclass@0.27.4Patch Changes
- Updated dependencies [
4509656]:
Changelog
Sourced from @effect/typeclass's changelog.
0.27.4
Patch Changes
- Updated dependencies [
4509656]:0.27.3
Patch Changes
- Updated dependencies [
bb5ec6b]:0.27.2
Patch Changes
- Updated dependencies [
f0d8ef1]:0.27.1
Patch Changes
0.27.0
Patch Changes
- Updated dependencies [
fcfa6ee,bb9931b,5798f76,5f0bfa1,812a4e8,273565e,569a801,aa1fa53,02f6b06,12b893e,bbad27e,adf7d7a,007289a,42a8f99,eebfd29,040703d]:0.26.3
Patch Changes
- Updated dependencies [
35a0f81]:0.26.2
Patch Changes
0.26.1
... (truncated)
Commits
46efdc6Version Packages (#3668)a7c3c85Version Packages (#3641)d790dc1Version Packages (#3628)5ff6485Version Packages (#3617)798a6d5Version Packages (#3604)4a848b0Version Packages (#3585)0716969Version Packages (#3547)c1e95aaVersion Packages (#3524)19a7c96Version Packages (#3519)0c69484Version Packages (#3513)- Additional commits viewable in compare view
Updates effect from 2.4.15 to 3.8.4
Release notes
Sourced from effect's releases.
[email protected]
Patch Changes
- #3661
4509656Thanks@KhraksMamtsov! -Micro.EnvRefandMicro.Handleis subtype ofMicro
Changelog
Sourced from effect's changelog.
3.8.4
Patch Changes
- #3661
4509656Thanks@KhraksMamtsov! -Micro.EnvRefandMicro.Handleis subtype ofMicro3.8.3
Patch Changes
- #3644
bb5ec6bThanks@tim-smart! - fix encoding of logs to tracer span events3.8.2
Patch Changes
3.8.1
Patch Changes
#3624
10bf621Thanks@fubhy! - Fixed double firing of cron schedules in cases where the current time matched the initial interval.#3623
ae36fa6Thanks@fubhy! - Allow CRLF characters in base64 encoded strings.3.8.0
Minor Changes
#3541
fcfa6eeThanks@Schniz! - addLogger.withLeveledConsoleIn browsers and different platforms,
console.errorrenders differently thanconsole.info. This helps to distinguish between different levels of logging.Logger.withLeveledConsoletakes any logger and calls the respectiveConsolemethod based on the log level. For instance,Effect.logErrorwill callConsole.errorandEffect.logInfowill callConsole.info.To use it, you can replace the default logger with a
Logger.withLeveledConsolelogger:import { Logger, Effect } from "effect"const loggerLayer = Logger.withLeveledConsole(Logger.stringLogger)
Effect.gen(function* () {
yield* Effect.logError("an error")
yield* Effect.logInfo("an info")
}).pipe(Effect.provide(loggerLayer))
#3541
bb9931bThanks@KhraksMamtsov! - MadeRef,SynchronizedRedandSubscriptionRefa subtype ofEffect#3541
5798f76Thanks@tim-smart! - add Semaphore.withPermitsIfAvailable
... (truncated)
Commits
46efdc6Version Packages (#3668)4509656Micro.EnvRefandMicro.Handleis subtype ofMicro(#3661)4479c3efixaddFinalizerExitjsdocs, closes #3651 (#3659)a7c3c85Version Packages (#3641)bb5ec6bfix encoding of logs to tracer span events (#3644)d790dc1Version Packages (#3628)f0d8ef1revert cron schedule regression (#3627)5ff6485Version Packages (#3617)10bf621fix double firing of schedules at initial interval (#3624)ae36fa6allow crlf characters in base64 encoded strings (#3623)- Additional commits viewable in compare view
Updates fast-check from 3.17.1 to 3.22.0
Release notes
Sourced from fast-check's releases.
Graphemes support on
fc.stringFeatures
- (PR#5222) Support for grapheme on
fc.string- (PR#5233) Mark as deprecated most of char and string arbitraries
- (PR#5238) Deprecate
bigInt's alternativesFixes
- (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
uuidFeatures
- (PR#5172) Support UUID versions [1-15] on
uuidV- (PR#5189) Deprecate
uuidVin favor ofuuid- (PR#5188) Customize versions directly from
uuidFixes
- (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
floatanddouble- (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
Features
- (PR#5047) Introduce new
fc.noShrinkarbitrary- (PR#5050) Introduce new
fc.noBiasarbitrary- (PR#5006) Add ability to limit shrink path
- (PR#5112) Simplify
limitShrinkbefore releasingFixes
... (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 alternativesFixes
- (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
uuidVin favor ofuuid- (PR#5188) Customize versions directly from
uuidFixes
- (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
floatanddouble- (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 [email protected],@fast-check/vitest@0.1.3,@fast-...1baccc5🗑️ DeprecatebigInt's alternatives (#5238)3f4f120🗑️ Mark as deprecated most of char and string arbitraries (#5233)9f5ec86✨ Support for grapheme onfc.string(#5222)7d3a25f⬆️ Update dependency@microsoft/api-extractorto ^7.47.7 (#5230)04c9cfd⬆️ Update dependency typedoc to ^0.26.6 (#5223)acb87ef⬆️ Update dependency@microsoft/api-extractorto ^7.47.6 (#5208)49746db♻️ Add missing types on exported (#5203)1801d1a⬆️ Update dependency@types/nodeto ^20.14.15 (#5197)bec5d59🔖 Update CHANGELOG.md for [email protected] (#5194)- Additional commits viewable in compare view
Updates typescript from 5.4.3 to 5.6.2
Release notes
Sourced from typescript's releases.
TypeScript 5.6
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.6.0 (Beta).
- fixed issues query for Typescript 5.6.1 (RC).
- fixed issues query for Typescript 5.6.2 (Stable).
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
Downloads are available on:
TypeScript 5.5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
... (truncated)
Commits
a7e3374Bump version to 5.6.2 and LKG2063357🤖 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 (thiscan be nullish) into release-5.6 (#59762)6212132Update LKGbbb5faf🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...e6914a5Bump version to 5.6.1-rc and LKG34121c4Update LKG2a30c2aMerge remote-tracking branch 'origin/main' into release-5.6936a79bExpose TypeChecker. getAwaitedType to public (#59268)- Additional commits viewable in compare view
Updates @changesets/cli from 2.27.1 to 2.27.8
Release notes
Sourced from @changesets/cli's releases.
@changesets/cli@2.27.8Patch Changes
#1417
bc75c1aThanks@trivikr! - Replacechalkwithpicocolorsto reduce install size#1445
52c302aThanks@bluwy! - Remove unused@babel/runtimedependency#1446
5150fc1Thanks@benmccann! - Switched frompreferred-pmtopackage-manager-detectorin order to reduce installation sizeUpdated dependencies [
bc75c1a,52c302a]:
@changesets/get-dependents-graph@2.1.2@changesets/logger@0.1.1@changesets/read@0.6.1@changesets/assemble-release-plan@6.0.4@changesets/should-skip-package@0.1.1@changesets/apply-release-plan@7.0.5@changesets/get-release-plan@4.0.4@changesets/write@0.3.2@changesets/git@3.0.1@changesets/pre@2.0.1@changesets/config@3.0.3
@changesets/cli@2.27.7Patch Changes
#1047
d108fa6Thanks@patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.#1400
dd6e5bbThanks@Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace
@changesets/cli@2.27.6Patch Changes
#1392
f295b3eThanks@bluwy! - Replacemeowdependency withmrito reduce the number of transitive dependencies#1390
6a3452eThanks@bluwy! - Displaychangeset status --verbosein list form and removetty-tabledependency
@changesets/cli@2.27.5Patch Changes
- #1370
5e9d33aThanks@Andarist! - Fixed a regression that causedchangeset versionto fail on packages having a dev dependency on a skipped package.
... (truncated)
Commits
c867f32Version Packages (#1439)bc75c1aReplacechalkwithpicocolors(#1417)52c302aRemove unused@babel/runtimedependency (#1445)5150fc1switch frompreferred-pmtopackage-manager-detector(#1446)4efc038Fix logging --version flag (#1419)b593756Version Packages (#1398)d83e458Update changelog for privatePackage fix (#1402)dd6e5bbFixed a crash when root workspace has dependents (#1400)d108fa6Fixed a crash when using tag versions of workspace packages (#1047)a832b64fix typo in automating-changesets.md (#1155)- Additional commits viewable in compare view
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-tocinstead of github dependencyv0.4.1
Patch Changes
- b9bfab0: add reporting of
tscandtsxerrors, 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-tocinstead of github dependency0.4.1
Patch Changes
- b9bfab0: add reporting of
tscandtsxerrors, closes #66
Commits
b77f746Version Packages (#81)8959440Fix example type checking and execution on Windows (#80)d2ed71cVersion Packages (#79)d39ce86Fix release workflow syntax error (#78)6221056Update the GitHub actions workflow specifications (#77)00ce7a0upgrade ts-morph to 23.0.0 (#76)fd8afa1fix linting (#75)5b888e5fix: take srcDir and outDir from docgen.json config file into account (#74)85e58a6update pnpm version (#73)46d996dVersion Packages (#72)- Additional commits viewable in compare view
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
- infra: update file structure for util/internal by
@xDivisionByZeroxin faker-js/faker#3141- refactor(locale): Update list of french legal entity by
@jlecomte-IEDin faker-js/faker#3142- fix(image): fix dataUri with type svg-base64 in browsers by
@ST-DDTin faker-js/faker#3144- chore(release): 9.0.3 by
@fakerjs-botin faker-js/faker#3146New Contributors
@jlecomte-IEDmade their first contribution in faker-js/faker#3142Full Changelog: https://github.com/faker-js/faker/compare/v9.0.2...v9.0.3
v9.0.2
What's Changed
- chore(deps): update dependency
@algolia/client-searchto v5.4.1 by@renovatein faker-js/faker#3099- chore(deps): update devdependencies by
@renovatein faker-js/faker#3083- chore(deps): update eslint by
@renovatein faker-js/faker#3100- chore(deps): lock file maintenance by
@renovatein faker-js/faker#3084- refactor(location): adjust zipCode nullish checks by
@ST-DDTin faker-js/faker#3080- infra: use eslint.config.ts by
@Shinigami92in faker-js/faker#3044- chore(deps): update mcr.microsoft.com/devcontainers/typescript-node:22 docker digest to 34a8d83 by
@renovatein faker-js/faker#3113- chore(deps): update pnpm to v9.10.0 by
@renovatein faker-js/faker#3116- chore(deps): update dependency typescript to v5.6.2 by
@renovatein faker-js/faker#3115- chore(deps): update vitest to v2.1.1 by
@renovatein faker-js/faker#3117- chore(deps): update devdependencies by
@renovatein faker-js/faker#3114- chore(deps): lock file maintenance by
@renovatein faker-js/faker#3118- docs: consistent linking to sponsored services by
@ST-DDTin faker-js/faker#3120- fix(locale): correction of pt_PT location and person data by
@jeanpierrecarvalhoin faker-js/faker#3020- docs: use defineProps deconstruction by
@ST-DDTin faker-js/faker#3090- infra: publish releases with provenance by
@ST-DDTin faker-js/faker#3119- chore(deps): update devdependencies (major) by
@renovatein faker-js/faker#3016- chore(deps): update dependency vite to v5.4.6 [security] by
@renovatein faker-js/faker#3122- refactor(image): deprecate avatarLegacy for removal by
@ST-DDTin faker-js/faker#3109- docs: fix definition names in 'Company Name Affix files reorganized' section of migration guide by
@matthewmayerin faker-js/faker#3125- chore: fix avatarLegacy deprecation version typo by
@ST-DDTin faker-js/faker#3124- chore(deps): update all non-major dependencies by
@renovatein faker-js/faker#3133- chore(deps): update mcr.microsoft.com/devcontainers/typescript-node:22 docker digest to 8fac147 by
@renovatein faker-js/faker#3132- chore(deps): update devdependencies by
@renovatein faker-js/faker#3134- chore(deps): update dependency
@algolia/client-searchto v5.5.3 by@renovatein faker-js/faker#3135- chore(deps): update eslint by
@renovatein faker-js/faker#3136- chore(deps): lock file maintenance by
@renovatein faker-js/faker#3138- chore(release): 9.0.2 by
@fakerjs-botin faker-js/faker#3140Full Changelog: https://github.com/faker-js/faker/compare/v9.0.1...v9.0.2
v9.0.1
What's Changed
- infra: improve package.json fields by
@Shinigami92in faker-js/faker#3096- infra: sort package.json automatically by
@Shinigami92in faker-js/faker#3098
... (truncated)
Changelog
Sourced from @faker-js/faker's changelog.
9.0.3 (2024-09-26)
Changed Locales
Bug Fixes
9.0.2 (2024-09-23)
Bug Fixes
9.0.1 (2024-09-14)
Bug Fixes
9.0.0 (2024-09-02)
No noteworthy changes to Description%20has%20been%20truncated
%0A" rel="nofollow" target="_blank" >