Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2025

This PR contains the following updates:

Package Change Age Confidence
effect (source) 3.18.4 -> 3.19.6 age confidence

Release Notes

Effect-TS/effect (effect)

v3.19.6

Compare Source

Patch Changes

v3.19.5

Compare Source

Patch Changes

v3.19.4

Compare Source

Patch Changes
  • #​5752 f445b87 Thanks @​janglad! - Fix Types.DeepMutable mapping over functions

  • #​5757 d2b68ac Thanks @​tim-smart! - add experimental PartitionedSemaphore module

    A PartitionedSemaphore is a concurrency primitive that can be used to
    control concurrent access to a resource across multiple partitions identified
    by keys.

    The total number of permits is shared across all partitions, with waiting
    permits equally distributed among partitions using a round-robin strategy.

    This is useful when you want to limit the total number of concurrent accesses
    to a resource, while still allowing for fair distribution of access across
    different partitions.

    import { Effect, PartitionedSemaphore } from "effect"
    
    Effect.gen(function* () {
      const semaphore = yield* PartitionedSemaphore.make<string>({ permits: 5 })
    
      // Take the first 5 permits with key "A", then the following permits will be
      // equally distributed between all the keys using a round-robin strategy
      yield* Effect.log("A").pipe(
        Effect.delay(1000),
        semaphore.withPermits("A", 1),
        Effect.replicateEffect(15, { concurrency: "unbounded" }),
        Effect.fork
      )
      yield* Effect.log("B").pipe(
        Effect.delay(1000),
        semaphore.withPermits("B", 1),
        Effect.replicateEffect(10, { concurrency: "unbounded" }),
        Effect.fork
      )
      yield* Effect.log("C").pipe(
        Effect.delay(1000),
        semaphore.withPermits("C", 1),
        Effect.replicateEffect(10, { concurrency: "unbounded" }),
        Effect.fork
      )
    
      return yield* Effect.never
    }).pipe(Effect.runFork)

v3.19.3

Compare Source

Patch Changes

v3.19.2

Compare Source

Patch Changes

v3.19.1

Compare Source

Patch Changes

v3.19.0

Compare Source

Minor Changes
Patch Changes

v3.18.5

Compare Source

Patch Changes
  • #​5669 a537469 Thanks @​fubhy! - Fix Graph.neighbors() returning self-loops in undirected graphs.

    Graph.neighbors() now correctly returns the other endpoint for undirected graphs instead of always returning edge.target, which caused nodes to appear as their own neighbors when queried from the target side of an edge.

  • #​5628 52d5963 Thanks @​mikearnaldi! - Make sure AsEffect is computed

  • #​5671 463345d Thanks @​gcanti! - JSON Schema generation: add jsonSchema2020-12 target and fix tuple output for:

    • JSON Schema 2019-09
    • OpenAPI 3.1

Configuration

📅 Schedule: Branch creation - "after 6am and before 6pm" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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.

@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.0 fix(deps): update dependency effect to v3.19.1 Nov 6, 2025
@renovate renovate bot force-pushed the renovate/effect-3.x branch from 9f2e43d to a9e8b50 Compare November 6, 2025 03:43
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.1 fix(deps): update dependency effect to v3.19.2 Nov 6, 2025
@renovate renovate bot force-pushed the renovate/effect-3.x branch 2 times, most recently from 51ddf30 to e82ba0f Compare November 9, 2025 09:32
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.2 fix(deps): update dependency effect to v3.19.3 Nov 9, 2025
@renovate renovate bot force-pushed the renovate/effect-3.x branch from e82ba0f to ab48980 Compare November 17, 2025 05:39
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.3 fix(deps): update dependency effect to v3.19.4 Nov 17, 2025
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.4 fix(deps): update dependency effect to v3.19.5 Nov 20, 2025
@renovate renovate bot force-pushed the renovate/effect-3.x branch from ab48980 to b3ae0ae Compare November 20, 2025 04:48
@renovate renovate bot force-pushed the renovate/effect-3.x branch from b3ae0ae to e3369a7 Compare November 21, 2025 02:05
@renovate renovate bot changed the title fix(deps): update dependency effect to v3.19.5 fix(deps): update dependency effect to v3.19.6 Nov 21, 2025
@sonarqubecloud
Copy link

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