Sourced from docker/login-action's releases.
v4.0.0
- Node 24 as default runtime (requires Actions Runner v2.327.1 or later) by
@crazy-maxin docker/login-action#929- Switch to ESM and update config/test wiring by
@crazy-maxin docker/login-action#927- Bump
@actions/corefrom 1.11.1 to 3.0.0 in docker/login-action#919- Bump
@aws-sdk/client-ecrfrom 3.890.0 to 3.1000.0 in docker/login-action#909 docker/login-action#920- Bump
@aws-sdk/client-ecr-publicfrom 3.890.0 to 3.1000.0 in docker/login-action#909 docker/login-action#920- Bump
@docker/actions-toolkitfrom 0.63.0 to 0.77.0 in docker/login-action#910 docker/login-action#928- Bump
@isaacs/brace-expansionfrom 5.0.0 to 5.0.1 in docker/login-action#921- Bump js-yaml from 4.1.0 to 4.1.1 in docker/login-action#901
Full Changelog: https://github.com/docker/login-action/compare/v3.7.0...v4.0.0
v3.7.0
- Add
scopeinput to set scopes for the authentication token by@crazy-maxin docker/login-action#912- Add support for AWS European Sovereign Cloud ECR by
@dphiin docker/login-action#914- Ensure passwords are redacted with
registry-authinput by@crazy-maxin docker/login-action#911- build(deps): bump lodash from 4.17.21 to 4.17.23 in docker/login-action#915
Full Changelog: https://github.com/docker/login-action/compare/v3.6.0...v3.7.0
v3.6.0
- Add
registry-authinput for raw authentication to registries by@crazy-maxin docker/login-action#887- Bump
@aws-sdk/client-ecrto 3.890.0 in docker/login-action#882 docker/login-action#890- Bump
@aws-sdk/client-ecr-publicto 3.890.0 in docker/login-action#882 docker/login-action#890- Bump
@docker/actions-toolkitfrom 0.62.1 to 0.63.0 in docker/login-action#883- Bump brace-expansion from 1.1.11 to 1.1.12 in docker/login-action#880
- Bump undici from 5.28.4 to 5.29.0 in docker/login-action#879
- Bump tmp from 0.2.3 to 0.2.4 in docker/login-action#881
Full Changelog: https://github.com/docker/login-action/compare/v3.5.0...v3.6.0
v3.5.0
- Support dual-stack endpoints for AWS ECR by
@Spacefish@crazy-maxin docker/login-action#874 docker/login-action#876- Bump
@aws-sdk/client-ecrto 3.859.0 in docker/login-action#860 docker/login-action#878- Bump
@aws-sdk/client-ecr-publicto 3.859.0 in docker/login-action#860 docker/login-action#878- Bump
@docker/actions-toolkitfrom 0.57.0 to 0.62.1 in docker/login-action#870- Bump form-data from 2.5.1 to 2.5.5 in docker/login-action#875
Full Changelog: https://github.com/docker/login-action/compare/v3.4.0...v3.5.0
v3.4.0
- Bump
@actions/corefrom 1.10.1 to 1.11.1 in docker/login-action#791- Bump
@aws-sdk/client-ecrto 3.766.0 in docker/login-action#789 docker/login-action#856- Bump
@aws-sdk/client-ecr-publicto 3.758.0 in docker/login-action#789 docker/login-action#856- Bump
@docker/actions-toolkitfrom 0.35.0 to 0.57.0 in docker/login-action#801 docker/login-action#806 docker/login-action#858- Bump cross-spawn from 7.0.3 to 7.0.6 in docker/login-action#814
- Bump https-proxy-agent from 7.0.5 to 7.0.6 in docker/login-action#823
- Bump path-to-regexp from 6.2.2 to 6.3.0 in docker/login-action#777
Full Changelog: https://github.com/docker/login-action/compare/v3.3.0...v3.4.0
... (truncated)
b45d80f
Merge pull request #929
from crazy-max/node24176cb9c
node 24 as default runtimecad8984
Merge pull request #920
from docker/dependabot/npm_and_yarn/aws-sdk-dependenc...92cbcb2
chore: update generated content5a2d6a7
build(deps): bump the aws-sdk-dependencies group with 2 updates44512b6
Merge pull request #928
from docker/dependabot/npm_and_yarn/docker/actions-to...28737a5
chore: update generated contentdac0793
build(deps): bump @docker/actions-toolkit from 0.76.0 to
0.77.062029f3
Merge pull request #919
from docker/dependabot/npm_and_yarn/actions/core-3.0.008c8f06
chore: update generated contentSourced from actions/upload-artifact's releases.
v7.0.0
v7 What's new
Direct Uploads
Adds support for uploading single files directly (unzipped). Callers can set the new
archiveparameter tofalseto skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. Thenameparameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.ESM
To support new versions of the
@actions/*packages, we've upgraded the package to ESM.What's Changed
- Add proxy integration test by
@Link- in actions/upload-artifact#754- Upgrade the module to ESM and bump dependencies by
@danwkennedyin actions/upload-artifact#762- Support direct file uploads by
@danwkennedyin actions/upload-artifact#764New Contributors
@Link- made their first contribution in actions/upload-artifact#754Full Changelog: https://github.com/actions/upload-artifact/compare/v6...v7.0.0
Sourced from actions/download-artifact's releases.
v8.0.0
v8 - What's new
Direct downloads
To support direct uploads in
actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks theContent-Typeheader ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the newskip-decompressparameter tofalse.Enforced checks (breaking)
A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the
digest-mismatchparameter. To be secure by default, we are now defaulting the behavior toerrorwhich will fail the workflow run.ESM
To support new versions of the @actions/* packages, we've upgraded the package to ESM.
What's Changed
- Don't attempt to un-zip non-zipped downloads by
@danwkennedyin actions/download-artifact#460- Add a setting to specify what to do on hash mismatch and default it to
errorby@danwkennedyin actions/download-artifact#461Full Changelog: https://github.com/actions/download-artifact/compare/v7...v8.0.0
70fc10c
Merge pull request #461
from actions/danwkennedy/digest-mismatch-behaviorf258da9
Add change docsccc058e
Fix linting issuesbd7976b
Add a setting to specify what to do on hash mismatch and default it to
errorac21fcf
Merge pull request #460
from actions/danwkennedy/download-no-unzip15999bf
Add note about package bumps974686e
Bump the version to v8 and add release notesfbe48b1
Update test names to make it clearer what they do96bf374
One more test fixb8c4819
Fix skip decompress test