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 #301

Merged
merged 1 commit into from
Feb 6, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 4, 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.75.3

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.75.3

Patch Changes

  • Updated dependencies [1b4a4e9]:
    • effect@3.12.9

@​effect/platform@​0.75.2

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.75.3

Patch Changes

  • Updated dependencies [1b4a4e9]:
    • effect@3.12.9

0.75.2

Patch Changes

0.75.1

Patch Changes

  • Updated dependencies [8dff1d1]:
    • effect@3.12.7

0.75.0

Minor Changes

Patch Changes

0.74.0

... (truncated)

Commits

Updates @effect/platform-node from 0.68.1 to 0.71.3

Release notes

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

@​effect/platform-node@​0.71.3

Patch Changes

  • Updated dependencies [1b4a4e9]:
    • effect@3.12.9
    • @​effect/platform@​0.75.3
    • @​effect/platform-node-shared@​0.25.3

@​effect/platform-node@​0.71.2

Patch Changes

Changelog

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

0.71.3

Patch Changes

  • Updated dependencies [1b4a4e9]:
    • effect@3.12.9
    • @​effect/platform@​0.75.3
    • @​effect/platform-node-shared@​0.25.3

0.71.2

Patch Changes

0.71.1

Patch Changes

  • Updated dependencies [8dff1d1]:
    • effect@3.12.7
    • @​effect/platform@​0.75.1
    • @​effect/platform-node-shared@​0.25.1

0.71.0

Patch Changes

0.70.0

Patch Changes

0.69.1

Patch Changes

... (truncated)

Commits

Updates effect from 3.12.1 to 3.12.9

Release notes

Sourced from effect's releases.

effect@3.12.9

Patch Changes

effect@3.12.8

Patch Changes

  • #4341 766113c Thanks @​fubhy! - Improve Duration.decode Handling of High-Resolution Time

    • Ensured Immutability: Added the readonly modifier to [seconds: number, nanos: number] in DurationInput to prevent accidental modifications.
    • Better Edge Case Handling: Now correctly processes special values like -Infinity and NaN when they appear in the tuple representation of duration.
  • #4333 712277f Thanks @​gcanti! - Cron: unsafeParse now throws a more informative error instead of a generic one

  • #4387 f269122 Thanks @​KhraksMamtsov! - A more precise signature has been applied for Effect.schedule

  • #4351 430c846 Thanks @​tim-smart! - fix Layer.scope types to correctly use the Scope tag identifier

  • #4344 7b03057 Thanks @​IMax153! - Expose Schedule.isSchedule

  • #4313 a9c94c8 Thanks @​gcanti! - Schema: Update Duration Encoding to a Tagged Union Format.

    This changeset fixes the Duration schema to support all possible duration types, including finite, infinite, and nanosecond durations. The encoding format has been updated from a tuple (readonly [seconds: number, nanos: number]) to a tagged union.

    This update introduces a change to the encoding format. The previous tuple representation is replaced with a more expressive tagged union, which accommodates all duration types:

    type DurationEncoded =
      | {
          readonly _tag: "Millis"
          readonly millis: number
        }
      | {
          readonly _tag: "Nanos"
          readonly nanos: string
        }
      | {
          readonly _tag: "Infinity"
        }

    Rationale

    The Duration schema is primarily used to encode durations for transmission. The new tagged union format ensures clear and precise encoding for:

    • Finite durations, such as milliseconds.
    • Infinite durations, such as Duration.infinity.
    • Nanosecond durations.

... (truncated)

Changelog

Sourced from effect's changelog.

3.12.9

Patch Changes

3.12.8

Patch Changes

  • #4341 766113c Thanks @​fubhy! - Improve Duration.decode Handling of High-Resolution Time

    • Ensured Immutability: Added the readonly modifier to [seconds: number, nanos: number] in DurationInput to prevent accidental modifications.
    • Better Edge Case Handling: Now correctly processes special values like -Infinity and NaN when they appear in the tuple representation of duration.
  • #4333 712277f Thanks @​gcanti! - Cron: unsafeParse now throws a more informative error instead of a generic one

  • #4387 f269122 Thanks @​KhraksMamtsov! - A more precise signature has been applied for Effect.schedule

  • #4351 430c846 Thanks @​tim-smart! - fix Layer.scope types to correctly use the Scope tag identifier

  • #4344 7b03057 Thanks @​IMax153! - Expose Schedule.isSchedule

  • #4313 a9c94c8 Thanks @​gcanti! - Schema: Update Duration Encoding to a Tagged Union Format.

    This changeset fixes the Duration schema to support all possible duration types, including finite, infinite, and nanosecond durations. The encoding format has been updated from a tuple (readonly [seconds: number, nanos: number]) to a tagged union.

    This update introduces a change to the encoding format. The previous tuple representation is replaced with a more expressive tagged union, which accommodates all duration types:

    type DurationEncoded =
      | {
          readonly _tag: "Millis"
          readonly millis: number
        }
      | {
          readonly _tag: "Nanos"
          readonly nanos: string
        }
      | {
          readonly _tag: "Infinity"
        }

    Rationale

    The Duration schema is primarily used to encode durations for transmission. The new tagged union format ensures clear and precise encoding for:

    • Finite durations, such as milliseconds.
    • Infinite durations, such as Duration.infinity.

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 4, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/effect-9700e1f48f branch from 97d5892 to 0087ff9 Compare February 6, 2025 20:00
@thewilkybarkid thewilkybarkid enabled auto-merge (squash) February 6, 2025 20:30
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/effect-9700e1f48f branch 5 times, most recently from 845a0d4 to 76e2aa5 Compare February 6, 2025 20:40
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.75.3
- [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/platform@0.75.3/packages/platform)

Updates `@effect/platform-node` from 0.68.1 to 0.71.3
- [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/platform-node@0.71.3/packages/platform-node)

Updates `effect` from 3.12.1 to 3.12.9
- [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.12.9/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] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/effect-9700e1f48f branch from 76e2aa5 to 8442621 Compare February 6, 2025 20:43
@thewilkybarkid thewilkybarkid merged commit 194eb1e into main Feb 6, 2025
8 checks passed
@thewilkybarkid thewilkybarkid deleted the dependabot/npm_and_yarn/effect-9700e1f48f branch February 6, 2025 20:45
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.

1 participant