diff --git a/HISTORY.md b/HISTORY.md index 0b168ef1..f4fb15e1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,20 +1,36 @@ # Changelog -## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD) +## [v13](https://github.com/tj-actions/changed-files/tree/v13) (2022-01-05) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...HEAD) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v13) + +**Implemented enhancements:** + +- \[Feature\] Make it easier to exclude files [\#265](https://github.com/tj-actions/changed-files/issues/265) +- \[Feature\] Support the same filter syntax as GitHub Workflows [\#264](https://github.com/tj-actions/changed-files/issues/264) + +**Closed issues:** + +- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) **Merged pull requests:** +- Upgraded tj-actions/glob to v3.2 [\#306](https://github.com/tj-actions/changed-files/pull/306) ([jackton1](https://github.com/jackton1)) +- Update tj-actions/remark action to v2.3 [\#305](https://github.com/tj-actions/changed-files/pull/305) ([renovate[bot]](https://github.com/apps/renovate)) +- Add support for using github's glob pattern syntax [\#304](https://github.com/tj-actions/changed-files/pull/304) ([jackton1](https://github.com/jackton1)) +- Update tj-actions/remark action to v2 [\#302](https://github.com/tj-actions/changed-files/pull/302) ([renovate[bot]](https://github.com/apps/renovate)) +- Bump tj-actions/github-changelog-generator from 1.10 to 1.11 [\#300](https://github.com/tj-actions/changed-files/pull/300) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Update tj-actions/github-changelog-generator action to v1.10 [\#299](https://github.com/tj-actions/changed-files/pull/299) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v2.0.1 [\#298](https://github.com/tj-actions/changed-files/pull/298) ([jackton1](https://github.com/jackton1)) - Upgraded to v12.2 [\#297](https://github.com/tj-actions/changed-files/pull/297) ([jackton1](https://github.com/jackton1)) -## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30) - -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v12.2) - ## [v2.0.1](https://github.com/tj-actions/changed-files/tree/v2.0.1) (2021-12-30) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v2.0.1) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...v2.0.1) + +## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v12.2) **Merged pull requests:** @@ -30,10 +46,6 @@ - \[BUG\] The `other_modified_files` contains all modified files even those that match the file `filter`. [\#293](https://github.com/tj-actions/changed-files/issues/293) - \[BUG\] The `only_modified` is evaluated to `true` even when `other_modified_files` is not empty. [\#292](https://github.com/tj-actions/changed-files/issues/292) -**Closed issues:** - -- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) - **Merged pull requests:** - Fixed regression bug with other\_modified and other\_changed outputs [\#294](https://github.com/tj-actions/changed-files/pull/294) ([jackton1](https://github.com/jackton1)) diff --git a/README.md b/README.md index d2d15400..4b9f3a30 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 - name: List all changed files run: | @@ -140,11 +140,11 @@ Support this project with a :star: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: separator: "," @@ -166,7 +166,7 @@ Support this project with a :star: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: files: | my-file.txt @@ -205,14 +205,14 @@ Support this project with a :star: - name: Use a source file or list of file(s) to populate to files input. id: changed-files-specific-source-file - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: files_from_source_file: | test/changed-files-list.txt - name: Use a source file or list of file(s) to populate to files input and optionally specify more files. id: changed-files-specific-source-file-and-specify-files - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: files_from_source_file: | test/changed-files-list.txt @@ -221,13 +221,13 @@ Support this project with a :star: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: sha: ${{ github.event.pull_request.head.sha }} - name: Use a different base SHA id: changed-files-custom-base-sha - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: base_sha: "2096ed0" @@ -239,7 +239,7 @@ Support this project with a :star: - name: Run changed-files with defaults on the dir1 id: changed-files-for-dir1 - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: path: dir1 @@ -251,7 +251,7 @@ Support this project with a :star: - name: Run changed-files using the last commit on the remote branch id: changed-files-since-last-remote-commit - uses: tj-actions/changed-files@v12.2 + uses: tj-actions/changed-files@v13 with: since_last_remote_commit: "true"