diff --git a/HISTORY.md b/HISTORY.md index 9933c7fa..2e1f5052 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,30 @@ # Changelog +## [v23](https://github.com/tj-actions/changed-files/tree/v23) (2022-06-12) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v22.2...v23) + +**Implemented enhancements:** + +- \[Feature\] Get distinct changed folders [\#504](https://github.com/tj-actions/changed-files/issues/504) +- \[Feature\] Rename `files` -\> `paths` [\#125](https://github.com/tj-actions/changed-files/issues/125) + +**Fixed bugs:** + +- \[BUG\] Action does not work when running with `act` anymore [\#518](https://github.com/tj-actions/changed-files/issues/518) + +**Closed issues:** + +- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) + +**Merged pull requests:** + +- feat: add support for returning directory names [\#522](https://github.com/tj-actions/changed-files/pull/522) ([jackton1](https://github.com/jackton1)) +- feat: use debug messages for log outputs [\#521](https://github.com/tj-actions/changed-files/pull/521) ([jackton1](https://github.com/jackton1)) +- chore: clean up internal variables. [\#520](https://github.com/tj-actions/changed-files/pull/520) ([jackton1](https://github.com/jackton1)) +- chore\(deps\): update peter-evans/create-pull-request action to v4.0.4 [\#519](https://github.com/tj-actions/changed-files/pull/519) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v22.2 [\#517](https://github.com/tj-actions/changed-files/pull/517) ([jackton1](https://github.com/jackton1)) + ## [v22.2](https://github.com/tj-actions/changed-files/tree/v22.2) (2022-06-02) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v22.1...v22.2) @@ -31,10 +56,6 @@ - \[Feature\] since\_last\_passing\_remote\_commit [\#507](https://github.com/tj-actions/changed-files/issues/507) -**Closed issues:** - -- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) - **Merged pull requests:** - Updated README.md [\#511](https://github.com/tj-actions/changed-files/pull/511) ([jackton1](https://github.com/jackton1)) @@ -78,10 +99,6 @@ [Full Changelog](https://github.com/tj-actions/changed-files/compare/v20...v20.1) -**Implemented enhancements:** - -- \[Feature\] Rename `files` -\> `paths` [\#125](https://github.com/tj-actions/changed-files/issues/125) - **Fixed bugs:** - \[BUG\] Glob pattern doesn't work for markdown files [\#492](https://github.com/tj-actions/changed-files/issues/492) @@ -553,7 +570,7 @@ ## [v13](https://github.com/tj-actions/changed-files/tree/v13) (2022-02-17) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v13) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...v13) **Implemented enhancements:** @@ -572,13 +589,13 @@ - \[BUG\] wrong result of any\_change output [\#314](https://github.com/tj-actions/changed-files/issues/314) - \[BUG\] Investigate possible bug using since\_last\_remote\_commit when force pushing changes. [\#303](https://github.com/tj-actions/changed-files/issues/303) -## [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.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) +[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) **Merged pull requests:** diff --git a/README.md b/README.md index 9b7ba3f3..24038f11 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 - name: List all changed files run: | @@ -160,11 +160,11 @@ Support this project with a :star: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: separator: "," @@ -186,7 +186,7 @@ Support this project with a :star: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: files: | my-file.txt @@ -227,14 +227,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@v22.2 + uses: tj-actions/changed-files@v23 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@v22.2 + uses: tj-actions/changed-files@v23 with: files_from_source_file: | test/changed-files-list.txt @@ -243,13 +243,13 @@ Support this project with a :star: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 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@v22.2 + uses: tj-actions/changed-files@v23 with: base_sha: "2096ed0" @@ -261,7 +261,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@v22.2 + uses: tj-actions/changed-files@v23 with: path: dir1 @@ -273,19 +273,19 @@ 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@v22.2 + uses: tj-actions/changed-files@v23 with: since_last_remote_commit: "true" - name: Run changed-files using the fork point of a pull request id: changed-files-fork-point - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: use_fork_point: "true" - name: Run changed-files with quotepath disabled id: changed-files-quotepath - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: quotepath: "false" @@ -307,7 +307,7 @@ Support this project with a :star: - name: Run changed-files with the commit of the last successful test workflow run id: changed-files-base-sha-push - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: base_sha: ${{ steps.last_successful_commit_push.outputs.commit_hash }} @@ -328,13 +328,13 @@ Support this project with a :star: - name: Run changed-files with the commit of the last successful test workflow run on main if: github.event_name == 'pull_request' id: changed-files-base-sha-pull-request - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: base_sha: ${{ steps.last_successful_commit_pull_request.outputs.commit_hash }} - name: Run changed-files with dir_names id: changed-files-dir-names - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: dir_names: "true" ``` @@ -387,7 +387,7 @@ With the switch from using grep's Extended regex to match files to the natively - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v22.2 + uses: tj-actions/changed-files@v23 with: files: | *.sh