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
#564935fe87 Thanks @Andarist! - Automatically use the GitHub-provided token to allow most users to avoid explicit GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} configuration.
Patch Changes
#54554220dd Thanks @ryanbas21! - The .npmrc generation now intelligently handles both traditional NPM token authentication and trusted publishing scenarios by only appending the auth token when NPM_TOKEN is defined. This prevents 'undefined' from being written to the registry configuration when using OIDC tokens from GitHub Actions trusted publishing.
#5636af4a7e Thanks @Andarist! - Don't error on already committed symlinks and executables that stay untouched
#479cf373e4 Thanks @Andarist! - Switched to esbuild for bundling the dist file. This led to 45% file size reduction.
#488022692b Thanks @s0! - Fix PRs sometimes not getting reopened with commitMode: github-api
There was a race-condition that means sometimes existing PRs would not be found,
and new PRs would be opened. This has now been fixed by fetching existing PRs
before making any changes.
#4867ed1955 Thanks @s0! - Fixed situations in which cwd was specified as a relative path and used with (default) commitMode: git-cli
#461e9c36b6 Thanks @nayounsang! - Avoid hitting a deprecation warning when encountering errors from @octokit/request-error
#47115ab130 Thanks @h3rmanj! - Bump @changesets/ghcommit to v1.4.0, which fixes an issue running this action in monorepos with commitMode: github-api
#4676e57550 Thanks @Vx-V! - Avoid searching for an existing pull request early.
#391207dc3d Thanks @s0! - Introduce a new input commitMode that allows using the GitHub API for pushing tags and commits instead of the Git CLI.
When used with "github-api" value all tags and commits will be attributed to the user whose GITHUB_TOKEN is used, and also signed using GitHub's internal GPG key.
#4488b16070 Thanks @bluwy! - Use full git email (41898282+github-actions[bot]@​users.noreply.github.com) for github-actions bot when making commits
This should help with changesets/action gitting spurious secondary rate limits and failing CI jobs, for which the only known workaround is to simply re-run the job.
#157521c27b Thanks @emmenko! - Automatically adjust GitHub PR message if it exceeds a size limit of 60k characters by omitting some of the changelog information.
#16152c9ce7 Thanks @bicknellr! - Change directory to cwd before running git user setup. This fixes an issue when the action starts its execution not in a git repository.
#144898d125 Thanks @Andarist! - Updated all Changesets dependencies. This should fix parsing issues for completely empty summaries that has been fixed in @changesets/parse@0.3.11.
#1305c0997b Thanks @akphi! - Added createGithubReleases input option (defaults to true) to control whether to create Github releases during publish or not.
#1341ed9bc2 Thanks @dmregister! - Added cwd input option that can be used in projects that are not in the root directory.
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
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:
v4→v4.3.18558fd7v1→v1.7.0v1.1.1→v1.2.2v5→v5.2.0Release Notes
actions/checkout (actions/checkout)
v4.3.1Compare Source
What's Changed
Full Changelog: actions/checkout@v4...v4.3.1
v4.3.0Compare Source
What's Changed
New Contributors
Full Changelog: actions/checkout@v4...v4.3.0
v4.2.2Compare Source
url-helper.tsnow leverages well-known environment variables by @jww3 in #1941isGhesby @jww3 in #1946v4.2.1Compare Source
v4.2.0Compare Source
v4.1.7Compare Source
v4.1.6Compare Source
v4.1.5Compare Source
user.emailto be41898282+github-actions[bot]@​users.noreply.github.comby @cory-miller in #1707v4.1.4Compare Source
extensions.worktreeConfigwhen disablingsparse-checkoutby @jww3 in #1692v4.1.3Compare Source
sparse-checkoutby @jww3 in #1656actions/checkoutversion inupdate-main-version.ymlby @jww3 in #1650v4.1.2Compare Source
sparse-checkoutoption is not present @dscho in #1598v4.1.1Compare Source
v4.1.0Compare Source
changesets/action (changesets/action)
v1.7.0Compare Source
Minor Changes
935fe87Thanks @Andarist! - Automatically use the GitHub-provided token to allow most users to avoid explicitGITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}configuration.Patch Changes
#545
54220ddThanks @ryanbas21! - The.npmrcgeneration now intelligently handles both traditional NPM token authentication and trusted publishing scenarios by only appending the auth token whenNPM_TOKENis defined. This prevents 'undefined' from being written to the registry configuration when using OIDC tokens from GitHub Actions trusted publishing.#563
6af4a7eThanks @Andarist! - Don't error on already committed symlinks and executables that stay untouchedv1.6.0Compare Source
Minor Changes
342005dThanks @harsha-venugopal-ledn! - Upgrade from Node.js 20 to Node.js 24 LTSv1.5.3Compare Source
Patch Changes
#477
9d933dcThanks @Andarist! - Updated@actions/*and@octokit/*dependencies.#479
cf373e4Thanks @Andarist! - Switched toesbuildfor bundling the dist file. This led to 45% file size reduction.#488
022692bThanks @s0! - Fix PRs sometimes not getting reopened withcommitMode: github-apiThere was a race-condition that means sometimes existing PRs would not be found,
and new PRs would be opened. This has now been fixed by fetching existing PRs
before making any changes.
#486
7ed1955Thanks @s0! - Fixed situations in whichcwdwas specified as a relative path and used with (default)commitMode: git-cli#461
e9c36b6Thanks @nayounsang! - Avoid hitting a deprecation warning when encountering errors from@octokit/request-errorv1.5.2Compare Source
Patch Changes
#473
3c24abeThanks @s0! - Make git add work consistently with subdirectoriesEnsure that when running the action from a subdirectory of a repository,
only the files from that directory are added, regardless of
commitMode.v1.5.1Compare Source
Patch Changes
#471
15ab130Thanks @h3rmanj! - Bump@changesets/ghcommitto v1.4.0, which fixes an issue running this action in monorepos withcommitMode: github-api#467
6e57550Thanks @Vx-V! - Avoid searching for an existing pull request early.v1.5.0Compare Source
Minor Changes
#391
207dc3dThanks @s0! - Introduce a new inputcommitModethat allows using the GitHub API for pushing tags and commits instead of the Git CLI.When used with
"github-api"value all tags and commits will be attributed to the user whose GITHUB_TOKEN is used, and also signed using GitHub's internal GPG key.v1.4.10Compare Source
Patch Changes
8b16070Thanks @bluwy! - Use full git email (41898282+github-actions[bot]@​users.noreply.github.com) for github-actions bot when making commitsv1.4.9Compare Source
Patch Changes
57ab80cThanks @benmccann! - Improve error message when attempting to publish without publish script definedv1.4.8Compare Source
Patch Changes
#393
48ab0d2Thanks @s0! - Ensure the PR remains open when updated#393
48ab0d2Thanks @s0! - Switch to cheaper API for querying existing PRsv1.4.7Compare Source
Patch Changes
f2660aaThanks @ernestognw! - Allow customize PRbranchfieldv1.4.6Compare Source
Patch Changes
9385be9Thanks @m-shaka! - Bump the used node.js from 16 to 20v1.4.5Compare Source
Patch Changes
eb19e25Thanks @mark-omarov! - Updated a few dependencies to patch the security vulnerabilities that were reported for their older versions.v1.4.4Compare Source
Patch Changes
db8a109Thanks @varl! - Wire up@octokit/plugin-throttlingwith all GitHub Octokit instancesv1.4.3Compare Source
Patch Changes
8b28186Thanks @varl! - Use logging provided by@actions/corev1.4.2Compare Source
Patch Changes
#286
225a1e8Thanks @varl! - This patch implements the@octokit/plugin-throttlingplugin and wiresit up with the internal GitHub Octokit instance.
This plugin is recommended by the Octokit docs as it implements all the GitHub best practices for integrators.
This should help with
changesets/actiongitting spurious secondary rate limits and failing CI jobs, for which the only known workaround is to simply re-run the job.v1.4.1Compare Source
Patch Changes
b78f480Thanks @Andarist! - Updated@actions/*dependencies to avoid using deprecated features of the runner.v1.4.0Compare Source
Minor Changes
398d7edThanks @quinnjn! - Execute action with node16 instead of node12.Patch Changes
#228
bff53ccThanks @iansan5653! - Addis:pull-requestto search query when looking for existing PR. This fixes an issue with user-owned PATs.#206
8c3f5f5Thanks @glasser! - Skip creating a PR when all existing changesets are empty.v1.3.0Compare Source
Minor Changes
993a0a0Thanks @dmregister! - AddedpullRequestNumberto the action's outputsPatch Changes
521c27bThanks @emmenko! - Automatically adjust GitHub PR message if it exceeds a size limit of 60k characters by omitting some of the changelog information.v1.2.2Compare Source
Patch Changes
52c9ce7Thanks @bicknellr! - Change directory tocwdbefore running git user setup. This fixes an issue when the action starts its execution not in a git repository.v1.2.1Compare Source
Patch Changes
898d125Thanks @Andarist! - Updated all Changesets dependencies. This should fix parsing issues for completely empty summaries that has been fixed in@changesets/parse@0.3.11.v1.2.0Compare Source
Minor Changes
#130
5c0997bThanks @akphi! - AddedcreateGithubReleasesinput option (defaults totrue) to control whether to create Github releases during publish or not.#134
1ed9bc2Thanks @dmregister! - Addedcwdinput option that can be used in projects that are not in the root directory.v1.1.0Compare Source
Minor Changes
#128
1937303Thanks @dhruvdutt! - Setup the git user in the local config instead of the global one.#131
d3db9ecThanks @jacklesliewise! - AddedsetupGitUseroption to enable or disable setting up a default git usermscharley/dependency-changesets-action (mscharley/dependency-changesets-action)
v1.2.2Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.2.1...v1.2.2
v1.2.1Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.2.0...v1.2.1
v1.2.0Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.9...v1.2.0
v1.1.9Compare Source
What's Changed
New Contributors
Full Changelog: mscharley/dependency-changesets-action@v1.1.8...v1.1.9
v1.1.8Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.7...v1.1.8
v1.1.7Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.6...v1.1.7
v1.1.6Compare Source
What's Changed
privateproperty inpackage.jsonby @breadadams in #431New Contributors
Full Changelog: mscharley/dependency-changesets-action@v1.1.5...v1.1.6
v1.1.5Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.4...v1.1.5
v1.1.4Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.3...v1.1.4
v1.1.3Compare Source
What's Changed
Fixed a bug in the migration to ESM in 1.1.2 that meant the action couldn't launch successfully.
Full Changelog: mscharley/dependency-changesets-action@v1.1.2...v1.1.3
v1.1.2Compare Source
What's Changed
Full Changelog: mscharley/dependency-changesets-action@v1.1.1...v1.1.2
stefanzweifel/git-auto-commit-action (stefanzweifel/git-auto-commit-action)
v5.2.0Compare Source
Added
create_git_tag_onlyoption to skip commiting and always create a git-tag. (#364) @zMynxxcreate_git_tag_onlyfeature (#367) @stefanzweifelFixed
v5.1.0Compare Source
Changed
github.actor_idin defaultcommit_author(#354) @parkerbxyzFixed
Dependency Updates
v5.0.1Compare Source
Fixed
Dependency Updates
Misc
commit_authorinput option (#315) @npanuhinConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.