apischema
apischema copied to clipboard
Bump the actions group with 7 updates
Bumps the actions group with 7 updates:
Package | From | To |
---|---|---|
actions/upload-artifact | 3 |
4 |
pypa/cibuildwheel | 2.16.2 |
2.18.1 |
actions/download-artifact | 3 |
4 |
pypa/gh-action-pypi-publish | 1.8.10 |
1.8.14 |
actions/cache | 3.3.2 |
4.0.2 |
actions/setup-python | 4 |
5 |
codecov/codecov-action | 3 |
4 |
Updates actions/upload-artifact
from 3 to 4
Release notes
Sourced from actions/upload-artifact's releases.
v4.0.0
What's Changed
The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.
ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads must use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows.
For more information, please see:
- The changelog post.
- The README.
- The migration documentation.
- As well as the underlying npm package,
@actions/artifact
documentation.New Contributors
@vmjoseph
made their first contribution in actions/upload-artifact#464Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v4.0.0
v3.1.3
What's Changed
- chore(github): remove trailing whitespaces by
@ljmf00
in actions/upload-artifact#313- Bump
@actions/artifact
version to v1.1.2 by@bethanyj28
in actions/upload-artifact#436Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v3.1.3
v3.1.2
- Update all
@actions/*
NPM packages to their latest versions- #374- Update all dev dependencies to their most recent versions - #375
v3.1.1
- Update actions/core package to latest version to remove
set-output
deprecation warning #351v3.1.0
What's Changed
- Bump
@actions/artifact
to v1.1.0 (actions/upload-artifact#327)
- Adds checksum headers on artifact upload (actions/toolkit#1095) (actions/toolkit#1063)
Commits
6546280
updating package versionc004fb4
Merge branch 'main' into eggyhead/use-artifact-v2.1.690aba49
updating toolkit artifact dependency to 2.1.6b06cde3
Merge pull request #563 from actions/eggyhead/release-4.3.21746f4a
Revert "updating to release 4.3.2"31685d0
updating to release 4.3.218bf333
Merge pull request #562 from actions/eggyhead/update-artifact-v215dac413b
update package lock versionbb3b4a3
updating package version3e3da83
updating artifact and core dependencies- Additional commits viewable in compare view
Updates pypa/cibuildwheel
from 2.16.2 to 2.18.1
Release notes
Sourced from pypa/cibuildwheel's releases.
v2.18.1
- 🌟 Add free-threaded Linux and Windows builds for 3.13. New identifiers
cp313t-*
, new optionCIBW_FREE_THREADED_SUPPORT
/tool.cibuildwheel.free-threaded-support
required to opt-in. See the docs for more information. (#1831)- ✨ The
container-engine
is now a build (non-global) option. (#1792)- 🛠 The build backend for cibuildwheel is now hatchling. (#1297)
- 🛠 Significant improvements and modernization to our noxfile. (#1823)
- 🛠 Use pylint's new GitHub Actions reporter instead of a custom matcher. (#1823)
- 🛠 Unpin virtualenv updates for Python 3.7+ (#1830)
- 🐛 Fix running linux tests from Windows or macOS ARM. (#1788)
- 📚 Fix our documentation build. (#1821)
v2.18.0
- ✨ Adds CPython 3.13 support, under the prerelease flag CIBW_PRERELEASE_PYTHONS. This version of cibuildwheel uses 3.13.0b1. Free-threading mode is not available yet (#1657), waiting on official binaries (planned for beta 2) and pip support. While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.13 will be available in cibuildwheel without the flag. (#1815)
- ✨ Musllinux now defaults to
musllinux_1_2
. You can set the oldermusllinux_1_1
via config if needed. (#1817)- 🛠 No longer pre-seed setuptools/wheel in virtual environments (#1819)
- 🛠 Respect the constraints file when building with pip, matching build (#1818)
- 🛠 Use uv to compile our pinned dependencies, 10x faster and doesn't require special setup (#1778)
- 🐛 Fix an issue with the schema (#1788)
- 📚 Document the new delocate error checking macOS versions (#1766)
- 📚 Document Rust builds (#1816)
- 📚 Speed up our readthedocs builds with uv, 26 seconds -> 6 seconds to install dependencies (#1816)
v2.17.0
- 🌟 Adds the ability to inherit configuration in TOML overrides. This makes certain configurations much simpler. If you're overriding an option like
before-build
orenvironment
, and you just want to add an extra command or environment variable, you can just append (or prepend) to the previous config. See the docs for more information. (#1730)- 🌟 Adds official support for native arm64 macOS GitHub runners. To use them, just specify
macos-14
as anos
of your job in your workflow file. You can also keepmacos-13
in your build matrix to build x86_64. Check out the new GitHub Actions example config.- ✨ You no longer need to specify
--platform
to run cibuildwheel locally! Instead it will detect your platform automatically. This was a safety feature, no longer necessary. (#1727)- 🛠 Removed setuptools and wheel pinned versions. This only affects old-style projects without a
pyproject.toml
, projects withpyproject.toml
are already getting fresh versions of theirbuild-system.requires
installed into an isolated environment. (#1725)- 🛠 Improve how the GitHub Action passes arguments (#1757)
- 🛠 Remove a system-wide install of pipx in the GitHub Action (#1745)
- 🐛 No longer will cibuildwheel override the PIP_CONSTRAINT environment variable when using the
build
frontend. Instead it will be extended. (#1675)- 🐛 Fix a bug where building and testing both x86_86 and arm64 wheels on the same runner caused the wrong architectures in the test environment (#1750)
- 🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting macOS 11+ on x86_64 (#1768)
- 📚 Moved the docs onto the official PyPA domain - they're now available at https://cibuildwheel.pypa.io . (#1775)
- 📚 Docs and examples improvements (#1762, #1734)
v2.16.5
- 🐛 Fix an incompatibility with the GitHub Action and new GitHub Runner images for Windows that bundle Powershell 7.3+ (#1741)
- 🛠 Preliminary support for new
macos-14
arm64 runners (#1743)v2.16.4
🛠 Update manylinux pins to upgrade from a problematic PyPy version. (#1737)
v2.16.3
- 🐛 Fix a bug when building from sdist, where relative paths to files in the package didn't work because the working directory was wrong (#1687)
- 🛠 Adds the ability to disable mounting the host filesystem in containers to
/host
, through thedisable_host_mount
suboption onCIBW_CONTAINER_ENGINE
.- 📚 A lot of docs improvements! (#1708, #1705, #1686, #1679, #1667, #1665)
Changelog
Sourced from pypa/cibuildwheel's changelog.
v2.18.1
- 🌟 Add free-threaded Linux and Windows builds for 3.13. New identifiers
cp313t-*
, new optionCIBW_FREE_THREADED_SUPPORT
/tool.cibuildwheel.free-threaded-support
required to opt-in. See the docs for more information. (#1831)- ✨ The
container-engine
is now a build (non-global) option. (#1792)- 🛠 The build backend for cibuildwheel is now hatchling. (#1297)
- 🛠 Significant improvements and modernization to our noxfile. (#1823)
- 🛠 Use pylint's new GitHub Actions reporter instead of a custom matcher. (#1823)
- 🛠 Unpin virtualenv updates for Python 3.7+ (#1830)
- 🐛 Fix running linux tests from Windows or macOS ARM. (#1788)
- 📚 Fix our documentation build. (#1821)
v2.18.0
12 May 2024
✨ Adds CPython 3.13 support, under the prerelease flag CIBW_PRERELEASE_PYTHONS. This version of cibuildwheel uses 3.13.0b1. Free-threading mode is not available yet (#1657), waiting on official binaries (planned for beta 2) and pip support.
While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.13 will be available in cibuildwheel without the flag. (#1815)
✨ Musllinux now defaults to
musllinux_1_2
. You can set the oldermusllinux_1_1
via config if needed. (#1817)🛠 No longer pre-seed setuptools/wheel in virtual environments (#1819)
🛠 Respect the constraints file when building with pip, matching build (#1818)
🛠 Use uv to compile our pinned dependencies, 10x faster and doesn't require special setup (#1778)
🐛 Fix an issue with the schema (#1788)
📚 Document the new delocate error checking macOS versions (#1766)
📚 Document Rust builds (#1816)
📚 Speed up our readthedocs builds with uv, 26 seconds -> 6 seconds to install dependencies (#1816)
v2.17.0
11 March 2024
- 🌟 Adds the ability to inherit configuration in TOML overrides. This makes certain configurations much simpler. If you're overriding an option like
before-build
orenvironment
, and you just want to add an extra command or environment variable, you can just append (or prepend) to the previous config. See the docs for more information. (#1730)- 🌟 Adds official support for native
arm64
macOS GitHub runners. To use them, just specifymacos-14
as anos
of your job in your workflow file. You can also keepmacos-13
in your build matrix to buildx86_64
. Check out the new GitHub Actions example config.- ✨ You no longer need to specify
--platform
to run cibuildwheel locally! Instead it will detect your platform automatically. This was a safety feature, no longer necessary. (#1727)- 🛠 Removed setuptools and wheel pinned versions. This only affects old-style projects without a
pyproject.toml
, projects withpyproject.toml
are already getting fresh versions of theirbuild-system.requires
installed into an isolated environment. (#1725)- 🛠 Improve how the GitHub Action passes arguments (#1757)
- 🛠 Remove a system-wide install of pipx in the GitHub Action (#1745)
- 🐛 No longer will cibuildwheel override the
PIP_CONSTRAINT
environment variable when using thebuild
frontend. Instead it will be extended. (#1675)- 🐛 Fix a bug where building and testing both
x86_86
andarm64
wheels on the same runner caused the wrong architectures in the test environment (#1750)- 🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting macOS 11+ on
x86_64
(#1768)- 📚 Moved the docs onto the official PyPA domain - they're now available at https://cibuildwheel.pypa.io . (#1775)
- 📚 Docs and examples improvements (#1762, #1734)
v2.16.5
30 January 2024
... (truncated)
Commits
ba8be0d
Bump version: v2.18.190dd476
doc: add documentation for theCIBW_FREE_THREADED_SUPPORT
optionb613249
chore: pass a PythonConfiguration to install_cpython3992d57
feat: add option to opt-in free-threaded builds345467c
feat: add support for free-threaded (no-gil) Python 3.13791e41c
[Bot] Update dependencies (#1832)9d5f5e6
Makecontainer-engine
a build (non-global) option (#1792)1b354cf
chore: move to hatchling (#1297)d1a4c9c
chore: un-pin virtualenv update (#1830)78bca57
fix(tests): linux tests from macOS/Windows arm64 (#1829)- Additional commits viewable in compare view
Updates actions/download-artifact
from 3 to 4
Release notes
Sourced from actions/download-artifact's releases.
v4.0.0
What's Changed
The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.
ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads must use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows.
For more information, please see:
- The changelog post.
- The README.
- The migration documentation.
- As well as the underlying npm package,
@actions/artifact
documentation.New Contributors
@bflad
made their first contribution in actions/download-artifact#194Full Changelog: https://github.com/actions/download-artifact/compare/v3...v4.0.0
v3.0.2
- Bump
@actions/artifact
to v1.1.1 - actions/download-artifact#195- 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 actions/toolkit#1278
v3.0.1
Commits
65a9edc
Merge pull request #325 from bethanyj28/mainfdd1595
licensedc13dba1
update@actions/artifact
dependency0daa75e
Merge pull request #324 from actions/eggyhead/use-artifact-v2.1.69c19ed7
Merge branch 'main' into eggyhead/use-artifact-v2.1.63d3ea87
updating license89af5db
updating artifact package v2.1.6b4aefff
Merge pull request #323 from actions/eggyhead/update-artifact-v2158caf195
package lock updated7a2ec4
updating package version- Additional commits viewable in compare view
Updates pypa/gh-action-pypi-publish
from 1.8.10 to 1.8.14
Release notes
Sourced from pypa/gh-action-pypi-publish's releases.
v1.8.14
🛠️ Internal Dependencies
Nothing changed feature-wise. The only notable update is that the underlying container runtime now uses Python 3.12 and pip has been updated to v24.0 there. This is should go unnoticed in terms of behavior. It's just a bit of maintenance burden to be done occasionally by
@webknjaz
💰. Enjoy!🪞 Full Diff: https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.13...v1.8.14
🧔♂️ Release Manager:
@webknjaz 🇺🇦
v1.8.13
🐛 What's Fixed
This action is now able to consume and publish distribution packages with
Metadata-Version: 2.3
embedded.🛠️ Internal Dependencies
@SigureMo
💰 sent us a bump ofpkginfo
version to version 1.10.0 in #219. It's a transitive dependency for us and is not an API-level change but upgrading it has a side effect of letting Twine recognize distribution packages declaringMetadata-Version: 2.3
. In particular, it is known to affect distributions built withMaturin >= 1.5.0
.Following that,
@webknjaz
💰 upgraded other transitive and direct dependency pins, including, among others, the following notable bumps:
cryptography == 42.0.5
id == 1.3.0
readme-renderer == 43.0
Twine == 5.0.0
💪 New Contributors
@SigureMo
made their first contribution in pypa/gh-action-pypi-publish#219🪞 Full Diff: https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.12...v1.8.13
🧔♂️ Release Manager:
@webknjaz 🇺🇦
v1.8.12
💅 Cosmetic Output Improvements
@woodruffw
💰 replaced the notice annotations with simplified debug messages related to authentication methanism selection via #196. The also improved the error clarity during OIDC exchange on PRs from forks via #203.📝 What's Documented
@virtuald
💰 updated the docs and pointer messages were updated to mention that reusable workflows aren't supported right now in #186 and@xuanzhi33
💰 later corrected the markdown syntax there via #216.🛠️ Internal Dependencies
- pre-commit linters got autoupdated @ #204
- Cryptography was bumped from 41.0.6 to 42.0.4 @ #210, #213 and #214
⚙️ Secret Stuff
... (truncated)
Commits
81e9d93
Bumppip
to v24.0 in runtime prerequisites lock91527c4
Regenerate lockfiles with pip-tools v7.4.13a817c6
Bump action runtime to CPython 3.12741947b
Add a config file forpip-tools
d7af439
Mass-bump transitive dependencies of runtimee90ddca
Bumpreadme-renderer
to v43.0dae7fa3
Bump Twine to v5.0.00fe04ae
Bumpid
to v1.3.0444e179
Bump cryptography to v42.0.5820be4e
Normalize pip-tools' header comment @runtime.txt
- Additional commits viewable in compare view
Updates actions/cache
from 3.3.2 to 4.0.2
Release notes
Sourced from actions/cache's releases.
v4.0.2
What's Changed
- Fix
fail-on-cache-miss
not working by@cdce8p
in actions/cache#1327Full Changelog: https://github.com/actions/cache/compare/v4.0.1...v4.0.2
v4.0.1
What's Changed
- Update README.md by
@yacaovsnc
in actions/cache#1304- Update examples by
@yacaovsnc
in actions/cache#1305- Update actions/cache publish flow by
@bethanyj28
in actions/cache#1340- Update
@actions/cache
by@bethanyj28
in actions/cache#1341New Contributors
@yacaovsnc
made their first contribution in actions/cache#1304Full Changelog: https://github.com/actions/cache/compare/v4...v4.0.1
v4.0.0
What's Changed
- Update action to node20 by
@takost
in actions/cache#1284- feat: save-always flag by
@to-s
in actions/cache#1242New Contributors
@takost
made their first contribution in actions/cache#1284@to-s
made their first contribution in actions/cache#1242Full Changelog: https://github.com/actions/cache/compare/v3...v4.0.0
v3.3.3
What's Changed
- Cache v3.3.3 by
@robherley
in actions/cache#1302New Contributors
@robherley
made their first contribution in actions/cache#1302Full Changelog: https://github.com/actions/cache/compare/v3...v3.3.3
Changelog
Sourced from actions/cache's changelog.
4.0.2
- Fixed restore
fail-on-cache-miss
not working.4.0.1
- Updated
isGhes
check4.0.0
- Updated minimum runner version support from node 12 -> node 20
3.3.3
- Updates
@actions/cache
to v3.2.3 to fix accidental mutated path arguments togetCacheVersion
actions/toolkit#1378- Additional audit fixes of npm package(s)
Commits
0c45773
Merge pull request #1327 from cdce8p/fix-fail-on-cache-miss8a55f83
Add test case for process exit3884cac
Bump versione29dad3
Fix fail-on-cache-miss not workingab5e6d0
Merge pull request #1341 from bethanyj28/main89c7d86
licensed cached2c84da
update@actions/cache
37e7d4e
Merge pull request #1340 from actions/bethanyj28/update-publish-flowa18323f
add release actiona2ed59d
Merge pull request #1305 from actions/yacaovsnc/update_examples- Additional commits viewable in compare view
Updates actions/setup-python
from 4 to 5
Release notes
Sourced from actions/setup-python's releases.
v5.0.0
What's Changed
In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.
Full Changelog: https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0
v4.8.0
What's Changed
In scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:
steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: 'graalpy-22.3' - run: python my_script.py
Besides, the release contains such changes as:
- Trim python version when reading from file by
@FerranPares
in actions/setup-python#628- Use non-deprecated versions in examples by
@jeffwidman
in actions/setup-python#724- Change deprecation comment to past tense by
@jeffwidman
in actions/setup-python#723- Bump
@babel/traverse
from 7.9.0 to 7.23.2 by@dependabot
in actions/setup-python#743- advanced-usage.md: Encourage the use actions/checkout@v4 by
@cclauss
in actions/setup-python#729- Examples now use checkout@v4 by
@simonw
in actions/setup-python#738- Update actions/checkout to v4 by
@dmitry-shibanov
in actions/setup-python#761New Contributors
@FerranPares
made their first contribution in actions/setup-python#628@timfel
made their first contribution in actions/setup-python#694@jeffwidman
made their first contribution in actions/setup-python#724Full Changelog: https://github.com/actions/setup-python/compare/v4...v4.8.0
v4.7.1
What's Changed
- Bump word-wrap from 1.2.3 to 1.2.4 by
@dependabot
in actions/setup-python#702- Add range validation for toml files by
@dmitry-shibanov
in actions/setup-python#726Full Changelog: https://github.com/actions/setup-python/compare/v4...v4.7.1
v4.7.0
In scope of this release, the support for reading python version from pyproject.toml was added (actions/setup-python#669).
- name: Setup Python uses: actions/setup-python@v4 </tr></table>
... (truncated)
Commits
82c7e63
Documentation changes for avoiding rate limit issues on GHES (#835)10aa35a
feat: fallback to raw endpoint for manifest when rate limit is reached (#766)9a7ac94
Bump undici from 5.27.2 to 5.28.3 (#817)871daa9
Fix the "Specifying multiple Python/PyPy versions" link (#782)2f07895
Fix broken README.md link (#793)e9d6f99
Replace setup-python@v4 by setup-python@v5 in README (#776)0a5c615
Update action to node20 (#772)0ae5836
Add example of GraalPy to docs (#773)b64ffca
update actions/checkout to v4 (#761)8d28961
Examples now use checkout@v4 (#738)- Additional commits viewable in compare view
Updates codecov/codecov-action
from 3 to 4
Release notes
Sourced from codecov/codecov-action's releases.
v4.0.0
v4 of the Codecov Action uses the CLI as the underlying upload. The CLI has helped to power new features including local upload, the global upload token, and new upcoming features.
Breaking Changes
- The Codecov Action runs as a
node20
action due tonode16
deprecation. See this post from GitHub on how to migrate.- Tokenless uploading is unsupported. However, PRs made from forks to the upstream public repos will support tokenless (e.g. contributors to OS projects do not need the upstream repo's Codecov token). This doc shows instructions on how to add the Codecov token.
- OS platforms have been added, though some may not be automatically detected. To see a list of platforms, see our CLI download page
- Various arguments to the Action have been changed. Please be aware that the arguments match with the CLI's needs
v3
versions and below will not have access to CLI features (e.g. global upload token, ATS).What's Changed
- build(deps): bump openpgp from 5.8.0 to 5.9.0 by
@dependabot
in codecov/codecov-action#985- build(deps): bump actions/checkout from 3.0.0 to 3.5.3 by
@dependabot
in codecov/codecov-action#1000- build(deps): bump ossf/scorecard-action from 2.1.3 to 2.2.0 by
@dependabot
in codecov/codecov-action#1006- build(deps): bump tough-cookie from 4.0.0 to 4.1.3 by
@dependabot
in codecov/codecov-action#1013- build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by
@dependabot
in codecov/codecov-action#1024- build(deps): bump node-fetch from 3.3.1 to 3.3.2 by
@dependabot
in codecov/codecov-action#1031- build(deps-dev): bump
@types/node
from 20.1.4 to 20.4.5 by@dependabot
in codecov/codecov-action#1032- build(deps): bump github/codeql-action from 1.0.26 to 2.21.2 by
@dependabot
in codecov/codecov-action#1033- build commit,report and upload args based on codecovcli by
@dana-yaish
in codecov/codecov-action#943- build(deps-dev): bump
@types/node
from 20.4.5 to 20.5.3 by@dependabot
in codecov/codecov-action#1055- build(deps): bump github/codeql-action from 2.21.2 to 2.21.4 by
@dependabot
in codecov/codecov-action#1051- build(deps-dev): bump
@types/node
from 20.5.3 to 20.5.4 by@dependabot
in codecov/codecov-action#1058- chore(deps): update outdated deps by
@thomasrockhu-codecov
in codecov/codecov-action#1059- build(deps-dev): bump
@types/node
from 20.5.4 to 20.5.6 by@dependabot
in codecov/codecov-action#1060- build(deps-dev): bump
@typescript-eslint/parser
from 6.4.1 to 6.5.0 by@dependabot
in codecov/codecov-action#1065- build(deps-dev): bump
@typescript-eslint/eslint-plugin
from 6.4.1 to 6.5.0 by@dependabot
in codecov/codecov-action#1064- build(deps): bump actions/checkout from 3.5.3 to 3.6.0 by
@dependabot
in codecov/codecov-action#1063- build(deps-dev): bump eslint from 8.47.0 to 8.48.0 by
@dependabot
in codecov/codecov-action#1061- build(deps-dev): bump
@types/node
from 20.5.6 to 20.5.7 by@dependabot
in codecov/codecov-action#1062- build(deps): bump openpgp from 5.9.0 to 5.10.1 by
@dependabot
in codecov/codecov-action#1066- build(deps-dev): bump
@types/node
from 20.5.7 to 20.5.9 by@dependabot
in codecov/codecov-action#1070- build(deps): bump github/codeql-action from 2.21.4 to 2.21.5 by
@dependabot
in codecov/codecov-action#1069- build(deps-dev): bump
@typescript-eslint/eslint-plugin
from 6.5.0 to 6.6.0 by@dependabot
in codecov/codecov-action#1072- Update README.md by
@thomasrockhu-codecov
in codecov/codecov-action#1073- build(deps-dev): bump
@typescript-eslint/parser
from 6.5.0 to 6.6.0 by@dependabot
in codecov/codecov-action#1071- build(deps-dev): bump
@vercel/ncc
from 0.36.1 to 0.38.0 by@dependabot
in codecov/codecov-action#1074- build(deps): bump
@actions/core
from 1.10.0 to 1.10.1 by@dependabot
in codecov/codecov-action#1081- build(deps-dev): bump
@typescript-eslint/eslint-plugin
from 6.6.0 to 6.7.0 by@dependabot
in codecov/codecov-action#1080- build(deps): bump actions/checkout from 3.6.0 to 4.0.0 by
@dependabot
in codecov/codecov-action#1078- build(deps): bump actions/upload-artifact from 3.1.2 to 3.1.3 by
@dependabot
in codecov/codecov-action#1077- build(deps-dev): bump
@types/node
from 20.5.9 to 20.6.0 by@dependabot
in codecov/codecov-action#1075- build(deps-dev): bump
@typescript-eslint/parser
from 6.6.0 to 6.7.0 by@dependabot
in codecov/codecov-action#1079- build(deps-dev): bump eslint from 8.48.0 to 8.49.0 by
@dependabot
in codecov/codecov-action#1076- use cli instead of node uploader by
@dana-yaish
in codecov/codecov-action#1068- chore(release): 4.0.0-beta.1 by
@thomasrockhu-codecov
in codecov/codecov-action#1084- not adding -n if empty to do-upload command by
@dana-yaish
in codecov/codecov-action#1085- 4.0.0-beta.2 by
@thomasrockhu-codecov
in codecov/codecov-action#1086
... (truncated)
Changelog
Sourced from codecov/codecov-action's changelog.
4.0.0-beta.2
Fixes
- #1085 not adding -n if empty to do-upload command
4.0.0-beta.1
v4
represents a move from the universal uploader to the Codecov CLI. Although this will unlock new features for our users, the CLI is not yet at feature parity with the universal uploader.Breaking Changes
- No current support for
aarch64
andalpine
architectures.- Tokenless uploading is unsuported
- Various arguments to the Action have been removed
3.1.4
Fixes
- #967 Fix typo in README.md
- #971 fix: add back in working dir
- #969 fix: CLI option names for uploader
Dependencies
- #970 build(deps-dev): bump
@types/node
from 18.15.12 to 18.16.3- #979 build(deps-dev): bump
@types/node
from 20.1.0 to 20.1.2- #981 build(deps-dev): bump
@types/node
from 20.1.2 to 20.1.43.1.3
Fixes
- #960 fix: allow for aarch64 build
Dependencies
- #957 build(deps-dev): bump jest-junit from 15.0.0 to 16.0.0
- #958 build(deps): bump openpgp from 5.7.0 to 5.8.0
- #959 build(deps-dev): bump
@types/node
from 18.15.10 to 18.15.123.1.2
Fixes
- #718 Update README.md
- #851 Remove unsupported path_to_write_report argument
- #898 codeql-analysis.yml
- #901 Update README to contain correct information - inputs and negate feature
- #955 fix: add in all the extra arguments for uploader
Dependencies
- #819 build(deps): bump openpgp from 5.4.0 to 5.5.0
- #835 build(deps): bump node-fetch from 3.2.4 to 3.2.10
- #840 build(deps): bump ossf/scorecard-action from 1.1.1 to 2.0.4
- #841 build(deps): bump
@actions/core
from 1.9.1 to 1.10.0- #843 build(deps): bump
@actions/github
from 5.0.3 to 5.1.1- #869 build(deps): bump node-fetch from 3.2.10 to 3.3.0
- #872 build(deps-dev): bump jest-junit from 13.2.0 to 15.0.0
- #879 build(deps): bump decode-uri-component from 0.2.0 to 0.2.2
... (truncated)