Skip to content

fix(deps): update dependency effect to v3.21.0#629

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm
Open

fix(deps): update dependency effect to v3.21.0#629
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 16, 2026

This PR contains the following updates:

Package Change Age Confidence
effect (source) 3.19.193.21.0 age confidence

Release Notes

Effect-TS/effect (effect)

v3.21.0

Compare Source

Minor Changes
  • #​5780 f7bb09b Thanks @​kitlangton! - Add Cron.prev and reverse iteration support, aligning next/prev lookup tables, fixing DST handling symmetry, and expanding cron backward/forward test coverage.

  • #​5780 bd7552a Thanks @​mattiamanzati! - Add type-level utils to asserting layer types

  • #​5780 ad1a7eb Thanks @​schickling! - RcMap: support dynamic idleTimeToLive values per key

    The idleTimeToLive option can now be a function that receives the key and returns a duration, allowing different TTL values for different resources.

    const map =
      yield *
      RcMap.make({
        lookup: (key: string) => acquireResource(key),
        idleTimeToLive: (key: string) => {
          if (key.startsWith("premium:")) return Duration.minutes(10)
          return Duration.minutes(1)
        }
      })
  • #​5780 0d32048 Thanks @​mikearnaldi! - Fix annotateCurrentSpan, add Effect.currentPropagatedSpan

Patch Changes
  • #​5780 0d32048 Thanks @​mikearnaldi! - Add logs to first propagated span, in the following case before this fix the log would not be added to the p span because Effect.fn adds a fake span for the purpose of adding a stack frame.

    import { Effect } from "effect"
    
    const f = Effect.fn(function* () {
      yield* Effect.logWarning("FooBar")
      return yield* Effect.fail("Oops")
    })
    
    const p = f().pipe(Effect.withSpan("p"))

v3.20.1

Compare Source

Patch Changes
  • #​6133 add06f4 Thanks @​aniravi24! - Fix Equal.equals crash when comparing null values inside structuralRegion. Added null guard before Object.getPrototypeOf calls to prevent TypeError: Cannot convert undefined or null to object.

  • #​6093 a03b6a2 Thanks @​luchersou! - avoid class for PrettyError to preserve error.name

v3.20.0

Compare Source

Minor Changes
Patch Changes
  • #​6107 fc82e81 Thanks @​gcanti! - Backport Types.VoidIfEmpty to 3.x

  • #​6088 82996bc Thanks @​taylorOntologize! - Schema: fix Schema.omit producing wrong result on Struct with optionalWith({ default }) and index signatures

    getIndexSignatures now handles Transformation AST nodes by delegating to ast.to, matching the existing behavior of getPropertyKeys and getPropertyKeyIndexedAccess. Previously, Schema.omit on a struct combining Schema.optionalWith (with { default }, { as: "Option" }, etc.) and Schema.Record would silently take the wrong code path, returning a Transformation with property signatures instead of a TypeLiteral with index signatures.

  • #​6086 4d97a61 Thanks @​taylorOntologize! - Schema: fix getPropertySignatures crash on Struct with optionalWith({ default }) and other Transformation-producing variants

    SchemaAST.getPropertyKeyIndexedAccess now handles Transformation AST nodes by delegating to ast.to, matching the existing behavior of getPropertyKeys. Previously, calling getPropertySignatures on a Schema.Struct containing Schema.optionalWith with { default }, { as: "Option" }, { nullable: true }, or similar options would throw "Unsupported schema (Transformation)".

  • #​6097 f6b0960 Thanks @​gcanti! - Fix TupleWithRest post-rest validation to check each tail index sequentially.


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@netlify
Copy link
Copy Markdown

netlify bot commented Mar 16, 2026

Deploy Preview for angry-raman-7c44f6 canceled.

Name Link
🔨 Latest commit 21e6f7b
🔍 Latest deploy log https://app.netlify.com/projects/angry-raman-7c44f6/deploys/69bde84de3c5950008e24a42

@renovate renovate bot changed the title fix(deps): update dependency effect to v3.20.0 fix(deps): update dependency effect to v3.21.0 Mar 20, 2026
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.21.0 fix(deps): update dependency effect to v3.21.0 - autoclosed Mar 20, 2026
@renovate renovate bot closed this Mar 20, 2026
@renovate renovate bot deleted the renovate/npm branch March 20, 2026 22:06
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.21.0 - autoclosed fix(deps): update dependency effect to v3.21.0 Mar 21, 2026
@renovate renovate bot reopened this Mar 21, 2026
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from e453f3f to 21e6f7b Compare March 21, 2026 00:37
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.

0 participants