Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps effect from 3.17.9 to 3.18.1.

Release notes

Sourced from effect's releases.

effect@3.18.1

Patch Changes

effect@3.18.0

Minor Changes

  • #5302 1c6ab74 Thanks @​schickling! - Add experimental Graph module with comprehensive graph data structure support

    This experimental module provides:

    • Directed and undirected graph support
    • Immutable and mutable graph variants
    • Type-safe node and edge operations
    • Graph algorithms: DFS, BFS, shortest paths, cycle detection, etc.

    Example usage:

    import { Graph } from "effect"
    // Create a graph with mutations
    const graph = Graph.directed<string, number>((mutable) => {
    const nodeA = Graph.addNode(mutable, "Node A")
    const nodeB = Graph.addNode(mutable, "Node B")
    Graph.addEdge(mutable, nodeA, nodeB, 5)
    })
    console.log(
    Nodes: ${Graph.nodeCount(graph)}, Edges: ${Graph.edgeCount(graph)}
    )

  • #5302 70fe803 Thanks @​mikearnaldi! - Automatically set otel parent when present as external span

  • #5302 c296e32 Thanks @​tim-smart! - add Effect.Semaphore.resize

  • #5302 a098ddf Thanks @​mikearnaldi! - Introduce ReadonlyTag as the covariant side of a tag, enables:

    import type { Context } from "effect"
    import { Effect } from "effect"
    export class MyRequirement extends Effect.Service<MyRequirement>()(
    "MyRequirement",
    { succeed: () => 42 }
    ) {}
    export class MyUseCase extends Effect.Service<MyUseCase>()("MyUseCase", {

... (truncated)

Changelog

Sourced from effect's changelog.

3.18.1

Patch Changes

3.18.0

Minor Changes

  • #5302 1c6ab74 Thanks @​schickling! - Add experimental Graph module with comprehensive graph data structure support

    This experimental module provides:

    • Directed and undirected graph support
    • Immutable and mutable graph variants
    • Type-safe node and edge operations
    • Graph algorithms: DFS, BFS, shortest paths, cycle detection, etc.

    Example usage:

    import { Graph } from "effect"
    // Create a graph with mutations
    const graph = Graph.directed<string, number>((mutable) => {
    const nodeA = Graph.addNode(mutable, "Node A")
    const nodeB = Graph.addNode(mutable, "Node B")
    Graph.addEdge(mutable, nodeA, nodeB, 5)
    })
    console.log(
    Nodes: ${Graph.nodeCount(graph)}, Edges: ${Graph.edgeCount(graph)}
    )

  • #5302 70fe803 Thanks @​mikearnaldi! - Automatically set otel parent when present as external span

  • #5302 c296e32 Thanks @​tim-smart! - add Effect.Semaphore.resize

  • #5302 a098ddf Thanks @​mikearnaldi! - Introduce ReadonlyTag as the covariant side of a tag, enables:

    import type { Context } from "effect"
    import { Effect } from "effect"
    export class MyRequirement extends Effect.Service<MyRequirement>()(
    "MyRequirement",
    { succeed: () => 42 }
    ) {}

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) from 3.17.9 to 3.18.1.
- [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.18.1/packages/effect)

---
updated-dependencies:
- dependency-name: effect
  dependency-version: 3.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 1, 2025
@github-actions github-actions bot merged commit f821777 into main Oct 1, 2025
1 of 2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/effect-3.18.1 branch October 1, 2025 06:02
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