chore: release packages#41
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR is an automated Changesets release PR to publish unthrown@1.1.0 and bump all @unthrown/* packages in the fixed version group to 1.1.0, with corresponding changelog entries and removal of the consumed changeset.
Changes:
- Bump package versions across the workspace to
1.1.0. - Generate/update per-package
CHANGELOG.mdentries for the release. - Remove the changeset file that has been applied to the changelogs.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/core/package.json | Bumps unthrown version to 1.1.0. |
| packages/core/CHANGELOG.md | Adds 1.1.0 release notes (minor changes: flatTapErr, isResult). |
| packages/boxed/package.json | Bumps @unthrown/boxed version to 1.1.0. |
| packages/boxed/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/effect/package.json | Bumps @unthrown/effect version to 1.1.0. |
| packages/effect/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/neverthrow/package.json | Bumps @unthrown/neverthrow version to 1.1.0. |
| packages/neverthrow/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/pattern/package.json | Bumps @unthrown/pattern version to 1.1.0. |
| packages/pattern/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/standard-schema/package.json | Bumps @unthrown/standard-schema version to 1.1.0. |
| packages/standard-schema/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/vitest/package.json | Bumps @unthrown/vitest version to 1.1.0. |
| packages/vitest/CHANGELOG.md | Adds 1.1.0 entry noting dependency update to unthrown@1.1.0. |
| packages/oxlint/package.json | Bumps @unthrown/oxlint version to 1.1.0. |
| packages/oxlint/CHANGELOG.md | Adds 1.1.0 heading (noted a minor formatting consistency nit in a PR comment). |
| .changeset/flat-tap-err-is-result.md | Removes consumed changeset after generating release notes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+3
to
+4
| ## 1.1.0 | ||
|
|
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.
Releases
unthrown@1.1.0
Minor Changes
6eeb19d: Add two members, closing the only structural gaps surfaced by comparing the
surface against boxed / neverthrow / byethrow:
flatTapErr(onResultandAsyncResult) — the error-channel mirror offlatTap: runs aResult-returning effect on the error, keeps the originalerror on the effect's success, and threads the effect's error otherwise
(
Result<T, E | E2>). A throw becomes aDefect, like every other combinator.Use it for a failable effect during error handling (e.g. writing the error to
an audit log that may itself fail).
isResult(x)— a standalone type guard narrowing anunknowntoResult<unknown, unknown>(andResult.isResult). It checks the value carriesthe
Resultprototype, so a plain{ tag: "Ok" }look-alike is not matched;an
AsyncResultis not aResult. For untyped interop boundaries.@unthrown/boxed@1.1.0
Patch Changes
@unthrown/effect@1.1.0
Patch Changes
@unthrown/neverthrow@1.1.0
Patch Changes
@unthrown/pattern@1.1.0
Patch Changes
@unthrown/standard-schema@1.1.0
Patch Changes
@unthrown/vitest@1.1.0
Patch Changes
@unthrown/oxlint@1.1.0