v1.4.0
·
444 commits
to refs/heads/main
since this release
What's Changed
-
GitHub Action: Bump stefanbuck/github-issue-parser from 2 to 3 [Rebase \& FF] @dependabot (#69)
Change Details
Bumps [stefanbuck/github-issue-parser](https://github.com/stefanbuck/github-issue-parser) from 2 to 3.
Release notes
Sourced from stefanbuck/github-issue-parser's releases.
v3.0.0
3.0.0 (2022-10-19)
Bug Fixes
- deps: bump
@actions/corefrom 1.9.1 to 1.10.0 (284e5eb) - Ensure releases can be pinned to SHAs #23 (#39) (428eec3)
Features
BREAKING CHANGES
- Add
issue-bodyargument which is required from v3 onwards
To mitigate script injection attacks, github-issue-parser v3 will require workflow authors to pass the issue body as an argument. By doing so you will follow GitHub's Good practices for mitigating script injection attacks
- uses: stefanbuck/github-issue-parser@v3 id: issue-parser with: issue-body: ${{ github.event.issue.body }} # required template-path: .github/ISSUE_TEMPLATE/bug-report.yml # optional but recommended
The previous checkbox output produced this:
{ "laravel": true, "svelte": true, }whereas the new output will be an array like this
{ "fav_frameworks": ["Laravel", "Svelte"] }... (truncated)
Commits
2e4d854build55281d1build(deps-dev): bump jest from 29.2.2 to 29.3.13c9c1c3build(deps-dev): bump jest from 29.1.2 to 29.2.2 (#49)741688bfeat: add issue-body default (#47)de423fcdocs: Add migration section0b27d4afeat: mitigating script injection attacks by passing issue body as env var (#42)1d341cbfeat: parse checkboxes (#21)284e5ebfix(deps): bump@actions/corefrom 1.9.1 to 1.10.0- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- deps: bump
🚀 Features & ✨ Enhancements
-
Add auto approval for auto merge @makubacki (#68)
Change Details
The auto merge process needs two reviews to meet Project Mu branch protection policy requirements. This change auto approves dependency update pull requests so they can be auto merged.
Signed-off-by: Michael Kubacki michael.kubacki@microsoft.com
Full Changelog: v1.3.1...v1.4.0