- Adds info-level logging for zip extraction
- Fixes a bug in the extract logic updated in 2.1.2
- Updated the stream extract functionality to use
unzip.Parse()
instead ofunzip.Extract()
for greater control of unzipping artifacts
- Updated
isGhes
check to include.ghe.com
and.ghe.localhost
as accepted hosts
- Added
ArtifactClient#deleteArtifact
to delete artifacts by name #1626 - Update error messaging to be more useful #1628
- Patch to fix transient request timeouts actions/download-artifact#249
-
Major release. Supports new Artifact backend for improved speed, reliability and behavior.
-
Numerous API changes, some breaking.
- Fixed a bug in Node16 where if an HTTP download finished too quickly (<1ms, e.g. when it's mocked) we attempt to delete a temp file that has not been created yet #1278
- Add
x-actions-results-crc64
andx-actions-results-md5
checksum headers on upload #1063
- Update to v2.0.1 of
@actions/http-client
#1087
- Update to v2.0.0 of
@actions/http-client
- Update
lockfileVersion
tov2
inpackage-lock.json
#1009
- Fix for failing 0 byte file uploads on Windows #962
- Support upload from named pipes #748
- Fixes to percentage values being greater than 100% when downloading all artifacts #889
- Improved logging and output during artifact upload #949
- Improvements to client-side validation for certain invalid characters not allowed during upload: #951
- Faster upload speeds for certain types of large files by exempting gzip compression #956
- More detailed logging when dealing with chunked uploads #957
- Add HTTP 500 as a retryable status code for artifact upload and download.
- Bump @actions/http-client to version 1.0.11 to fix proxy related issues during artifact upload and download
- Improved retry-ability for all http calls during artifact upload and download if an error is encountered
- Improved retry-ability when a partial artifact download is encountered
- Update to latest @actions/core version
- Add option to specify custom retentions on artifacts
- Retry in the event of a 413 response
- Increase chunk size during upload from 4MB to 8MB
- Improve user-agent strings during API calls to help internally diagnose issues
- Fix to ensure readstreams get correctly reset in the event of a retry
- Fix to ensure temporary gzip files get correctly deleted during artifact upload
- Remove spaces as a forbidden character during upload
- Fixes to gzip decompression when downloading artifacts
- Support handling 429 response codes
- Improved download experience when dealing with empty files
- Exponential backoff when retryable status codes are encountered
- Clearer error message if storage quota has been reached
- Improved logging and output during artifact download
- Fixes to TCP connections not closing
- GZip file compression to speed up downloads
- Improved logging and output
- Extra documentation
- Initial release