Update bun minor+patch updates #66

Merged
Thilawyn merged 1 commits from renovate/bun-minor-patch into next 2025-11-06 14:04:48 +01:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
@effect/language-service ^0.54.0 -> ^0.55.0 age confidence
@effect/opentelemetry (source) ^0.58.0 -> ^0.59.0 age confidence
@effect/platform (source) ^0.92.0 -> ^0.93.0 age confidence
@effect/platform-browser (source) ^0.72.0 -> ^0.73.0 age confidence
@effect/platform-bun (source) ^0.81.0 -> ^0.83.0 age confidence
@effect/platform-node (source) ^0.98.0 -> ^0.100.0 age confidence
@effect/rpc (source) ^0.71.0 -> ^0.72.0 age confidence

Release Notes

Effect-TS/language-service (@​effect/language-service)

v0.55.2

Compare Source

Patch Changes
  • #​484 7c18fa8 Thanks @​mattiamanzati! - Fix edge cases in missedPipeableOpportunity diagnostic where it incorrectly flagged valid code patterns. The diagnostic now properly:
    • Excludes pipe function calls from chain detection
    • Ignores chains where the function returns a callable type (avoiding false positives for higher-order functions like Schedule.whileOutput)

v0.55.1

Compare Source

Patch Changes
  • #​482 9695bdf Thanks @​mattiamanzati! - Fix missedPipeableOpportunity diagnostic to correctly detect nested function call chains

    The diagnostic now properly identifies when nested function calls can be converted to pipeable style. Previously, the chain detection logic incorrectly tracked parent-child relationships, causing false positives. This fix ensures that only valid pipeable chains are reported, such as toString(double(addOne(5))) which can be refactored to addOne(5).pipe(double, toString).

    Example:

    // Before: incorrectly flagged or missed
    identity(Schema.decodeUnknown(MyStruct)({ x: 42, y: 42 }));
    
    // After: correctly handles complex nested calls
    toString(double(addOne(5))); // ✓ Now correctly detected as pipeable
    

v0.55.0

Compare Source

Minor Changes
  • #​478 9a9d5f9 Thanks @​mattiamanzati! - Add runEffectInsideEffect diagnostic to warn when using Effect.runSync, Effect.runPromise, Effect.runFork, or Effect.runCallback inside an Effect context (such as Effect.gen, Effect.fn, or Effect.fnUntraced).

    Running effects inside effects is generally not recommended as it breaks the composability of the Effect system. Instead, developers should extract the Runtime and use Runtime.runSync, Runtime.runPromise, etc., or restructure their code to avoid running effects inside effects.

    Example:

    // ❌ Will trigger diagnostic
    export const program = Effect.gen(function* () {
      const data = yield* Effect.succeed(42);
      const result = Effect.runSync(Effect.sync(() => data * 2)); // Not recommended
      return result;
    });
    
    // ✅ Proper approach - extract runtime
    export const program = Effect.gen(function* () {
      const data = yield* Effect.succeed(42);
      const runtime = yield* Effect.runtime();
      const result = Runtime.runSync(runtime)(Effect.sync(() => data * 2));
      return result;
    });
    
    // ✅ Better approach - compose effects
    export const program = Effect.gen(function* () {
      const data = yield* Effect.succeed(42);
      const result = yield* Effect.sync(() => data * 2);
      return result;
    });
    
  • #​480 f1a0ece Thanks @​mattiamanzati! - Add schemaUnionOfLiterals diagnostic to warn when using Schema.Union with multiple Schema.Literal calls that can be simplified to a single Schema.Literal call.

    This diagnostic helps improve code readability and maintainability by suggesting a more concise syntax for union of literals.

    Example:

    // ❌ Will trigger diagnostic
    export const Status = Schema.Union(Schema.Literal("A"), Schema.Literal("B"));
    
    // ✅ Simplified approach
    export const Status = Schema.Literal("A", "B");
    
