Sourced from actions/checkout's releases.
v4.0.0
What's Changed
- Update default runtime to node20 by
@takost
in actions/checkout#1436- Support fetching without the --progress option by
@simonbaird
in actions/checkout#1067- Release 4.0.0 by
@takost
in actions/checkout#1447New Contributors
@takost
made their first contribution in actions/checkout#1436@simonbaird
made their first contribution in actions/checkout#1067Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0
v3.6.0
What's Changed
- Mark test scripts with Bash'isms to be run via Bash by
@dscho
in actions/checkout#1377- Add option to fetch tags even if fetch-depth > 0 by
@RobertWieczoreck
in actions/checkout#579- Release 3.6.0 by
@luketomlinson
in actions/checkout#1437New Contributors
@RobertWieczoreck
made their first contribution in actions/checkout#579@luketomlinson
made their first contribution in actions/checkout#1437Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0
v3.5.3
What's Changed
- Fix: Checkout Issue in self hosted runner due to faulty submodule check-ins by
@megamanics
in actions/checkout#1196- Fix typos found by codespell by
@DimitriPapadopoulos
in actions/checkout#1287- Add support for sparse checkouts by
@dscho
and@dfdez
in actions/checkout#1369- Release v3.5.3 by
@TingluoHuang
in actions/checkout#1376New Contributors
@megamanics
made their first contribution in actions/checkout#1196@DimitriPapadopoulos
made their first contribution in actions/checkout#1287@dfdez
made their first contribution in actions/checkout#1369Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3
v3.5.2
What's Changed
- Fix: Use correct API url / endpoint in GHES by
@fhammerl
in actions/checkout#1289 based on #1286 by@1newsr
Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2
v3.5.1
What's Changed
- Improve checkout performance on Windows runners by upgrading
@actions/github
dependency by@BrettDong
in actions/checkout#1246New Contributors
@BrettDong
made their first contribution in actions/checkout#1246
... (truncated)
Sourced from actions/checkout's changelog.
Changelog
v4.1.0
v4.0.0
v3.6.0
- Fix: Mark test scripts with Bash'isms to be run via Bash
- Add option to fetch tags even if fetch-depth > 0
v3.5.3
- Fix: Checkout fail in self-hosted runners when faulty submodule are checked-in
- Fix typos found by codespell
- Add support for sparse checkouts
v3.5.2
v3.5.1
v3.5.0
v3.4.0
v3.3.0
- Implement branch list using callbacks from exec function
- Add in explicit reference to private checkout options
- [Fix comment typos (that got added in #770)](actions/checkout#1057)
v3.2.0
- Add GitHub Action to perform release
- Fix status badge
- Replace datadog/squid with ubuntu/squid Docker image
- Wrap pipeline commands for submoduleForeach in quotes
- Update
@actions/io
to 1.1.2- Upgrading version to 3.2.0
v3.1.0
v3.0.2
... (truncated)
b4ffde6
Link to release page from what's new section (#1514)8530928
Correct link to GitHub Docs (#1511)7cdaf2f
Update CODEOWNERS to Launch team (#1510)8ade135
Prepare 4.1.0 release (#1496)c533a0a
Add support for partial checkout filters (#1396)72f2cec
Update README.md for V4 (#1452)3df4ab1
Release 4.0.0 (#1447)8b5e8b7
Support fetching without the --progress option (#1067)97a652b
Update default runtime to node20 (#1436)Sourced from peter-evans/create-pull-request's releases.
Create Pull Request v6.0.0
Behaviour changes
- The default values for
author
andcommitter
have changed. See "What's new" below for details. If you are overriding the default values you will not be affected by this change.- On completion, the action now removes the temporary git remote configuration it adds when using
push-to-fork
. This should not affect you unless you were using the temporary configuration for some other purpose after the action completes.What's new
- Updated runtime to Node.js 20
- The action now requires a minimum version of v2.308.0 for the Actions runner. Update self-hosted runners to v2.308.0 or later to ensure compatibility.
- The default value for
author
has been changed to${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
. The change adds the${{ github.actor_id }}+
prefix to the email address to align with GitHub's standard format for the author email address.- The default value for
committer
has been changed togithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
. This is to align with the default GitHub Actions bot user account.- Adds input
git-token
, the Personal Access Token (PAT) that the action will use for git operations. This input defaults to the value oftoken
. Use this input if you would like the action to use a different token for git operations than the one used for the GitHub API.push-to-fork
now supports pushing to sibling repositories in the same network.- Previously, when using
push-to-fork
, the action did not remove temporary git remote configuration it adds during execution. This has been fixed and the configuration is now removed when the action completes.- If the pull request body is truncated due to exceeding the maximum length, the action will now suffix the body with the message "...[Pull request body truncated]" to indicate that the body has been truncated.
- The action now uses
--unshallow
only when necessary, rather than as a default argument ofgit fetch
. This should improve performance, particularly for large git repositories with extensive commit history.- The action can now be executed on one GitHub server and create pull requests on a different GitHub server. Server products include GitHub hosted (github.com), GitHub Enterprise Server (GHES), and GitHub Enterprise Cloud (GHEC). For example, the action can be executed on GitHub hosted and create pull requests on a GHES or GHEC instance.
What's Changed
- Update distribution by
@actions-bot
in peter-evans/create-pull-request#2086- fix crazy-max/ghaction-import-gp parameters by
@fharper
in peter-evans/create-pull-request#2177- Update distribution by
@actions-bot
in peter-evans/create-pull-request#2364- Use checkout v4 by
@okuramasafumi
in peter-evans/create-pull-request#2521- Note about
delete-branch
by@dezren39
in peter-evans/create-pull-request#2631- 98 dependency updates by
@dependabot
New Contributors
@fharper
made their first contribution in peter-evans/create-pull-request#2177@okuramasafumi
made their first contribution in peter-evans/create-pull-request#2521@dezren39
made their first contribution in peter-evans/create-pull-request#2631Full Changelog: https://github.com/peter-evans/create-pull-request/compare/v5.0.2...v6.0.0
Create Pull Request v5.0.2
⚙️ Fixes an issue that occurs when using
push-to-fork
and both base and head repositories are in the same org/user account.What's Changed
- fix: specify head repo by
@peter-evans
in peter-evans/create-pull-request#2044- 20 dependency updates by
@dependabot
Full Changelog: https://github.com/peter-evans/create-pull-request/compare/v5.0.1...v5.0.2
Create Pull Request v5.0.1
What's Changed
- fix: truncate body if exceeds max length by
@peter-evans
in peter-evans/create-pull-request#1915- 12 dependency updates by
@dependabot
Full Changelog: https://github.com/peter-evans/create-pull-request/compare/v5.0.0...v5.0.1
6d6857d
fix: update proxy support to follow octokit change to fetch api (#2867)9153d83
perf: limit the fetch depth of pr branch (#2857)c55203c
fix: drop unnecessary fetch with unshallow on push-to-fork (#2849)6ce4eca
build(deps-dev): bump @types/node
from 18.19.28 to
18.19.31 (#2842)36ef0ed
build(deps-dev): bump @types/node
from 18.19.26 to
18.19.28 (#2836)8500972
build(deps-dev): bump @types/node
from 18.19.25 to
18.19.26 (#2831)bda5ade
build(deps-dev): bump @types/node
from 18.19.23 to
18.19.25 (#2826)70a41ab
perf: shallow fetch the actual base when rebasing from working base (#2816)57a1014
build(deps-dev): bump @types/node
from 18.19.21 to
18.19.23 (#2811)b3a2c5d
build(deps-dev): bump @types/node
from 18.19.18 to
18.19.21 (#2798)Sourced from aganders3/headless-gui's releases.
Version 2.0 is not a major change, but it is technically breaking as the default virtual screen size has changed. If you are not relying heavily on the virtual screen size or bit depth you are probably safe to just update. If you want to update and keep the old default, set
xvfb-screen-size: "1024x768x16"
.What's Changed
- Add screen size configuration, update default by
@aganders3
in aganders3/headless-gui#9- Bump
@babel/traverse
from 7.20.1 to 7.23.2 by@dependabot
in aganders3/headless-gui#8Full Changelog: https://github.com/aganders3/headless-gui/compare/v1...v2.0
Version 1.2
What's Changed
- Bump json5 from 1.0.1 to 1.0.2 by
@dependabot
in aganders3/headless-gui#3- Add shell input by
@aganders3
in aganders3/headless-gui#5New Contributors
@dependabot
made their first contribution in aganders3/headless-gui#3Full Changelog: https://github.com/aganders3/headless-gui/compare/v1...v1.2
v1.1
What's Changed
- Add working directory input by
@aganders3
in aganders3/headless-gui#2New Contributors
@aganders3
made their first contribution in aganders3/headless-gui#2Full Changelog: https://github.com/aganders3/headless-gui/compare/v1...v1.1