Sourced from actions/cache's releases.
v4.2.3
What's Changed
- Update to use
@actions/cache4.0.3 package & prepare for new release by@salmanmkcin actions/cache#1577 (SAS tokens for cache entries are now masked in debug logs)New Contributors
@salmanmkcmade their first contribution in actions/cache#1577Full Changelog: https://github.com/actions/cache/compare/v4.2.2...v4.2.3
Sourced from actions/cache's changelog.
Releases
4.2.3
- Bump
@actions/cacheto v4.0.3 (obfuscates SAS token in debug logs for cache entries)4.2.2
- Bump
@actions/cacheto v4.0.24.2.1
- Bump
@actions/cacheto v4.0.14.2.0
TLDR; The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.
The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.
We are deprecating some versions of this action. We recommend upgrading to version
v4orv3as soon as possible before February 1st, 2025. (Upgrade instructions below).If you are using pinned SHAs, please use the SHAs of versions
v4.2.0orv3.4.0If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.
Upgrading to the recommended versions will not break your workflows.
4.1.2
- Add GitHub Enterprise Cloud instances hostname filters to inform API endpoint choices - #1474
- Security fix: Bump braces from 3.0.2 to 3.0.3 - #1475
4.1.1
- Restore original behavior of
cache-hitoutput - #14674.1.0
4.0.2
- Fixed restore
fail-on-cache-missnot working.4.0.1
- Updated
isGhescheck
... (truncated)
5a3ec84
Merge pull request #1577
from salmanmkc/salmanmkc/4-test7de2102
Update releases.md76d40dd
Update to use the latest version of the cache package to obfuscate the
SAS76dd5eb
update cache with main8c80c27
new package45cfd0e
updatesedd449b
updated cache with latest changes0576707
latest test before pr3105dc9
update9450d42
maskSourced from dawidd6/action-download-artifact's releases.
v9
What's Changed
- add merge_multiple option by
@timostroehleinin dawidd6/action-download-artifact#327New Contributors
@timostroehleinmade their first contribution in dawidd6/action-download-artifact#327Full Changelog: https://github.com/dawidd6/action-download-artifact/compare/v8...v9
07ab29f
add merge_multiple option (#327)Sourced from pygithub's releases.
v2.6.1
Bug Fixes
- Fix broken pickle support for
Authclasses by@EnricoMiin PyGithub/PyGithub#3211- Remove schema from
Deployment, removemessageattribute by@EnricoMiin PyGithub/PyGithub#3223- Fix incorrect deprecated import by
@EnricoMiin PyGithub/PyGithub#3225- Add
CodeSecurityConfigRepositoryreturned byget_repos_for_code_security_configby@EnricoMiin PyGithub/PyGithub#3219- Make
GitTag.verificationreturnGitCommitVerificationby@EnricoMiin PyGithub/PyGithub#3226Maintenance
- Mention removal of
AppAuth.private_keyin changelog by@EnricoMiin PyGithub/PyGithub#3212Full Changelog: https://github.com/PyGithub/PyGithub/compare/v2.6.0...v2.6.1
v2.6.0
Breaking Changes
- Rework
ViewsandClonesby@EnricoMiin PyGithub/PyGithub#3168: View and clones traffic information returned byRepository.get_views_trafficandRepository.get_clones_trafficnow return proper PyGithub objects, instead of adict, with all information that used to be provided by thedict:Code like
repo.get_views_traffic().["views"].timestamp repo.get_clones_traffic().["clones"].timestampshould be replaced with
repo.get_views_traffic().views.timestamp repo.get_clones_traffic().clones.timestamp
- Fix typos by
@kianmengin PyGithub/PyGithub#3086: PropertyOrganizationCustomProperty.respository_idrenamed toOrganizationCustomProperty.repository_id.New Features
- Add capability for global laziness by
@EnricoMiin PyGithub/PyGithub#2746- Add Support for GitHub Copilot Seat Management in Organizations by
@pashafateevin PyGithub/PyGithub#3082- Get branches where commit is head by
@EnricoMiin PyGithub/PyGithub#3083- Support downloading a Release Asset by
@neel-min PyGithub/PyGithub#3060- Add
Repository.merge_upstreammethod by@Felixoidin PyGithub/PyGithub#3175- Support updating pull request draft status by
@didotin PyGithub/PyGithub#3104- Add transfer ownership method to Repository by
@tanannie22in PyGithub/PyGithub#3091- Add enable and disable a Workflow by
@nickrmccloreyin PyGithub/PyGithub#3088- Add support for managing Code Security Configrations by
@billnapierin PyGithub/PyGithub#3095- Allow for private_key / sign function in AppAuth by
@EnricoMiin PyGithub/PyGithub#3065Improvements
- Update RateLimit object with all the new categories GitHub added. by
@billnapierin PyGithub/PyGithub#3096
... (truncated)
Sourced from pygithub's changelog.
Version 2.6.1 (February 21, 2025)
Bug Fixes ^^^^^^^^^
- Fix broken pickle support for
Authclasses ([#3211](https://github.com/pygithub/pygithub/issues/3211) <https://github.com/PyGithub/PyGithub/pull/3211>) (f975552a <https://github.com/PyGithub/PyGithub/commit/f975552a>)- Remove schema from
Deployment, removemessageattribute ([#3223](https://github.com/pygithub/pygithub/issues/3223) <https://github.com/PyGithub/PyGithub/pull/3223>) (d12e7d4c <https://github.com/PyGithub/PyGithub/commit/d12e7d4c>)- Fix incorrect deprecated import (
[#3225](https://github.com/pygithub/pygithub/issues/3225) <https://github.com/PyGithub/PyGithub/pull/3225>) (93297440 <https://github.com/PyGithub/PyGithub/commit/93297440>)- Add
CodeSecurityConfigRepositoryreturned byget_repos_for_code_security_config([#3219](https://github.com/pygithub/pygithub/issues/3219) <https://github.com/PyGithub/PyGithub/pull/3219>) (f997a2f6 <https://github.com/PyGithub/PyGithub/commit/f997a2f6>)- Make
GitTag.verificationreturnGitCommitVerification([#3226](https://github.com/pygithub/pygithub/issues/3226) <https://github.com/PyGithub/PyGithub/pull/3226>) (048a1a38 <https://github.com/PyGithub/PyGithub/commit/048a1a38>)Maintenance ^^^^^^^^^^^
- Mention removal of
AppAuth.private_keyin changelog ([#3212](https://github.com/pygithub/pygithub/issues/3212) <https://github.com/PyGithub/PyGithub/pull/3212>) (f5dc1c76 <https://github.com/PyGithub/PyGithub/commit/f5dc1c76>)Version 2.6.0 (February 15, 2025)
Breaking Changes ^^^^^^^^^^^^^^^^
Rework
ViewsandClones([#3168](https://github.com/pygithub/pygithub/issues/3168) <https://github.com/PyGithub/PyGithub/pull/3168>) (f7d52249 <https://github.com/PyGithub/PyGithub/commit/f7d52249>):View and clones traffic information returned by
Repository.get_views_trafficandRepository.get_clones_trafficnow return proper PyGithub objects, instead of adict, with all information that used to be provided by thedict:Code like
.. code-block:: python
repo.get_views_traffic().["views"].timestamp repo.get_clones_traffic().["clones"].timestamp
should be replaced with
.. code-block:: python
repo.get_views_traffic().views.timestamp repo.get_clones_traffic().clones.timestamp
Add
GitCommitVerificationclass ([#3028](https://github.com/pygithub/pygithub/issues/3028) <https://github.com/PyGithub/PyGithub/pull/3028>) (822e6d71 <https://github.com/PyGithub/PyGithub/commit/822e6d71>):Changes the return value of
GitTag.verificationandGitCommit.verificationfromdicttoGitCommitVerification.Code like
.. code-block:: python
tag.verification["reason"] commit.verification["reason"]
... (truncated)
da30d6e
Releasing v2.6.1 (#3230)f997a2f
Add CodeSecurityConfigRepository returned by
`get_repos_for_code_security_c...048a1a3
Make GitTag.verification return
GitCommitVerification (#3226)9329744
Fix incorrect deprecated import (#3225)d12e7d4
Remove schema from Deployment, remove message
attribute (#3223)f975552
Fix broken pickle support for Auth classes (#3211)f5dc1c7
Mention removal of AppAuth.private_key in changelog (#3212)e3e07d7
Fix PyPi upload (#3200)620c839
Fix PyPi upload (#3199)bf98e17
Release 2.6.0 (#3198)Sourced from actions/download-artifact's releases.
v4.2.1
What's Changed
- Add unit tests by
@GhadimiRin actions/download-artifact#392- Fix bug introduced in 4.2.0 by
@GhadimiRin actions/download-artifact#391Full Changelog: https://github.com/actions/download-artifact/compare/v4.2.0...v4.2.1
95815c3
Merge pull request #391
from GhadimiR/main278fca4
Move log statements6890984
Merge branch 'main' into mainf9415c0
Run unit tests in CI76a6eb5
Merge pull request #392
from GhadimiR/add_unit_testsa2426d7
Merge branch 'main' into add_unit_tests3ffa694
lint53f6aa5
Add extra assertion to download single artifact testb456700
lint9eab798
Configure tsconfig99ee890
Release 0.12.2d1a27f5
Merge pull request #61
from gi0baro/pyo3-02466fd949
Allow PyO3 0.24Sourced from actions/setup-python's releases.
v5.5.0
What's Changed
Enhancements:
- Support free threaded Python versions like '3.13t' by
@colesburyin actions/setup-python#973- Enhance Workflows: Include ubuntu-arm runners, Add e2e Testing for free threaded and Upgrade
@action/cachefrom 4.0.0 to 4.0.3 by@priya-kinthaliin actions/setup-python#1056- Add support for .tool-versions file in setup-python by
@mahabaleshwarsin actions/setup-python#1043Bug fixes:
- Fix architecture for pypy on Linux ARM64 by
@mayeutin actions/setup-python#1011 This update maps arm64 to aarch64 for Linux ARM64 PyPy installations.Dependency updates:
- Upgrade
@vercel/nccfrom 0.38.1 to 0.38.3 by@dependabotin actions/setup-python#1016- Upgrade
@actions/globfrom 0.4.0 to 0.5.0 by@dependabotin actions/setup-python#1015New Contributors
@colesburymade their first contribution in actions/setup-python#973@mahabaleshwarsmade their first contribution in actions/setup-python#1043Full Changelog: https://github.com/actions/setup-python/compare/v5...v5.5.0
8d9ed9a
Add e2e Testing for free threaded and Bump @action/cache
from 4.0.0 to 4.0.3 ...19e4675
Add support for .tool-versions file in setup-python (#1043)6fd11e1
Bump @actions/glob from 0.4.0 to 0.5.0 (#1015)9e62be8
Support free threaded Python versions like '3.13t' (#973)6ca8e85
Bump @vercel/ncc from 0.38.1 to 0.38.3 (#1016)8039c45
fix: install PyPy on Linux ARM64 (#1011)Sourced from jinja2's releases.
3.1.6
This is the Jinja 3.1.6 security release, which fixes security issues but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.
PyPI: https://pypi.org/project/Jinja2/3.1.6/ Changes: https://jinja.palletsprojects.com/en/stable/changes/#version-3-1-6
- The
|attrfilter does not bypass the environment's attribute lookup, allowing the sandbox to apply its checks. https://github.com/pallets/jinja/security/advisories/GHSA-cpwx-vrp4-4pq7
Sourced from jinja2's changelog.
Version 3.1.6
Released 2025-03-05
- The
|attrfilter does not bypass the environment's attribute lookup, allowing the sandbox to apply its checks. :ghsa:cpwx-vrp4-4pq7
1520688
release version 3.1.690457bb
Merge commit from fork065334d
attr filter uses env.getattr033c200
start version 3.1.6bc68d4e
use global contributing guide (#2070)247de5e
use global contributing guideab8218c
use project advisory link instead of globalb4ffc8f
release version 3.1.5 (#2066)280af8a
Merge pull request #688
from actions/dependabot/npm_and_yarn/vercel/ncc-0.38.3a5abfeb
Update licensed cache and dist/ directoryf30c2e6
Bump @vercel/ncc from 0.38.1 to 0.38.381dd5ce
Merge pull request #687
from actions/dependabot/npm_and_yarn/types/jest-29.5.14122a803
Bump @types/jest from 29.5.12 to 29.5.1429c72ac
Merge pull request #686
from actions/dependabot/npm_and_yarn/types/node-22.13.1446316d9
Bump @types/node from 16.18.101 to 22.13.1495df5ae
Merge pull request #685
from actions/dependabot/npm_and_yarn/eslint-plugin-je...f14f229
Bump eslint-plugin-jest from 28.6.0 to 28.11.0cc69618
Exit without failure if nothing to commitSourced from actions/upload-artifact's releases.
v4.6.2
What's Changed
- Update to use artifact 2.3.2 package & prepare for new upload-artifact release by
@salmanmkcin actions/upload-artifact#685New Contributors
@salmanmkcmade their first contribution in actions/upload-artifact#685Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.6.2
ea165f8
Merge pull request #685
from salmanmkc/salmanmkc/3-new-upload-artifacts-release0839620
Prepare for new release of actions/upload-artifact with new toolkit
cache ver...Sourced from authlib's releases.
Version 1.5.1
Released on Feb 28, 2025
- Fix RFC9207 iss parameter. #715
Version 1.5.0
- Fix token introspection auth method for clients. #662
- Optional typ claim in JWT tokens. #696
- JWT validation leeway. #689
- Implement server-side RFC9207. #700 #701
- generate_id_token can take a kid parameter. #702
- More detailed InvalidClientError. #706
- OpenID Connect Dynamic Client Registration implementation. #707
Sourced from authlib's changelog.
Version 1.5.1
Released on Feb 28, 2025
- Fix RFC9207
issparameter. :pr:715Version 1.5.0
Released on Feb 25, 2025
- Fix token introspection auth method for clients. :pr:
662- Optional
typclaim in JWT tokens. :pr:696- JWT validation leeway. :pr:
689- Implement server-side :rfc:
RFC9207 <9207>. :issue:700:pr:701generate_id_tokencan take akidparameter. :pr:702- More detailed
InvalidClientError. :pr:706- OpenID Connect Dynamic Client Registration implementation. :pr:
707
4eafdc2
chore: release 1.5.10e7e344
Merge pull request #715
from azmeuk/rfc9207b57932b
fix: RFC9207 iss parameter7833a88
Merge pull request #713
from geigerzaehler/full-entropy642dfa3
doc: fix an example import for rfc92075c507a8
fix: Use full entropy from specified oct key size2d0396e
chore: release 1.5.0da87c8b
doc: update changelogb79d868
Merge pull request #662
from AdamWill/oauth2-fix-introspect-endpoint24c2bd8
chore: add a dependency group for the documentation73ef5e6
Prep for 9.0.2 release528a98b
Generated files for metadata28f5958
Merge metadata changes from upstream 9.0.225ae49c
Prep for 9.0.1 releaseb8a1459
Generated files for metadataf6cd233
Merge metadata changes from upstream 9.0.1c46f104
Prep for 9.0.0 released542ec2
Generated files for metadataa4da80e
Merge metadata changes from upstream 9.0.045c822e
Prep for 8.13.55 release