effect-schema-compilers
effect-schema-compilers copied to clipboard
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
734eae6
Thanks@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
fd83d0e
Thanks@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
734eae6
Thanks@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
fd83d0e
Thanks@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
46efdc6
Version Packages (#3668)ad7e1de
add more description annotations (#3673)090e41c
JSON Schema: handle refinements where the 'from' part includes a tran… (#3672)c57ee0c
chore: fix json schema test (#3670)734eae6
add description annotation to the encoded part of NumberFromString (#3669)fd83d0e
remove default json schema annotations from string, number and boolean (#3667)cc3b5ba
Version Packages (#3655)de48aa5
Remove internal sorting of property signatures, closes #3652 (#3654)a7c3c85
Version Packages (#3641)6f836a6
Version 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
46efdc6
Version Packages (#3668)a7c3c85
Version Packages (#3641)d790dc1
Version Packages (#3628)5ff6485
Version Packages (#3617)798a6d5
Version Packages (#3604)4a848b0
Version Packages (#3585)0716969
Version Packages (#3547)c1e95aa
Version Packages (#3524)19a7c96
Version Packages (#3519)0c69484
Version 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
4509656
Thanks@KhraksMamtsov
! -Micro.EnvRef
andMicro.Handle
is subtype ofMicro
Changelog
Sourced from effect's changelog.
3.8.4
Patch Changes
- #3661
4509656
Thanks@KhraksMamtsov
! -Micro.EnvRef
andMicro.Handle
is subtype ofMicro
3.8.3
Patch Changes
- #3644
bb5ec6b
Thanks@tim-smart
! - fix encoding of logs to tracer span events3.8.2
Patch Changes
3.8.1
Patch Changes
#3624
10bf621
Thanks@fubhy
! - Fixed double firing of cron schedules in cases where the current time matched the initial interval.#3623
ae36fa6
Thanks@fubhy
! - Allow CRLF characters in base64 encoded strings.3.8.0
Minor Changes
#3541
fcfa6ee
Thanks@Schniz
! - addLogger.withLeveledConsole
In browsers and different platforms,
console.error
renders differently thanconsole.info
. This helps to distinguish between different levels of logging.Logger.withLeveledConsole
takes any logger and calls the respectiveConsole
method based on the log level. For instance,Effect.logError
will callConsole.error
andEffect.logInfo
will callConsole.info
.To use it, you can replace the default logger with a
Logger.withLeveledConsole
logger: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
bb9931b
Thanks@KhraksMamtsov
! - MadeRef
,SynchronizedRed
andSubscriptionRef
a subtype ofEffect
#3541
5798f76
Thanks@tim-smart
! - add Semaphore.withPermitsIfAvailable
... (truncated)
Commits
46efdc6
Version Packages (#3668)4509656
Micro.EnvRef
andMicro.Handle
is subtype ofMicro
(#3661)4479c3e
fixaddFinalizerExit
jsdocs, closes #3651 (#3659)a7c3c85
Version Packages (#3641)bb5ec6b
fix encoding of logs to tracer span events (#3644)d790dc1
Version Packages (#3628)f0d8ef1
revert cron schedule regression (#3627)5ff6485
Version Packages (#3617)10bf621
fix double firing of schedules at initial interval (#3624)ae36fa6
allow 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.string
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
Support customisable versions on
uuid
Features
- (PR#5172) Support UUID versions [1-15] on
uuidV
- (PR#5189) Deprecate
uuidV
in favor ofuuid
- (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
anddouble
- (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.noShrink
arbitrary- (PR#5050) Introduce new
fc.noBias
arbitrary- (PR#5006) Add ability to limit shrink path
- (PR#5112) Simplify
limitShrink
before 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
uuidV
in favor ofuuid
- (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
anddouble
- (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-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 [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
a7e3374
Bump 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 (this
can be nullish) into release-5.6 (#59762)6212132
Update LKGbbb5faf
🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...e6914a5
Bump version to 5.6.1-rc and LKG34121c4
Update LKG2a30c2a
Merge remote-tracking branch 'origin/main' into release-5.6936a79b
Expose 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
bc75c1a
Thanks@trivikr
! - Replacechalk
withpicocolors
to reduce install size#1445
52c302a
Thanks@bluwy
! - Remove unused@babel/runtime
dependency#1446
5150fc1
Thanks@benmccann
! - Switched frompreferred-pm
topackage-manager-detector
in 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
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
@changesets/cli
@2
.27.6Patch Changes
#1392
f295b3e
Thanks@bluwy
! - Replacemeow
dependency withmri
to reduce the number of transitive dependencies#1390
6a3452e
Thanks@bluwy
! - Displaychangeset status --verbose
in list form and removetty-table
dependency
@changesets/cli
@2
.27.5Patch Changes
- #1370
5e9d33a
Thanks@Andarist
! - Fixed a regression that causedchangeset version
to fail on packages having a dev dependency on a skipped package.
... (truncated)
Commits
c867f32
Version Packages (#1439)bc75c1a
Replacechalk
withpicocolors
(#1417)52c302a
Remove unused@babel/runtime
dependency (#1445)5150fc1
switch frompreferred-pm
topackage-manager-detector
(#1446)4efc038
Fix logging --version flag (#1419)b593756
Version Packages (#1398)d83e458
Update changelog for privatePackage fix (#1402)dd6e5bb
Fixed a crash when root workspace has dependents (#1400)d108fa6
Fixed a crash when using tag versions of workspace packages (#1047)a832b64
fix 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-toc
instead of github dependencyv0.4.1
Patch Changes
- b9bfab0: add reporting of
tsc
andtsx
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 dependency0.4.1
Patch Changes
- b9bfab0: add reporting of
tsc
andtsx
errors, closes #66
Commits
b77f746
Version Packages (#81)8959440
Fix example type checking and execution on Windows (#80)d2ed71c
Version Packages (#79)d39ce86
Fix release workflow syntax error (#78)6221056
Update the GitHub actions workflow specifications (#77)00ce7a0
upgrade ts-morph to 23.0.0 (#76)fd8afa1
fix linting (#75)5b888e5
fix: take srcDir and outDir from docgen.json config file into account (#74)85e58a6
update pnpm version (#73)46d996d
Version 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
@xDivisionByZerox
in faker-js/faker#3141- refactor(locale): Update list of french legal entity by
@jlecomte-IED
in faker-js/faker#3142- fix(image): fix dataUri with type svg-base64 in browsers by
@ST-DDT
in faker-js/faker#3144- chore(release): 9.0.3 by
@fakerjs-bot
in faker-js/faker#3146New Contributors
@jlecomte-IED
made 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-search
to v5.4.1 by@renovate
in faker-js/faker#3099- chore(deps): update devdependencies by
@renovate
in faker-js/faker#3083- chore(deps): update eslint by
@renovate
in faker-js/faker#3100- chore(deps): lock file maintenance by
@renovate
in faker-js/faker#3084- refactor(location): adjust zipCode nullish checks by
@ST-DDT
in faker-js/faker#3080- infra: use eslint.config.ts by
@Shinigami92
in faker-js/faker#3044- chore(deps): update mcr.microsoft.com/devcontainers/typescript-node:22 docker digest to 34a8d83 by
@renovate
in faker-js/faker#3113- chore(deps): update pnpm to v9.10.0 by
@renovate
in faker-js/faker#3116- chore(deps): update dependency typescript to v5.6.2 by
@renovate
in faker-js/faker#3115- chore(deps): update vitest to v2.1.1 by
@renovate
in faker-js/faker#3117- chore(deps): update devdependencies by
@renovate
in faker-js/faker#3114- chore(deps): lock file maintenance by
@renovate
in faker-js/faker#3118- docs: consistent linking to sponsored services by
@ST-DDT
in faker-js/faker#3120- fix(locale): correction of pt_PT location and person data by
@jeanpierrecarvalho
in faker-js/faker#3020- docs: use defineProps deconstruction by
@ST-DDT
in faker-js/faker#3090- infra: publish releases with provenance by
@ST-DDT
in faker-js/faker#3119- chore(deps): update devdependencies (major) by
@renovate
in faker-js/faker#3016- chore(deps): update dependency vite to v5.4.6 [security] by
@renovate
in faker-js/faker#3122- refactor(image): deprecate avatarLegacy for removal by
@ST-DDT
in faker-js/faker#3109- docs: fix definition names in 'Company Name Affix files reorganized' section of migration guide by
@matthewmayer
in faker-js/faker#3125- chore: fix avatarLegacy deprecation version typo by
@ST-DDT
in faker-js/faker#3124- chore(deps): update all non-major dependencies by
@renovate
in faker-js/faker#3133- chore(deps): update mcr.microsoft.com/devcontainers/typescript-node:22 docker digest to 8fac147 by
@renovate
in faker-js/faker#3132- chore(deps): update devdependencies by
@renovate
in faker-js/faker#3134- chore(deps): update dependency
@algolia/client-search
to v5.5.3 by@renovate
in faker-js/faker#3135- chore(deps): update eslint by
@renovate
in faker-js/faker#3136- chore(deps): lock file maintenance by
@renovate
in faker-js/faker#3138- chore(release): 9.0.2 by
@fakerjs-bot
in 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
@Shinigami92
in faker-js/faker#3096- infra: sort package.json automatically by
@Shinigami92
in 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" >