diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c7150..89e374c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,31 @@ # Changelog -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. + +## [5.0.0](https://github.com/dessant/lock-threads/compare/v4.0.1...v5.0.0) (2023-11-14) + + +### ⚠ BREAKING CHANGES + +* Discussions are also processed by default, +set the `process-only` input parameter to preserve the old behavior + +```yaml + steps: + - uses: dessant/lock-threads@v5 + with: + process-only: 'issues, prs' +``` +* the action now requires Node.js 20 + +### Features + +* lock discussions ([0a0976f](https://github.com/dessant/lock-threads/commit/0a0976f3ded51c88c6128dd96dd115c9f14fa764)), closes [#25](https://github.com/dessant/lock-threads/issues/25) + + +### Bug Fixes + +* update dependencies ([5a25b54](https://github.com/dessant/lock-threads/commit/5a25b54eae3e7a5580d09ef0f7cbc5b18376db67)) ### [4.0.1](https://github.com/dessant/lock-threads/compare/v4.0.0...v4.0.1) (2023-06-12) diff --git a/package-lock.json b/package-lock.json index 7c7ad5e..a6ebe51 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lock-threads", - "version": "4.0.1", + "version": "5.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lock-threads", - "version": "4.0.1", + "version": "5.0.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", diff --git a/package.json b/package.json index 1844d1a..78972b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lock-threads", - "version": "4.0.1", + "version": "5.0.0", "description": "A GitHub Action that locks closed issues and pull requests after a period of inactivity.", "author": "Armin Sebastian", "license": "MIT",