Skip to content

chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.106 - #1784

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/effect-4.0.0-beta.102
Open

chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.106#1784
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/effect-4.0.0-beta.102

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor

Bumps effect from 4.0.0-beta.101 to 4.0.0-beta.106.

Release notes

Sourced from effect's releases.

effect@4.0.0-beta.106

Patch Changes

  • #7110 2695168 Thanks @​fubhy! - Ensure concurrent first RcRef borrowers share the same resource generation.

  • #7114 6310a8c Thanks @​fubhy! - Report buffered worker send failures as WorkerError values.

  • #7117 c2071b1 Thanks @​fubhy! - Make TxQueue.shutdown safe to call after a queue has already been interrupted.

  • #7119 7aff81a Thanks @​fubhy! - Prevent SQL resolvers from invoking non-empty batch callbacks when every request fails encoding.

  • #7105 a1d4057 Thanks @​tim-smart! - Add ConfigProvider.fromEnvRecord for building a provider from an explicit environment record.

  • #7111 abf77b0 Thanks @​fubhy! - Preserve input fiber error types in Fiber.joinAll.

  • #7134 6c60375 Thanks @​marbemac! - Fix cluster shutdown hangs by failing abandoned non-discard requests and stream chunk acknowledgements with EntityNotAssignedToRunner, including persisted requests sent after runner unregistration. This adds EntityNotAssignedToRunner to the typed error channel of entity clients and request-only EntityProxy RPC/HTTP endpoints; discard endpoints remain unchanged.

  • #7107 22f4897 Thanks @​fubhy! - Preserve FormData bodies when converting client requests through HttpServerRequest.

  • #7120 615d1d5 Thanks @​fubhy! - Fix SqlResolver.findById failing to complete duplicate requests when id encoding fails, which surfaced as a RequestResolver did not complete request defect instead of the underlying SchemaError.

  • #7131 3a86757 Thanks @​fubhy! - Ignore MCP cancellation notifications for unknown request identifiers.

  • #7104 f4a9762 Thanks @​gcanti! - Add Function.memoizeIdempotent and use it to avoid reprocessing canonical Schema ASTs, including optional and mutable property modifiers. Cache Config schema cursor AST compilation.

  • #7144 0bcf6ed Thanks @​fubhy! - Stop multipart parsing after part count, part size, or field size limits are exceeded.

  • #7121 ba9cb63 Thanks @​fubhy! - Prevent execution-plan event observer defects from changing attempt outcomes or leaving attempt events unpaired.

  • #7147 42c810d Thanks @​tim-smart! - Release worker pool entries when an RPC worker's receive loop fails.

  • #7148 1416ccd Thanks @​gcanti! - Consolidate schema arbitrary derivation into Schema.toArbitrary, which now returns a Schema.Arbitrary factory that accepts the fast-check module. Remove Schema.toArbitraryLazy and arbitrary derivation reports.

  • #7109 08d0d39 Thanks @​fubhy! - Fix RcRef leaking resources acquired before a failed acquisition.

  • #7146 548908a Thanks @​gcanti! - Improve Schema representation identity, anonymous-reference eligibility, and JSON Schema alias finalization.

  • #6862 4b3460d Thanks @​fubhy! - Ensure ScopedRef.set releases a replacement when the previous value's finalizer defects.

  • #7060 d170596 Thanks @​fubhy! - Preserve maxItems semantics when importing JSON Schema prefixItems.

  • #7116 aea89d0 Thanks @​fubhy! - Keep span end times at zero when tracer timing is disabled.

  • #7124 deed5fb Thanks @​fubhy! - Use a distinct AES-GCM initialization vector for each encrypted event log entry. EventLogEncryption.encrypt now returns each IV with its ciphertext, and encrypted event log clients and servers must be upgraded together because the WriteEntries wire shape changed.

effect@4.0.0-beta.105

Patch Changes

... (truncated)

Changelog

Sourced from effect's changelog.

4.0.0-beta.106

