You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#6302307d54a Thanks @fubhy! - Allow cron fields like 5/15 to expand from the starting value through the field maximum.
#6303d95868a Thanks @fubhy! - Fix Schedule.cron when the test clock is adjusted to infinity.
#628595c7d2e Thanks @chatman-media! - Fix Cron.next skipping earlier matching days when the upcoming day-of-month does not exist in the current month. For an expression like 0 0 1,16,31 * *, advancing from a date past the 16th selected day 31; in a month without 31 days this overflowed into the following month and landed on a later matching day (e.g. the 16th), silently skipping the 1st. Cron.next now wraps to the first matching day of the next month in that case, matching the behaviour of Cron.prev and other cron implementations.
#6305d24511f Thanks @fubhy! - Fix cron parsing and scheduling edge cases for whitespace, Sunday 7, strict numeric tokens, explicit full day ranges, and month-constrained day-of-month / weekday matching.
#62678222963 Thanks @fubhy! - Fix Graph traversal and shortest-path algorithms to traverse undirected edges independently of their stored source/target orientation.
#619474f3267 Thanks @mikearnaldi! - Fix TestClock.unsafeCurrentTimeNanos() to floor fractional millisecond instants before converting them to BigInt.
#6139f99048e Thanks @marbemac! - Fix batched request resolver defects causing consumer fibers to hang forever.
When a RequestResolver.makeBatched resolver died with a defect, the request Deferreds were never completed because the cleanup logic in invokeWithInterrupt used flatMap (which only runs on success). Changed to ensuring so uncompleted request entries are always resolved regardless of exit type.
Configuration
📅 Schedule: (UTC)
Branch creation
Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
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
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
renovateBot
changed the title
chore(deps): update all non-major dependencies to ^3.21.2
chore(deps): update all non-major dependencies to ^3.21.3
Jun 8, 2026
renovateBot
changed the title
chore(deps): update all non-major dependencies to ^3.21.3
chore(deps): update all non-major dependencies to ^3.21.4
Jun 22, 2026
renovateBot
changed the title
chore(deps): update all non-major dependencies to ^3.21.4
chore(deps): update all non-major dependencies
Jun 22, 2026
renovateBot
changed the title
chore(deps): update all non-major dependencies
chore(deps): update dependency effect to ^3.21.4
Jun 25, 2026
Comment @coderabbitai help to get the list of available commands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^3.21.0→^3.22.2Release Notes
Effect-TS/effect (effect)
v3.22.2Compare Source
Patch Changes
#6233
291d5a9Thanks @mvanhorn! - Fix TMap.remove and removeAll erroneously clearing entire bucket on hash collision.#7170
7c6e1e5Thanks @thewilkybarkid! - Fix use of Schema.NonEmptyArrayEnsure with stringsv3.22.1Compare Source
Patch Changes
#6443
7ccbd9cThanks @coyaSONG! - Clarify thatContext.GenericTagrequires a key.#6673
ab2af6dThanks @tim-smart! - Fix zero-capacityMailboxrendezvous behavior fortakeandtakeN.#6761
3cc3c6eThanks @tim-smart! - Use a linear matcher when decoding template literals containing only string spans.#6507
3d390f2Thanks @tim-smart! - Disable unhandled error logging for fibers spawned byEffect.timeout.#6762
fcabf08Thanks @tim-smart! - Redact errors from wrapped config parsers and avoid JSON key path collisions.#6669
735d81bThanks @tim-smart! - FixStream.asyncPushtermination with bounded dropping and sliding buffers.v3.22.0Compare Source
Minor Changes
fffdee0Thanks @effect-bot! - AddGraph.successorsandGraph.predecessors, deprecateGraph.neighborsDirected, and fix graph algorithm edge cases around reversal, undirected edge queries, shortest-path weight validation, topological sort initials, and strongly connected components.v3.21.5Compare Source
Patch Changes
#6302
307d54aThanks @fubhy! - Allow cron fields like5/15to expand from the starting value through the field maximum.#6303
d95868aThanks @fubhy! - FixSchedule.cronwhen the test clock is adjusted to infinity.#6285
95c7d2eThanks @chatman-media! - FixCron.nextskipping earlier matching days when the upcoming day-of-month does not exist in the current month. For an expression like0 0 1,16,31 * *, advancing from a date past the 16th selected day 31; in a month without 31 days this overflowed into the following month and landed on a later matching day (e.g. the 16th), silently skipping the 1st.Cron.nextnow wraps to the first matching day of the next month in that case, matching the behaviour ofCron.prevand other cron implementations.#6305
d24511fThanks @fubhy! - Fix cron parsing and scheduling edge cases for whitespace, Sunday7, strict numeric tokens, explicit full day ranges, and month-constrained day-of-month / weekday matching.v3.21.4Compare Source
Patch Changes
8222963Thanks @fubhy! - Fix Graph traversal and shortest-path algorithms to traverse undirected edges independently of their stored source/target orientation.v3.21.3Compare Source
Patch Changes
#6250
e2126bcThanks @milkyskies! - Fix $match generic type parameter inference inside arms (#6249)#6257
f7e836eThanks @gcanti! - EmitadditionalProperties: falsefor records with string keys andSchema.Nevervalues.v3.21.2Compare Source
Patch Changes
74f3267Thanks @mikearnaldi! - FixTestClock.unsafeCurrentTimeNanos()to floor fractional millisecond instants before converting them toBigInt.v3.21.1Compare Source
Patch Changes
#6139
f99048eThanks @marbemac! - Fix batched request resolver defects causing consumer fibers to hang forever.When a
RequestResolver.makeBatchedresolver died with a defect, the requestDeferreds were never completed because the cleanup logic ininvokeWithInterruptusedflatMap(which only runs on success). Changed toensuringso uncompleted request entries are always resolved regardless of exit type.Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.