Patch Changes
  • #​481 160e018 Thanks @​mattiamanzati! - Update Effect ecosystem dependencies to latest versions:

    • @effect/cli: 0.71.0 → 0.72.0
    • @effect/platform: 0.92.1 → 0.93.0
    • @effect/platform-node: 0.98.3 → 0.99.0
    • @effect/printer-ansi: 0.46.0 → 0.47.0
    • @effect/rpc: 0.71.0 → 0.72.0
    • effect: Updated to stable version 3.19.0

    Also updated development tooling dependencies:

    • vitest: 3.2.4 → 4.0.6
    • @vitest/coverage-v8: 3.2.4 → 4.0.6
    • TypeScript ESLint packages: 8.46.1 → 8.46.3
    • Various other minor dependency updates
Effect-TS/effect (@​effect/opentelemetry)

v0.59.0

Compare Source

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

v0.93.0

Compare Source

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

v0.73.0

Compare Source

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

v0.83.0

Compare Source

Patch Changes

v0.82.0

Compare Source

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.

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

v0.100.0

Compare Source

Patch Changes

v0.99.0

Compare Source

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.

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

v0.72.1

Compare Source

Patch Changes

v0.72.0

Compare Source

Patch 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.


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 becomes conflicted, 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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@effect/language-service](https://github.com/Effect-TS/language-service) | [`^0.54.0` -> `^0.55.0`](https://renovatebot.com/diffs/npm/@effect%2flanguage-service/0.54.0/0.55.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2flanguage-service/0.55.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2flanguage-service/0.54.0/0.55.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/opentelemetry](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/opentelemetry)) | [`^0.58.0` -> `^0.59.0`](https://renovatebot.com/diffs/npm/@effect%2fopentelemetry/0.58.0/0.59.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2fopentelemetry/0.59.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2fopentelemetry/0.58.0/0.59.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/platform](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform)) | [`^0.92.0` -> `^0.93.0`](https://renovatebot.com/diffs/npm/@effect%2fplatform/0.92.1/0.93.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2fplatform/0.93.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2fplatform/0.92.1/0.93.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/platform-browser](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-browser)) | [`^0.72.0` -> `^0.73.0`](https://renovatebot.com/diffs/npm/@effect%2fplatform-browser/0.72.0/0.73.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2fplatform-browser/0.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2fplatform-browser/0.72.0/0.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/platform-bun](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-bun)) | [`^0.81.0` -> `^0.83.0`](https://renovatebot.com/diffs/npm/@effect%2fplatform-bun/0.81.1/0.83.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2fplatform-bun/0.83.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2fplatform-bun/0.81.1/0.83.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/platform-node](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node)) | [`^0.98.0` -> `^0.100.0`](https://renovatebot.com/diffs/npm/@effect%2fplatform-node/0.98.4/0.100.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2fplatform-node/0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2fplatform-node/0.98.4/0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@effect/rpc](https://effect.website) ([source](https://github.com/Effect-TS/effect/tree/HEAD/packages/rpc)) | [`^0.71.0` -> `^0.72.0`](https://renovatebot.com/diffs/npm/@effect%2frpc/0.71.2/0.72.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@effect%2frpc/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@effect%2frpc/0.71.2/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>Effect-TS/language-service (@&#8203;effect/language-service)</summary> ### [`v0.55.2`](https://github.com/Effect-TS/language-service/blob/HEAD/CHANGELOG.md#0552) [Compare Source](https://github.com/Effect-TS/language-service/compare/v0.55.1...v0.55.2) ##### Patch Changes - [#&#8203;484](https://github.com/Effect-TS/language-service/pull/484) [`7c18fa8`](https://github.com/Effect-TS/language-service/commit/7c18fa8b08c6e6cf0914a3ac140c8e9710868eb5) Thanks [@&#8203;mattiamanzati](https://github.com/mattiamanzati)! - Fix edge cases in missedPipeableOpportunity diagnostic where it incorrectly flagged valid code patterns. The diagnostic now properly: - Excludes `pipe` function calls from chain detection - Ignores chains where the function returns a callable type (avoiding false positives for higher-order functions like `Schedule.whileOutput`) ### [`v0.55.1`](https://github.com/Effect-TS/language-service/blob/HEAD/CHANGELOG.md#0551) [Compare Source](https://github.com/Effect-TS/language-service/compare/v0.55.0...v0.55.1) ##### Patch Changes - [#&#8203;482](https://github.com/Effect-TS/language-service/pull/482) [`9695bdf`](https://github.com/Effect-TS/language-service/commit/9695bdfec4412569150a5332405a1ec16b4fa085) Thanks [@&#8203;mattiamanzati](https://github.com/mattiamanzati)! - Fix `missedPipeableOpportunity` diagnostic to correctly detect nested function call chains The diagnostic now properly identifies when nested function calls can be converted to pipeable style. Previously, the chain detection logic incorrectly tracked parent-child relationships, causing false positives. This fix ensures that only valid pipeable chains are reported, such as `toString(double(addOne(5)))` which can be refactored to `addOne(5).pipe(double, toString)`. Example: ```typescript // Before: incorrectly flagged or missed identity(Schema.decodeUnknown(MyStruct)({ x: 42, y: 42 })); // After: correctly handles complex nested calls toString(double(addOne(5))); // ✓ Now correctly detected as pipeable ``` ### [`v0.55.0`](https://github.com/Effect-TS/language-service/blob/HEAD/CHANGELOG.md#0550) [Compare Source](https://github.com/Effect-TS/language-service/compare/v0.54.0...v0.55.0) ##### Minor Changes - [#&#8203;478](https://github.com/Effect-TS/language-service/pull/478) [`9a9d5f9`](https://github.com/Effect-TS/language-service/commit/9a9d5f9486df177dd2e9d9cf63e97569b0436de0) Thanks [@&#8203;mattiamanzati](https://github.com/mattiamanzati)! - Add `runEffectInsideEffect` diagnostic to warn when using `Effect.runSync`, `Effect.runPromise`, `Effect.runFork`, or `Effect.runCallback` inside an Effect context (such as `Effect.gen`, `Effect.fn`, or `Effect.fnUntraced`). Running effects inside effects is generally not recommended as it breaks the composability of the Effect system. Instead, developers should extract the Runtime and use `Runtime.runSync`, `Runtime.runPromise`, etc., or restructure their code to avoid running effects inside effects. Example: ```typescript // ❌ Will trigger diagnostic export const program = Effect.gen(function* () { const data = yield* Effect.succeed(42); const result = Effect.runSync(Effect.sync(() => data * 2)); // Not recommended return result; }); // ✅ Proper approach - extract runtime export const program = Effect.gen(function* () { const data = yield* Effect.succeed(42); const runtime = yield* Effect.runtime(); const result = Runtime.runSync(runtime)(Effect.sync(() => data * 2)); return result; }); // ✅ Better approach - compose effects export const program = Effect.gen(function* () { const data = yield* Effect.succeed(42); const result = yield* Effect.sync(() => data * 2); return result; }); ``` - [#&#8203;480](https://github.com/Effect-TS/language-service/pull/480) [`f1a0ece`](https://github.com/Effect-TS/language-service/commit/f1a0ece931826bd40c35118833b3be2ae6c90ab7) Thanks [@&#8203;mattiamanzati](https://github.com/mattiamanzati)! - Add `schemaUnionOfLiterals` diagnostic to warn when using `Schema.Union` with multiple `Schema.Literal` calls that can be simplified to a single `Schema.Literal` call. This diagnostic helps improve code readability and maintainability by suggesting a more concise syntax for union of literals. Example: ```typescript // ❌ Will trigger diagnostic export const Status = Schema.Union(Schema.Literal("A"), Schema.Literal("B")); // ✅ Simplified approach export const Status = Schema.Literal("A", "B"); ``` ##### Patch Changes - [#&#8203;481](https://github.com/Effect-TS/language-service/pull/481) [`160e018`](https://github.com/Effect-TS/language-service/commit/160e018c6f2eef21d537cc5e4f2666a43beb4724) Thanks [@&#8203;mattiamanzati](https://github.com/mattiamanzati)! - Update Effect ecosystem dependencies to latest versions: - `@effect/cli`: 0.71.0 → 0.72.0 - `@effect/platform`: 0.92.1 → 0.93.0 - `@effect/platform-node`: 0.98.3 → 0.99.0 - `@effect/printer-ansi`: 0.46.0 → 0.47.0 - `@effect/rpc`: 0.71.0 → 0.72.0 - `effect`: Updated to stable version 3.19.0 Also updated development tooling dependencies: - `vitest`: 3.2.4 → 4.0.6 - `@vitest/coverage-v8`: 3.2.4 → 4.0.6 - TypeScript ESLint packages: 8.46.1 → 8.46.3 - Various other minor dependency updates </details> <details> <summary>Effect-TS/effect (@&#8203;effect/opentelemetry)</summary> ### [`v0.59.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/opentelemetry/CHANGELOG.md#0590) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/opentelemetry@0.58.0...@effect/opentelemetry@0.59.0) ##### Patch Changes - Updated dependencies \[[`3c15d5f`](https://github.com/Effect-TS/effect/commit/3c15d5f99fb8d8470a00c5a33d9ba3cac89dfe4c), [`3863fa8`](https://github.com/Effect-TS/effect/commit/3863fa89f61e63e5529fd961e37333bddf7db64a), [`2a03c76`](https://github.com/Effect-TS/effect/commit/2a03c76c2781ca7e9e228e838eab2eb0d0795b1d), [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433)]: - effect\@&#8203;3.19.0 - [@&#8203;effect/platform](https://github.com/effect/platform)@&#8203;0.93.0 </details> <details> <summary>Effect-TS/effect (@&#8203;effect/platform)</summary> ### [`v0.93.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform/CHANGELOG.md#0930) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform@0.92.1...@effect/platform@0.93.0) ##### Patch Changes - [#&#8203;5606](https://github.com/Effect-TS/effect/pull/5606) [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433) Thanks [@&#8203;tim-smart](https://github.com/tim-smart)! - expose Layer output in HttpLayerRouter.serve - Updated dependencies \[[`3c15d5f`](https://github.com/Effect-TS/effect/commit/3c15d5f99fb8d8470a00c5a33d9ba3cac89dfe4c), [`3863fa8`](https://github.com/Effect-TS/effect/commit/3863fa89f61e63e5529fd961e37333bddf7db64a), [`2a03c76`](https://github.com/Effect-TS/effect/commit/2a03c76c2781ca7e9e228e838eab2eb0d0795b1d), [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433)]: - effect\@&#8203;3.19.0 </details> <details> <summary>Effect-TS/effect (@&#8203;effect/platform-browser)</summary> ### [`v0.73.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform-browser/CHANGELOG.md#0730) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform-browser@0.72.0...@effect/platform-browser@0.73.0) ##### Patch Changes - Updated dependencies \[[`3c15d5f`](https://github.com/Effect-TS/effect/commit/3c15d5f99fb8d8470a00c5a33d9ba3cac89dfe4c), [`3863fa8`](https://github.com/Effect-TS/effect/commit/3863fa89f61e63e5529fd961e37333bddf7db64a), [`2a03c76`](https://github.com/Effect-TS/effect/commit/2a03c76c2781ca7e9e228e838eab2eb0d0795b1d), [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433)]: - effect\@&#8203;3.19.0 - [@&#8203;effect/platform](https://github.com/effect/platform)@&#8203;0.93.0 </details> <details> <summary>Effect-TS/effect (@&#8203;effect/platform-bun)</summary> ### [`v0.83.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform-bun/CHANGELOG.md#0830) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform-bun@0.82.0...@effect/platform-bun@0.83.0) ##### Patch Changes - Updated dependencies \[[`571025c`](https://github.com/Effect-TS/effect/commit/571025ceaff6ef432a61bf65735a5a0f45118313), [`d43577b`](https://github.com/Effect-TS/effect/commit/d43577be59ae510812287b1cbffe6da15c040452)]: - [@&#8203;effect/cluster](https://github.com/effect/cluster)@&#8203;0.52.0 - [@&#8203;effect/sql](https://github.com/effect/sql)@&#8203;0.48.0 - [@&#8203;effect/rpc](https://github.com/effect/rpc)@&#8203;0.72.1 - [@&#8203;effect/platform-node-shared](https://github.com/effect/platform-node-shared)@&#8203;0.53.0 ### [`v0.82.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform-bun/CHANGELOG.md#0820) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform-bun@0.81.1...@effect/platform-bun@0.82.0) ##### Minor Changes - [#&#8203;5606](https://github.com/Effect-TS/effect/pull/5606) [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433) Thanks [@&#8203;tim-smart](https://github.com/tim-smart)! - backport [@&#8203;effect/cluster](https://github.com/effect/cluster) from effect v4 [@&#8203;effect/cluster](https://github.com/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`. </details> <details> <summary>Effect-TS/effect (@&#8203;effect/platform-node)</summary> ### [`v0.100.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform-node/CHANGELOG.md#01000) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform-node@0.99.0...@effect/platform-node@0.100.0) ##### Patch Changes - Updated dependencies \[[`571025c`](https://github.com/Effect-TS/effect/commit/571025ceaff6ef432a61bf65735a5a0f45118313), [`d43577b`](https://github.com/Effect-TS/effect/commit/d43577be59ae510812287b1cbffe6da15c040452)]: - [@&#8203;effect/cluster](https://github.com/effect/cluster)@&#8203;0.52.0 - [@&#8203;effect/sql](https://github.com/effect/sql)@&#8203;0.48.0 - [@&#8203;effect/rpc](https://github.com/effect/rpc)@&#8203;0.72.1 - [@&#8203;effect/platform-node-shared](https://github.com/effect/platform-node-shared)@&#8203;0.53.0 ### [`v0.99.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/platform-node/CHANGELOG.md#0990) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/platform-node@0.98.4...@effect/platform-node@0.99.0) ##### Minor Changes - [#&#8203;5606](https://github.com/Effect-TS/effect/pull/5606) [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433) Thanks [@&#8203;tim-smart](https://github.com/tim-smart)! - backport [@&#8203;effect/cluster](https://github.com/effect/cluster) from effect v4 [@&#8203;effect/cluster](https://github.com/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`. </details> <details> <summary>Effect-TS/effect (@&#8203;effect/rpc)</summary> ### [`v0.72.1`](https://github.com/Effect-TS/effect/blob/HEAD/packages/rpc/CHANGELOG.md#0721) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/rpc@0.72.0...@effect/rpc@0.72.1) ##### Patch Changes - [#&#8203;5682](https://github.com/Effect-TS/effect/pull/5682) [`d43577b`](https://github.com/Effect-TS/effect/commit/d43577be59ae510812287b1cbffe6da15c040452) Thanks [@&#8203;jrmdayn](https://github.com/jrmdayn)! - Fix some typings around RpcServer context argument ### [`v0.72.0`](https://github.com/Effect-TS/effect/blob/HEAD/packages/rpc/CHANGELOG.md#0720) [Compare Source](https://github.com/Effect-TS/effect/compare/@effect/rpc@0.71.2...@effect/rpc@0.72.0) ##### Patch Changes - [#&#8203;5606](https://github.com/Effect-TS/effect/pull/5606) [`24a1685`](https://github.com/Effect-TS/effect/commit/24a1685c70a9ed157468650f95a5c3da3f2c2433) Thanks [@&#8203;tim-smart](https://github.com/tim-smart)! - backport [@&#8203;effect/cluster](https://github.com/effect/cluster) from effect v4 [@&#8203;effect/cluster](https://github.com/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`. </details> --- ### 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 becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNjkuMyIsInVwZGF0ZWRJblZlciI6IjQxLjE3MS40IiwidGFyZ2V0QnJhbmNoIjoibmV4dCIsImxhYmVscyI6W119-->
renovate-bot added 1 commit 2025-11-04 13:05:11 +01:00
Update bun minor+patch updates
Some checks failed
Lint / lint (push) Failing after 8s
Build / build (pull_request) Failing after 18s
3eefdfe985
renovate-bot added 2 commits 2025-11-05 13:05:43 +01:00
Update bun minor+patch updates
Some checks failed
Lint / lint (push) Failing after 8s
Build / build (pull_request) Failing after 18s
3eefdfe985
Update bun minor+patch updates
Some checks failed
Lint / lint (push) Failing after 8s
Build / build (pull_request) Failing after 18s
e09a37daeb
Thilawyn added 2 commits 2025-11-06 14:04:40 +01:00
Update bun minor+patch updates
Some checks failed
Lint / lint (push) Failing after 8s
Build / build (pull_request) Failing after 18s
e09a37daeb
Update bun minor+patch updates
Some checks failed
Lint / lint (push) Failing after 7s
Build / build (pull_request) Failing after 18s
688a5f2564
Thilawyn merged commit a5c3d4c3ba into next 2025-11-06 14:04:48 +01:00
Thilawyn deleted branch renovate/bun-minor-patch 2025-11-06 14:04:49 +01:00
Sign in to join this conversation.
No Reviewers
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Thilawyn/website#66