Patch Changes

  • #7110 2695168 Thanks @​fubhy! - Ensure concurrent first RcRef borrowers share the same resource generation.

  • #7114 6310a8c Thanks @​fubhy! - Report buffered worker send failures as WorkerError values.

  • #7117 c2071b1 Thanks @​fubhy! - Make TxQueue.shutdown safe to call after a queue has already been interrupted.

  • #7119 7aff81a Thanks @​fubhy! - Prevent SQL resolvers from invoking non-empty batch callbacks when every request fails encoding.

  • #7105 a1d4057 Thanks @​tim-smart! - Add ConfigProvider.fromEnvRecord for building a provider from an explicit environment record.

  • #7111 abf77b0 Thanks @​fubhy! - Preserve input fiber error types in Fiber.joinAll.

  • #7134 6c60375 Thanks @​marbemac! - Fix cluster shutdown hangs by failing abandoned non-discard requests and stream chunk acknowledgements with EntityNotAssignedToRunner, including persisted requests sent after runner unregistration. This adds EntityNotAssignedToRunner to the typed error channel of entity clients and request-only EntityProxy RPC/HTTP endpoints; discard endpoints remain unchanged.

  • #7107 22f4897 Thanks @​fubhy! - Preserve FormData bodies when converting client requests through HttpServerRequest.

  • #7120 615d1d5 Thanks @​fubhy! - Fix SqlResolver.findById failing to complete duplicate requests when id encoding fails, which surfaced as a RequestResolver did not complete request defect instead of the underlying SchemaError.

  • #7131 3a86757 Thanks @​fubhy! - Ignore MCP cancellation notifications for unknown request identifiers.

  • #7104 f4a9762 Thanks @​gcanti! - Add Function.memoizeIdempotent and use it to avoid reprocessing canonical Schema ASTs, including optional and mutable property modifiers. Cache Config schema cursor AST compilation.

  • #7144 0bcf6ed Thanks @​fubhy! - Stop multipart parsing after part count, part size, or field size limits are exceeded.

  • #7121 ba9cb63 Thanks @​fubhy! - Prevent execution-plan event observer defects from changing attempt outcomes or leaving attempt events unpaired.

  • #7147 42c810d Thanks @​tim-smart! - Release worker pool entries when an RPC worker's receive loop fails.

  • #7148 1416ccd Thanks @​gcanti! - Consolidate schema arbitrary derivation into Schema.toArbitrary, which now returns a Schema.Arbitrary factory that accepts the fast-check module. Remove Schema.toArbitraryLazy and arbitrary derivation reports.

  • #7109 08d0d39 Thanks @​fubhy! - Fix RcRef leaking resources acquired before a failed acquisition.

  • #7146 548908a Thanks @​gcanti! - Improve Schema representation identity, anonymous-reference eligibility, and JSON Schema alias finalization.

  • #6862 4b3460d Thanks @​fubhy! - Ensure ScopedRef.set releases a replacement when the previous value's finalizer defects.

  • #7060 d170596 Thanks @​fubhy! - Preserve maxItems semantics when importing JSON Schema prefixItems.

  • #7116 aea89d0 Thanks @​fubhy! - Keep span end times at zero when tracer timing is disabled.

  • #7124 deed5fb Thanks @​fubhy! - Use a distinct AES-GCM initialization vector for each encrypted event log entry. EventLogEncryption.encrypt now returns each IV with its ciphertext, and encrypted event log clients and servers must be upgraded together because the WriteEntries wire shape changed.

4.0.0-beta.105

Patch Changes

... (truncated)

