Skip to content

Commit 44e751e

Browse files
authoredMar 6, 2023
merge: release v0.10.2 (#1058)
2 parents 39ef160 + 4f77165 commit 44e751e

File tree

6 files changed

+1324
-1809
lines changed

6 files changed

+1324
-1809
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
})

‎CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog and release notes
22

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+
317
## [0.10.1](https://github.com/typestack/routing-controllers/compare/v0.10.0...v0.10.1) (2023-01-13)
418

519
### Changed

0 commit comments

Comments
 (0)
Failed to load comments.