6 files changed +1324
-1809
lines changed Original file line number Diff line number Diff line change
1
+ name : Dependabot auto-merge
2
+ on :
3
+ pull_request_target
4
+ jobs :
5
+ dependabot :
6
+ runs-on : ubuntu-latest
7
+ if : github.actor == 'dependabot[bot]'
8
+ steps :
9
+ - name : ' Auto approve PR by Dependabot'
10
+ uses : hmarr/auto-approve-action@v2.0.0
11
+ with :
12
+ github-token : " ${{ secrets.TYPESTACK_BOT_TOKEN }}"
13
+ - name : ' Comment merge command'
14
+ uses : actions/github-script@v3
15
+ with :
16
+ github-token : ${{secrets.TYPESTACK_BOT_TOKEN }}
17
+ script : |
18
+ await github.issues.createComment({
19
+ owner: context.repo.owner,
20
+ repo: context.repo.repo,
21
+ issue_number: context.issue.number,
22
+ body: '@dependabot squash and merge'
23
+ })
Original file line number Diff line number Diff line change 1
1
# Changelog and release notes
2
2
3
+ ## [ 0.10.2] ( https://github.com/typestack/routing-controllers/compare/v0.10.1...v0.10.2 ) (2023-03-06)
4
+
5
+ ### Changed
6
+
7
+ - ` glob ` package updated to ` 8.1.0 ` from ` 8.0.3 `
8
+ - ` body-parser ` package updated to ` 1.20.2 ` from ` 1.20.1 `
9
+ - ` multer ` package updated to ` 1.4.5-lts.1 ` from ` 1.4.4 `
10
+ - Note: This fixes vulnerability CVE-2022 -24434
11
+ - updated various dev dependencies
12
+
13
+ ### Fixed
14
+
15
+ - Added normalization to glob pattern resolver to fix Windows paths
16
+
3
17
## [ 0.10.1] ( https://github.com/typestack/routing-controllers/compare/v0.10.0...v0.10.1 ) (2023-01-13)
4
18
5
19
### Changed
0 commit comments