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

Update Effect #246

Merged
merged 1 commit into from
Sep 19, 2024
Merged

Update Effect #246

merged 1 commit into from
Sep 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@effect/cli (source) 0.44.1 -> 0.44.4 age adoption passing confidence
@effect/experimental (source) 0.26.1 -> 0.26.5 age adoption passing confidence
@effect/platform (source) 0.65.1 -> 0.65.4 age adoption passing confidence
@effect/platform-browser (source) 0.44.1 -> 0.44.4 age adoption passing confidence
@effect/platform-node (source) 0.60.1 -> 0.60.4 age adoption passing confidence
@effect/printer (source) 0.36.0 -> 0.36.2 age adoption passing confidence
@effect/printer-ansi (source) 0.36.0 -> 0.36.2 age adoption passing confidence
@effect/schema (source) 0.73.0 -> 0.73.3 age adoption passing confidence
@effect/typeclass (source) 0.27.0 -> 0.27.2 age adoption passing confidence
@effect/vitest (source) 0.10.0 -> 0.10.2 age adoption passing confidence
effect (source) 3.8.0 -> 3.8.2 age adoption passing confidence

Release Notes

Effect-TS/effect (@​effect/cli)

v0.44.4

Compare Source

Patch Changes

v0.44.3

Compare Source

Patch Changes

v0.44.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/experimental)

v0.26.5

Compare Source

Patch Changes

v0.26.4

Compare Source

Patch Changes

v0.26.3

Compare Source

Patch Changes

v0.26.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/platform)

v0.65.4

Compare Source

Patch Changes

v0.65.3

Compare Source

Patch Changes

v0.65.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/platform-browser)

v0.44.4

Compare Source

Patch Changes

v0.44.3

Compare Source

Patch Changes

v0.44.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/platform-node)

v0.60.4

Compare Source

Patch Changes

v0.60.3

Compare Source

Patch Changes

v0.60.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/printer)

v0.36.2

Compare Source

Patch Changes

v0.36.1

Compare Source

Patch Changes
Effect-TS/effect (@​effect/printer-ansi)

v0.36.2

Compare Source

Patch Changes

v0.36.1

Compare Source

Patch Changes
Effect-TS/effect (@​effect/schema)

v0.73.3

Compare Source

Patch Changes
  • #​3635 e6440a7 Thanks @​gcanti! - Stable filters such as minItems, maxItems, and itemsCount now generate multiple errors when the 'errors' option is set to 'all', closes #​3633

    Example:

    import { ArrayFormatter, Schema } from "@​effect/schema"
    
    const schema = Schema.Struct({
      tags: Schema.Array(Schema.String.pipe(Schema.minLength(2))).pipe(
        Schema.minItems(3)
      )
    })
    
    const invalidData = { tags: ["AB", "B"] }
    
    const either = Schema.decodeUnknownEither(schema, { errors: "all" })(
      invalidData
    )
    if (either._tag === "Left") {
      console.log(ArrayFormatter.formatErrorSync(either.left))
      /*
      Output:
      [
        {
          _tag: 'Type',
          path: [ 'tags', 1 ],
          message: 'Expected a string at least 2 character(s) long, actual "B"'
        },
        {
          _tag: 'Type',
          path: [ 'tags' ],
          message: 'Expected an array of at least 3 items, actual ["AB","B"]'
        }
      ]
      */
    }

    Previously, only the issue related to the [ 'tags', 1 ] path was reported.

v0.73.2

Compare Source

Patch Changes
  • Updated dependencies [f0d8ef1]:
    • effect@3.8.2

v0.73.1

Compare Source

Patch Changes
Effect-TS/effect (@​effect/typeclass)

v0.27.2

Compare Source

Patch Changes
  • Updated dependencies [f0d8ef1]:
    • effect@3.8.2

v0.27.1

Compare Source

Patch Changes
Effect-TS/effect (@​effect/vitest)

v0.10.2

Compare Source

Patch Changes
  • Updated dependencies [f0d8ef1]:
    • effect@3.8.2

v0.10.1

Compare Source

Patch Changes
Effect-TS/effect (effect)

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@leonitousconforti leonitousconforti merged commit 814a409 into main Sep 19, 2024
6 of 207 checks passed
@leonitousconforti leonitousconforti deleted the renovate/effect-node branch September 19, 2024 16:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant