chore: release packages (beta) - #339
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This Changesets-generated release PR prepares the @temporal-contract/* fixed release group for publication as 8.0.0-beta.1 while the repo remains in pre-mode (beta), reflecting prior changesets (notably the unthrown@5.0.0-beta.5 bump and routing technical errors to the defect channel).
Changes:
- Bump package versions to
8.0.0-beta.1forclient,contract,worker, andtesting. - Add
8.0.0-beta.1changelog entries (detailed forclient/contract/worker). - Update
.changeset/pre.jsonto include the newly-applied changesets in the pre-mode tracking list.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/worker/package.json | Version bump to 8.0.0-beta.1 for the worker package. |
| packages/worker/CHANGELOG.md | Add 8.0.0-beta.1 release notes for worker (unthrown bump + defect-channel change). |
| packages/testing/package.json | Version bump to 8.0.0-beta.1 for the testing package. |
| packages/testing/CHANGELOG.md | Add 8.0.0-beta.1 heading for testing (currently empty). |
| packages/contract/package.json | Version bump to 8.0.0-beta.1 for the contract package. |
| packages/contract/CHANGELOG.md | Add 8.0.0-beta.1 release notes for contract (unthrown bump + defect-channel change). |
| packages/client/package.json | Version bump to 8.0.0-beta.1 for the client package. |
| packages/client/CHANGELOG.md | Add 8.0.0-beta.1 release notes for client (unthrown bump + defect-channel change). |
| .changeset/pre.json | Update pre-mode changeset list to include the new changesets. |
btravers
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
July 27, 2026 22:57
adc2af0 to
3af697a
Compare
btravers
force-pushed
the
changeset-release/main
branch
from
July 27, 2026 23:07
3af697a to
f816a00
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@temporal-contract/client@8.0.0-beta.1
Patch Changes
75ec554: Bump
unthrownto5.0.0-beta.5. This tracks two beta breaking changes:match's error handler key is renamederr→errCases, and the bare errorcombinators gained the
*Casessuffix (flatMapErr→flatMapErrCases,tapErr→tapErrCases).unthrownalso now declarests-patternas a peerdependency, so
ts-pattern(^5) is added alongside it. The peer range israised to
^5.0.0-beta.5.fff11ff: Bump
unthrownto5.0.0-beta.6, whose exhaustive matcher is now built-in(same
.with(…)/tag/Pcall-site shape — no code changes needed). Thets-patternpeer/dev dependencies added for beta.5 are removed:unthrownhaszero runtime dependencies, so nothing needs installing alongside it. The
unthrownpeer range is raised to^5.0.0-beta.6.efec2b2: Route
TechnicalErrorandRuntimeClientErrorto unthrown's defect channel instead of the modeledErrchannel.These two errors describe technical/infrastructure failures (connection/bundling faults, an unknown schedule ID, an unrecognized Temporal rejection) that are never branched on for domain logic. Per unthrown's Thesis chore(deps): bump actions/checkout from 4 to 6 #1, the
Echannel is only for anticipated domain failures, so they now surface as aDefectwhosecauseis aTechnicalError/RuntimeClientErrorinstance — the classes stay exported so the descriptive message,operation, andcausesurvive for logging.Breaking. Consumers who matched these on the error channel must move to the defect channel:
TypedClient.createandcreateWorkernow returnAsyncResult<_, never>(wasAsyncResult<_, TechnicalError>). Inspect setup faults viaresult.isDefect()/match'sdefecthandler /recoverDefect, notisErr().RuntimeClientError(startWorkflow,signalWithStart,executeWorkflow,getHandle, handlequeries/signals/updates/result/terminate/cancel/describe/fetchHistory, the schedule handle methods,ClientCallError). Schedule handle methods now returnAsyncResult<_, never>..with(tag("@temporal-contract/RuntimeClientError"), …)/.with(tag("@temporal-contract/TechnicalError"), …)arm from exhaustive matchers; handle these in thedefectarm (e.g.recoverDefect/tapDefect), matching oncause instanceof RuntimeClientErrorwhere needed.Updated dependencies [75ec554]
Updated dependencies [fff11ff]
Updated dependencies [efec2b2]
@temporal-contract/contract@8.0.0-beta.1
Patch Changes
75ec554: Bump
unthrownto5.0.0-beta.5. This tracks two beta breaking changes:match's error handler key is renamederr→errCases, and the bare errorcombinators gained the
*Casessuffix (flatMapErr→flatMapErrCases,tapErr→tapErrCases).unthrownalso now declarests-patternas a peerdependency, so
ts-pattern(^5) is added alongside it. The peer range israised to
^5.0.0-beta.5.fff11ff: Bump
unthrownto5.0.0-beta.6, whose exhaustive matcher is now built-in(same
.with(…)/tag/Pcall-site shape — no code changes needed). Thets-patternpeer/dev dependencies added for beta.5 are removed:unthrownhaszero runtime dependencies, so nothing needs installing alongside it. The
unthrownpeer range is raised to^5.0.0-beta.6.efec2b2: Route
TechnicalErrorandRuntimeClientErrorto unthrown's defect channel instead of the modeledErrchannel.These two errors describe technical/infrastructure failures (connection/bundling faults, an unknown schedule ID, an unrecognized Temporal rejection) that are never branched on for domain logic. Per unthrown's Thesis chore(deps): bump actions/checkout from 4 to 6 #1, the
Echannel is only for anticipated domain failures, so they now surface as aDefectwhosecauseis aTechnicalError/RuntimeClientErrorinstance — the classes stay exported so the descriptive message,operation, andcausesurvive for logging.Breaking. Consumers who matched these on the error channel must move to the defect channel:
TypedClient.createandcreateWorkernow returnAsyncResult<_, never>(wasAsyncResult<_, TechnicalError>). Inspect setup faults viaresult.isDefect()/match'sdefecthandler /recoverDefect, notisErr().RuntimeClientError(startWorkflow,signalWithStart,executeWorkflow,getHandle, handlequeries/signals/updates/result/terminate/cancel/describe/fetchHistory, the schedule handle methods,ClientCallError). Schedule handle methods now returnAsyncResult<_, never>..with(tag("@temporal-contract/RuntimeClientError"), …)/.with(tag("@temporal-contract/TechnicalError"), …)arm from exhaustive matchers; handle these in thedefectarm (e.g.recoverDefect/tapDefect), matching oncause instanceof RuntimeClientErrorwhere needed.@temporal-contract/worker@8.0.0-beta.1
Patch Changes
75ec554: Bump
unthrownto5.0.0-beta.5. This tracks two beta breaking changes:match's error handler key is renamederr→errCases, and the bare errorcombinators gained the
*Casessuffix (flatMapErr→flatMapErrCases,tapErr→tapErrCases).unthrownalso now declarests-patternas a peerdependency, so
ts-pattern(^5) is added alongside it. The peer range israised to
^5.0.0-beta.5.fff11ff: Bump
unthrownto5.0.0-beta.6, whose exhaustive matcher is now built-in(same
.with(…)/tag/Pcall-site shape — no code changes needed). Thets-patternpeer/dev dependencies added for beta.5 are removed:unthrownhaszero runtime dependencies, so nothing needs installing alongside it. The
unthrownpeer range is raised to^5.0.0-beta.6.efec2b2: Route
TechnicalErrorandRuntimeClientErrorto unthrown's defect channel instead of the modeledErrchannel.These two errors describe technical/infrastructure failures (connection/bundling faults, an unknown schedule ID, an unrecognized Temporal rejection) that are never branched on for domain logic. Per unthrown's Thesis chore(deps): bump actions/checkout from 4 to 6 #1, the
Echannel is only for anticipated domain failures, so they now surface as aDefectwhosecauseis aTechnicalError/RuntimeClientErrorinstance — the classes stay exported so the descriptive message,operation, andcausesurvive for logging.Breaking. Consumers who matched these on the error channel must move to the defect channel:
TypedClient.createandcreateWorkernow returnAsyncResult<_, never>(wasAsyncResult<_, TechnicalError>). Inspect setup faults viaresult.isDefect()/match'sdefecthandler /recoverDefect, notisErr().RuntimeClientError(startWorkflow,signalWithStart,executeWorkflow,getHandle, handlequeries/signals/updates/result/terminate/cancel/describe/fetchHistory, the schedule handle methods,ClientCallError). Schedule handle methods now returnAsyncResult<_, never>..with(tag("@temporal-contract/RuntimeClientError"), …)/.with(tag("@temporal-contract/TechnicalError"), …)arm from exhaustive matchers; handle these in thedefectarm (e.g.recoverDefect/tapDefect), matching oncause instanceof RuntimeClientErrorwhere needed.Updated dependencies [75ec554]
Updated dependencies [fff11ff]
Updated dependencies [efec2b2]
@temporal-contract/testing@8.0.0-beta.1