Commits
  • fb75264 Version Packages (beta) (#7103)
  • 0bcf6ed Fix multipart parser continuing after maxParts (#7144)
  • 1416ccd Simplify Schema arbitrary derivation API (#7148)
  • 548908a Improve Schema representation reference identity (#7146)
  • 6c60375 Fix cluster shutdown hang from abandoned request (#7134)
  • 5f1775c Keep NodeTerminal readline alive briefly between prompts (#7106)
  • 3a86757 Fix unknown MCP cancellation suppresses a later reused request ID (#7131)
  • deed5fb Fix batched encrypted event records reuse per-record randomization metadata (...
  • 615d1d5 Fix SQL resolvers executing empty batches (#7120)
  • b9875ea Fix closing an older Bun serve scope restores an obsolete handler (#7113)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 4, 2026
@vercel

vercel Bot commented Aug 4, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
orpc Ready Ready Preview Aug 10, 2026 8:26am

@pkg-pr-new

pkg-pr-new Bot commented Aug 4, 2026

Copy link
Copy Markdown
More templates

@orpc/ai-sdk

npm i https://pkg.pr.new/@orpc/ai-sdk@1784

@orpc/arktype

npm i https://pkg.pr.new/@orpc/arktype@1784

@orpc/bun

npm i https://pkg.pr.new/@orpc/bun@1784

@orpc/client

npm i https://pkg.pr.new/@orpc/client@1784

@orpc/cloudflare

npm i https://pkg.pr.new/@orpc/cloudflare@1784

@orpc/contract

npm i https://pkg.pr.new/@orpc/contract@1784

@orpc/experimental-effect

npm i https://pkg.pr.new/@orpc/experimental-effect@1784

@orpc/evlog

npm i https://pkg.pr.new/@orpc/evlog@1784

@orpc/hibernation

npm i https://pkg.pr.new/@orpc/hibernation@1784

@orpc/json-schema

npm i https://pkg.pr.new/@orpc/json-schema@1784

@orpc/nest

npm i https://pkg.pr.new/@orpc/nest@1784

@orpc/next

npm i https://pkg.pr.new/@orpc/next@1784

@orpc/node

npm i https://pkg.pr.new/@orpc/node@1784

@orpc/openapi

npm i https://pkg.pr.new/@orpc/openapi@1784

@orpc/opentelemetry

npm i https://pkg.pr.new/@orpc/opentelemetry@1784

@orpc/pinia-colada

npm i https://pkg.pr.new/@orpc/pinia-colada@1784

@orpc/pino

npm i https://pkg.pr.new/@orpc/pino@1784

@orpc/publisher

npm i https://pkg.pr.new/@orpc/publisher@1784

@orpc/ratelimit

npm i https://pkg.pr.new/@orpc/ratelimit@1784

@orpc/server

npm i https://pkg.pr.new/@orpc/server@1784

@orpc/shared

npm i https://pkg.pr.new/@orpc/shared@1784

@orpc/swr

npm i https://pkg.pr.new/@orpc/swr@1784

@orpc/tanstack-query

npm i https://pkg.pr.new/@orpc/tanstack-query@1784

@orpc/trpc

npm i https://pkg.pr.new/@orpc/trpc@1784

@orpc/valibot

npm i https://pkg.pr.new/@orpc/valibot@1784

@orpc/zod

npm i https://pkg.pr.new/@orpc/zod@1784

commit: 5f27765

@codecov

codecov Bot commented Aug 4, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@codspeed-hq

codspeed-hq Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Merging this PR will not alter performance

✅ 30 untouched benchmarks


Comparing dependabot/npm_and_yarn/effect-4.0.0-beta.102 (5f27765) with main (70db448)

Open in CodSpeed

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/effect-4.0.0-beta.102 branch from f2a02d9 to dfa1f07 Compare August 4, 2026 12:53
@dependabot dependabot Bot changed the title chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.102 chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.103 Aug 6, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/effect-4.0.0-beta.102 branch from dfa1f07 to df6d16b Compare August 6, 2026 08:05
@dependabot dependabot Bot changed the title chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.103 chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.105 Aug 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/effect-4.0.0-beta.102 branch from df6d16b to 6019344 Compare August 8, 2026 11:23
Bumps [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) from 4.0.0-beta.101 to 4.0.0-beta.106.
- [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@4.0.0-beta.106/packages/effect)

---
updated-dependencies:
- dependency-name: effect
  dependency-version: 4.0.0-beta.102
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.105 chore(deps-dev): bump effect from 4.0.0-beta.101 to 4.0.0-beta.106 Aug 10, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/effect-4.0.0-beta.102 branch from 6019344 to 5f27765 Compare August 10, 2026 08:24
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.

0 participants