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

Bump the effect group across 1 directory with 3 updates #276

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 15, 2025

Bumps the effect group with 2 updates in the / directory: @effect/platform and @effect/platform-node.

Updates @effect/platform from 0.72.1 to 0.73.1

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.73.1

Patch Changes

@​effect/platform@​0.73.0

Minor Changes

  • #4245 c110032 Thanks @​gcanti! - Update HttpApi to remove wildcard support for better OpenAPI compatibility.

    The HttpApi* modules previously reused the following type from HttpRouter:

    type PathInput = `/${string}` | "*"

    However, the "*" wildcard value was not handled correctly, as OpenAPI does not support wildcards.

    This has been updated to use a more specific type:

    type PathSegment = `/${string}`

    This change ensures better alignment with OpenAPI specifications and eliminates potential issues related to unsupported wildcard paths.

  • #4237 23ac740 Thanks @​gcanti! - Make OpenApiSpec mutable to make handling it more convenient.

Patch Changes

@​effect/platform@​0.72.2

Patch Changes

  • #4226 212e784 Thanks @​gcanti! - Ensure the encoding kind of success responses is respected in the OpenAPI spec.

    Before

... (truncated)

Changelog

Sourced from @​effect/platform's changelog.

0.73.1

Patch Changes

0.73.0

Minor Changes

  • #4245 c110032 Thanks @​gcanti! - Update HttpApi to remove wildcard support for better OpenAPI compatibility.

    The HttpApi* modules previously reused the following type from HttpRouter:

    type PathInput = `/${string}` | "*"

    However, the "*" wildcard value was not handled correctly, as OpenAPI does not support wildcards.

    This has been updated to use a more specific type:

    type PathSegment = `/${string}`

    This change ensures better alignment with OpenAPI specifications and eliminates potential issues related to unsupported wildcard paths.

  • #4237 23ac740 Thanks @​gcanti! - Make OpenApiSpec mutable to make handling it more convenient.

Patch Changes

0.72.2

Patch Changes

  • #4226 212e784 Thanks @​gcanti! - Ensure the encoding kind of success responses is respected in the OpenAPI spec.

... (truncated)

Commits

Updates @effect/platform-node from 0.68.1 to 0.69.1

Release notes

Sourced from @​effect/platform-node's releases.

@​effect/platform-node@​0.69.1

Patch Changes

@​effect/platform-node@​0.69.0

Patch Changes

@​effect/platform-node@​0.68.2

Patch Changes

Changelog

Sourced from @​effect/platform-node's changelog.

0.69.1

Patch Changes

0.69.0

Patch Changes

0.68.2

Patch Changes

Commits

Updates effect from 3.12.1 to 3.12.4

Release notes

Sourced from effect's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #4244 d7dac48 Thanks @​gcanti! - Improve pattern handling by merging multiple patterns into a union, closes #4243.

    Previously, the algorithm always prioritized the first pattern when multiple patterns were encountered.

    This fix introduces a merging strategy that combines patterns into a union (e.g., (?:${pattern1})|(?:${pattern2})). By doing so, all patterns have an equal chance to generate values when using FastCheck.stringMatching.

    Example

    import { Arbitrary, FastCheck, Schema } from "effect"
    // /^[^A-Z]*$/ (given by Lowercase) + /^0x[0-9a-f]{40}$/
    const schema = Schema.Lowercase.pipe(Schema.pattern(/^0x[0-9a-f]{40}$/))
    const arb = Arbitrary.make(schema)
    // Before this fix, the first pattern would always dominate,
    // making it impossible to generate values
    const sample = FastCheck.sample(arb, { numRuns: 100 })
    console.log(sample)

  • #4252 1d7fd2b Thanks @​gcanti! - Fix: Correct Arbitrary.make to support nested TemplateLiterals.

    Previously, Arbitrary.make did not properly handle nested TemplateLiteral schemas, resulting in incorrect or empty outputs. This fix ensures that nested template literals are processed correctly, producing valid arbitrary values.

    Before

    import { Arbitrary, FastCheck, Schema as S } from "effect"
    const schema = S.TemplateLiteral(
    "<",
    S.TemplateLiteral("h", S.Literal(1, 2)),
    ">"
    )

... (truncated)

Changelog

Sourced from effect's changelog.

3.12.4

Patch Changes

3.12.3

Patch Changes

  • #4244 d7dac48 Thanks @​gcanti! - Improve pattern handling by merging multiple patterns into a union, closes #4243.

    Previously, the algorithm always prioritized the first pattern when multiple patterns were encountered.

    This fix introduces a merging strategy that combines patterns into a union (e.g., (?:${pattern1})|(?:${pattern2})). By doing so, all patterns have an equal chance to generate values when using FastCheck.stringMatching.

    Example

    import { Arbitrary, FastCheck, Schema } from "effect"
    // /^[^A-Z]*$/ (given by Lowercase) + /^0x[0-9a-f]{40}$/
    const schema = Schema.Lowercase.pipe(Schema.pattern(/^0x[0-9a-f]{40}$/))
    const arb = Arbitrary.make(schema)
    // Before this fix, the first pattern would always dominate,
    // making it impossible to generate values
    const sample = FastCheck.sample(arb, { numRuns: 100 })
    console.log(sample)

  • #4252 1d7fd2b Thanks @​gcanti! - Fix: Correct Arbitrary.make to support nested TemplateLiterals.

    Previously, Arbitrary.make did not properly handle nested TemplateLiteral schemas, resulting in incorrect or empty outputs. This fix ensures that nested template literals are processed correctly, producing valid arbitrary values.

    Before

    import { Arbitrary, FastCheck, Schema as S } from "effect"
    const schema = S.TemplateLiteral(
    "<",
    S.TemplateLiteral("h", S.Literal(1, 2)),
    ">"

... (truncated)

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 effect group with 2 updates in the / directory: [@effect/platform](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform) and [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node).


Updates `@effect/platform` from 0.72.1 to 0.73.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/[email protected]/packages/platform)

Updates `@effect/platform-node` from 0.68.1 to 0.69.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform-node/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/[email protected]/packages/platform-node)

Updates `effect` from 3.12.1 to 3.12.4
- [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/[email protected]/packages/effect)

---
updated-dependencies:
- dependency-name: "@effect/platform"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/platform-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: effect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 15, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 17, 2025

Superseded by #282.

@dependabot dependabot bot closed this Jan 17, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/effect-7f4af2ceec branch January 17, 2025 17:12
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