Skip to content

fix(deps): bump the production-dependencies group across 1 directory with 6 updates#710

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/production-dependencies-33d208e44b
Closed

fix(deps): bump the production-dependencies group across 1 directory with 6 updates#710
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/production-dependencies-33d208e44b

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Nov 4, 2025

Bumps the production-dependencies group with 6 updates in the / directory:

Package From To
@effect/cli 0.71.0 0.72.0
@effect/platform 0.92.0 0.93.0
@effect/platform-node 0.98.0 0.99.0
@effect/printer 0.46.0 0.47.0
@effect/printer-ansi 0.46.0 0.47.0
effect 3.18.0 3.19.0

Updates @effect/cli from 0.71.0 to 0.72.0

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.72.0

Patch Changes

Changelog

Sourced from @​effect/cli's changelog.

0.72.0

Patch Changes

Commits

Updates @effect/platform from 0.92.0 to 0.93.0

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.93.0

Patch Changes

@​effect/platform@​0.92.1

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.93.0

Patch Changes

0.92.1

Patch Changes

Commits

Updates @effect/platform-node from 0.98.0 to 0.99.0

Release notes

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

@​effect/platform-node@​0.99.0

Minor Changes

  • #5606 24a1685 Thanks @​tim-smart! - backport @​effect/cluster from effect v4

    @​effect/cluster no longer requires a Shard Manager, and instead relies on the RunnerStorage service to track runner state.

    To migrate, remove any Shard Manager deployments and use the updated layers in @effect/platform-node or @effect/platform-bun.

    Breaking Changes

    • ShardManager module has been removed
    • EntityNotManagedByRunner error has been removed
    • Shard locks now use database advisory locks, which requires stable sessions for database connections. This means load balancers or proxies that rotate connections may cause issues.
    • @effect/platform-node/NodeClusterSocketRunner is now @effect/cluster/NodeClusterSocket
    • @effect/platform-node/NodeClusterHttpRunner is now @effect/cluster/NodeClusterHttp
    • @effect/platform-bun/BunClusterSocketRunner is now @effect/cluster/BunClusterSocket
    • @effect/platform-bun/BunClusterHttpRunner is now @effect/cluster/BunClusterHttp

    New Features

    • RunnerHealth.layerK8s has been added, which uses the Kubernetes API to track runner health and liveness. To use it, you will need a service account with permissions to read pod information.

Patch Changes

@​effect/platform-node@​0.98.4

Patch Changes

... (truncated)

Changelog

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

0.99.0

Minor Changes

  • #5606 24a1685 Thanks @​tim-smart! - backport @​effect/cluster from effect v4

    @​effect/cluster no longer requires a Shard Manager, and instead relies on the RunnerStorage service to track runner state.

    To migrate, remove any Shard Manager deployments and use the updated layers in @effect/platform-node or @effect/platform-bun.

    Breaking Changes

    • ShardManager module has been removed
    • EntityNotManagedByRunner error has been removed
    • Shard locks now use database advisory locks, which requires stable sessions for database connections. This means load balancers or proxies that rotate connections may cause issues.
    • @effect/platform-node/NodeClusterSocketRunner is now @effect/cluster/NodeClusterSocket
    • @effect/platform-node/NodeClusterHttpRunner is now @effect/cluster/NodeClusterHttp
    • @effect/platform-bun/BunClusterSocketRunner is now @effect/cluster/BunClusterSocket
    • @effect/platform-bun/BunClusterHttpRunner is now @effect/cluster/BunClusterHttp

    New Features

    • RunnerHealth.layerK8s has been added, which uses the Kubernetes API to track runner health and liveness. To use it, you will need a service account with permissions to read pod information.

Patch Changes

0.98.4

Patch Changes

... (truncated)

Commits

Updates @effect/printer from 0.46.0 to 0.47.0

Release notes

Sourced from @​effect/printer's releases.

@​effect/printer-ansi@​0.47.0

Patch Changes

@​effect/printer@​0.47.0

Patch Changes

Changelog

Sourced from @​effect/printer's changelog.

0.47.0

Patch Changes

Commits

Updates @effect/printer-ansi from 0.46.0 to 0.47.0

Release notes

Sourced from @​effect/printer-ansi's releases.

@​effect/printer-ansi@​0.47.0

Patch Changes

Changelog

Sourced from @​effect/printer-ansi's changelog.

0.47.0

Patch Changes

Commits

Updates effect from 3.18.0 to 3.19.0

Release notes

Sourced from effect's releases.

effect@3.19.0

Minor Changes

Patch Changes

effect@3.18.5

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

effect@3.18.4

Patch Changes

  • #5617 6ae2f5d Thanks @​gcanti! - JSONSchema: Fix issue where invalid defaults were included in the output.

    Now they are ignored, similar to invalid examples.

    Before

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.NonEmptyString.annotations({
    default: ""
    })
    const jsonSchema = JSONSchema.make(schema)
    console.log(JSON.stringify(jsonSchema, null, 2))
    /*
    Output:
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string",

... (truncated)

Changelog

Sourced from effect's changelog.

3.19.0

Minor Changes

Patch Changes

3.18.5

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

3.18.4

Patch Changes

  • #5617 6ae2f5d Thanks @​gcanti! - JSONSchema: Fix issue where invalid defaults were included in the output.

    Now they are ignored, similar to invalid examples.

    Before

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.NonEmptyString.annotations({
    default: ""
    })
    const jsonSchema = JSONSchema.make(schema)
    console.log(JSON.stringify(jsonSchema, null, 2))
    /*
    Output:

... (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 Nov 4, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-33d208e44b branch from 93782d0 to 29624cb Compare November 24, 2025 08:23
@ccntrq
Copy link
Copy Markdown
Owner

ccntrq commented Mar 24, 2026

@dependabot recreate

…with 6 updates

Bumps the production-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@effect/cli](https://github.com/Effect-TS/effect/tree/HEAD/packages/cli) | `0.71.0` | `0.72.0` |
| [@effect/platform](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform) | `0.92.0` | `0.93.0` |
| [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) | `0.98.0` | `0.99.0` |
| [@effect/printer](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer) | `0.46.0` | `0.47.0` |
| [@effect/printer-ansi](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer-ansi) | `0.46.0` | `0.47.0` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `3.18.0` | `3.19.0` |



Updates `@effect/cli` from 0.71.0 to 0.72.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/cli@0.72.0/packages/cli)

Updates `@effect/platform` from 0.92.0 to 0.93.0
- [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.93.0/packages/platform)

Updates `@effect/platform-node` from 0.98.0 to 0.99.0
- [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.99.0/packages/platform-node)

Updates `@effect/printer` from 0.46.0 to 0.47.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/printer/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/printer@0.47.0/packages/printer)

Updates `@effect/printer-ansi` from 0.46.0 to 0.47.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/printer-ansi/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/printer-ansi@0.47.0/packages/printer-ansi)

Updates `effect` from 3.18.0 to 3.19.0
- [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.19.0/packages/effect)

---
updated-dependencies:
- dependency-name: "@effect/cli"
  dependency-version: 0.72.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@effect/platform"
  dependency-version: 0.93.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@effect/platform-node"
  dependency-version: 0.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@effect/printer"
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@effect/printer-ansi"
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: effect
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-33d208e44b branch from 29624cb to 6458be8 Compare March 24, 2026 09:16
@ccntrq ccntrq closed this Mar 24, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 24, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-33d208e44b branch March 24, 2026 09:41
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