From 3b2f4c0c750ced7e12ae22d42dddf6f457105cb3 Mon Sep 17 00:00:00 2001 From: CasperWA Date: Thu, 14 Apr 2022 07:32:42 +0000 Subject: [PATCH] Release v2.10.0 --- CHANGELOG.md | 29 +++++++++++++++++++++++++---- push_action/__init__.py | 2 +- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d987e2..52d62a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,31 @@ # Changelog -## [Unreleased](https://github.com/CasperWA/push-protected/tree/HEAD) +## [v2.10.0](https://github.com/CasperWA/push-protected/tree/v2.10.0) (2022-04-14) -[Full Changelog](https://github.com/CasperWA/push-protected/compare/v2.9.0...HEAD) +[Full Changelog](https://github.com/CasperWA/push-protected/compare/v2.9.0...v2.10.0) + +**Fixed bugs:** + +- GH GraphQL variable update for auto-merge workflow [\#100](https://github.com/CasperWA/push-protected/issues/100) **Closed issues:** -- Not clear which scope should I use to enable `unprotect_reviews` option [\#60](https://github.com/CasperWA/push-protected/issues/60) +- Looks like git update for CVE-2022-24765 broke the action [\#114](https://github.com/CasperWA/push-protected/issues/114) + +**Merged pull requests:** -## [v2.9.0](https://github.com/CasperWA/push-protected/tree/v2.9.0) (2022-01-14) +- Add `/github/workspace/ to git safe.directory [\#115](https://github.com/CasperWA/push-protected/pull/115) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#113](https://github.com/CasperWA/push-protected/pull/113) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#112](https://github.com/CasperWA/push-protected/pull/112) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#110](https://github.com/CasperWA/push-protected/pull/110) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#106](https://github.com/CasperWA/push-protected/pull/106) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#104](https://github.com/CasperWA/push-protected/pull/104) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#103](https://github.com/CasperWA/push-protected/pull/103) ([CasperWA](https://github.com/CasperWA)) +- Use `ID!` type instead of `String!` [\#101](https://github.com/CasperWA/push-protected/pull/101) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#98](https://github.com/CasperWA/push-protected/pull/98) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#97](https://github.com/CasperWA/push-protected/pull/97) ([CasperWA](https://github.com/CasperWA)) + +## [v2.9.0](https://github.com/CasperWA/push-protected/tree/v2.9.0) (2022-01-17) [Full Changelog](https://github.com/CasperWA/push-protected/compare/v2.8.0...v2.9.0) @@ -17,6 +34,10 @@ - Warn or error upon using token without proper rights [\#94](https://github.com/CasperWA/push-protected/issues/94) - Add `debug` option [\#93](https://github.com/CasperWA/push-protected/issues/93) +**Closed issues:** + +- Not clear which scope should I use to enable `unprotect_reviews` option [\#60](https://github.com/CasperWA/push-protected/issues/60) + **Merged pull requests:** - Check permission [\#95](https://github.com/CasperWA/push-protected/pull/95) ([CasperWA](https://github.com/CasperWA)) diff --git a/push_action/__init__.py b/push_action/__init__.py index e4374df..cc6f1bd 100644 --- a/push_action/__init__.py +++ b/push_action/__init__.py @@ -4,5 +4,5 @@ It is meant to only be used in the `push-protected` GitHub action. """ -__version__ = "2.9.0" +__version__ = "2.10.0" __author__ = "Casper Welzel Andersen"