chore(deps): update tj-actions/changed-files action to v44
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| tj-actions/changed-files | action | major | v43 -> v44 |
Release Notes
tj-actions/changed-files (tj-actions/changed-files)
v44
Changes in v44.3.0
What's Changed
- Upgraded to v44.2.0 by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2054
- fix: add a fallback value for the max number for retries to fetch missing history by @jackton1 in https://github.com/tj-actions/changed-files/pull/2055
- feat: add support for returning posix path separator on windows by @jackton1 in https://github.com/tj-actions/changed-files/pull/2056
Full Changelog: https://github.com/tj-actions/changed-files/compare/v44.2.0...v44.3.0
Changes in v44.2.0
What's Changed
- Updated README.md by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2049
- Upgraded to v44.1.0 by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2050
- feat: add support for specifying the max number for retries to fetch missing history by @jackton1 in https://github.com/tj-actions/changed-files/pull/2052
- Updated README.md by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2053
Full Changelog: https://github.com/tj-actions/changed-files/compare/v44.1.0...v44.2.0
Changes in v44.1.0
What's Changed
- Upgraded to v44.0.1 by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2037
- chore(deps): update dependency typescript to v5.4.5 by @renovate in https://github.com/tj-actions/changed-files/pull/2038
- chore(deps): update peter-evans/create-pull-request action to v6.0.3 by @renovate in https://github.com/tj-actions/changed-files/pull/2040
- chore(deps): update dependency @types/micromatch to v4.0.7 by @renovate in https://github.com/tj-actions/changed-files/pull/2041
- chore(deps): lock file maintenance by @renovate in https://github.com/tj-actions/changed-files/pull/2042
- chore(deps): lock file maintenance by @renovate in https://github.com/tj-actions/changed-files/pull/2043
- chore(deps): update typescript-eslint monorepo to v7.7.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2046
- chore(deps): update peter-evans/create-pull-request action to v6.0.4 by @renovate in https://github.com/tj-actions/changed-files/pull/2048
- feat: add option to exclude submodules when detecting changes by @jackton1 in https://github.com/tj-actions/changed-files/pull/2047
Full Changelog: https://github.com/tj-actions/changed-files/compare/v44.0.1...v44.1.0
Changes in v44.0.1
What's Changed
- Upgraded to v44 by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2017
- chore(deps): update tj-actions/eslint-changed-files action to v24 by @renovate in https://github.com/tj-actions/changed-files/pull/2019
- chore(deps): update dependency @types/node to v20.12.2 by @renovate in https://github.com/tj-actions/changed-files/pull/2020
- chore(deps): lock file maintenance by @renovate in https://github.com/tj-actions/changed-files/pull/2021
- chore(deps): update typescript-eslint monorepo to v7.5.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2022
- chore(deps): update dependency @types/node to v20.12.3 by @renovate in https://github.com/tj-actions/changed-files/pull/2023
- fix(deps): update dependency @octokit/rest to v20.1.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2024
- chore(deps): update dependency @types/node to v20.12.4 by @renovate in https://github.com/tj-actions/changed-files/pull/2025
- chore(deps): update dependency typescript to v5.4.4 by @renovate in https://github.com/tj-actions/changed-files/pull/2027
- chore(deps): bump undici from 5.28.3 to 5.28.4 by @dependabot in https://github.com/tj-actions/changed-files/pull/2026
- chore(deps): update dependency @types/node to v20.12.5 by @renovate in https://github.com/tj-actions/changed-files/pull/2028
- chore(deps): update dependency eslint-plugin-jest to v28 by @renovate in https://github.com/tj-actions/changed-files/pull/2030
- chore(deps): update dependency eslint-plugin-jest to v28.1.1 by @renovate in https://github.com/tj-actions/changed-files/pull/2031
- chore(deps): update dependency eslint-plugin-jest to v28.2.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2032
- chore(deps): lock file maintenance by @renovate in https://github.com/tj-actions/changed-files/pull/2033
- chore(deps): update typescript-eslint monorepo to v7.6.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2034
- chore(deps): update dependency @types/node to v20.12.6 by @renovate in https://github.com/tj-actions/changed-files/pull/2035
- chore(deps): update dependency @types/node to v20.12.7 by @renovate in https://github.com/tj-actions/changed-files/pull/2036
Full Changelog: https://github.com/tj-actions/changed-files/compare/v44...v44.0.1
Changes in v44.0.0
🔥🔥 BREAKING CHANGE 🔥🔥
Overview
We've made a significant update to how pull requests (PRs) from forked repositories are processed. This improvement not only streamlines the handling of such PRs but also fixes a previously identified issue.
Before the Change
Previously, when you created a pull request from a forked repository, any files changed in the target branch after the PR creation would erroneously appear as part of the PR's changed files. This made it difficult to distinguish between the actual changes introduced by the PR and subsequent changes made directly to the target branch.
What Has Changed
With this update, a pull request from a fork will now only include the files that were explicitly changed in the fork. This ensures that the list of changed files in a PR accurately reflects the contributions from the fork, without being muddled by unrelated changes to the target branch.
What's Changed
- Upgraded to v43.0.1 by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2004
- chore(deps): lock file maintenance by @renovate in https://github.com/tj-actions/changed-files/pull/2005
- chore(deps): update typescript-eslint monorepo to v7.4.0 by @renovate in https://github.com/tj-actions/changed-files/pull/2006
- fix: bug with prs from forks returning incorrect set of changed files by @jackton1 in https://github.com/tj-actions/changed-files/pull/2007
- fix: check for setting remote urls for forks by @jackton1 in https://github.com/tj-actions/changed-files/pull/2009
- fix: update to add the fork remote by @jackton1 in https://github.com/tj-actions/changed-files/pull/2010
- fix: update previous sha for forks by @jackton1 in https://github.com/tj-actions/changed-files/pull/2011
- fix: ensure the fork remote doesn't exists before creating it by @jackton1 in https://github.com/tj-actions/changed-files/pull/2012
- chore: update description of other_deleted_files output by @tonyejack1 in https://github.com/tj-actions/changed-files/pull/2008
- Updated README.md by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2013
- remove: unused code by @jackton1 in https://github.com/tj-actions/changed-files/pull/2014
- chore: update description of outputs removing asterisks by @tonyejack1 in https://github.com/tj-actions/changed-files/pull/2015
- Updated README.md by @tj-actions-bot in https://github.com/tj-actions/changed-files/pull/2016
New Contributors
- @tonyejack1 made their first contribution in https://github.com/tj-actions/changed-files/pull/2008
Full Changelog: https://github.com/tj-actions/changed-files/compare/v43.0.1...v44.0.0
Configuration
📅 Schedule: Branch creation - "before 5am every weekday" in timezone America/New_York, Automerge - "every weekday" in timezone America/New_York.
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Deploy Preview for kongponents-sandbox ready!
| Name | Link |
|---|---|
| Latest commit | dbb089cbc8dd6db4265c127f8a0e0f0152163a92 |
| Latest deploy log | https://app.netlify.com/sites/kongponents-sandbox/deploys/666c695b56e427000874aac4 |
| Deploy Preview | https://deploy-preview-2170--kongponents-sandbox.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Deploy Preview for kongponents ready!
| Name | Link |
|---|---|
| Latest commit | dbb089cbc8dd6db4265c127f8a0e0f0152163a92 |
| Latest deploy log | https://app.netlify.com/sites/kongponents/deploys/666c695bb3782300085dd4f0 |
| Deploy Preview | https://deploy-preview-2170--kongponents.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
:tada: This PR is included in version 9.0.0-alpha.179 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Preview package from this PR in consuming application
In consuming application project install preview version of kongponents generated by this PR:
@kong/kongponents@pr-2170