Skip to content

Commit

Permalink
merge: release v0.10.2 (#1058)
Browse files Browse the repository at this point in the history
  • Loading branch information
attilaorosz authored Mar 6, 2023
2 parents 39ef160 + 4f77165 commit 44e751e
Show file tree
Hide file tree
Showing 6 changed files with 1,324 additions and 1,809 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/auto-approve-dependabot-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Dependabot auto-merge
on:
pull_request_target
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: 'Auto approve PR by Dependabot'
uses: hmarr/[email protected]
with:
github-token: "${{ secrets.TYPESTACK_BOT_TOKEN }}"
- name: 'Comment merge command'
uses: actions/github-script@v3
with:
github-token: ${{secrets.TYPESTACK_BOT_TOKEN }}
script: |
await github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: '@dependabot squash and merge'
})
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog and release notes

## [0.10.2](https://github.com/typestack/routing-controllers/compare/v0.10.1...v0.10.2) (2023-03-06)

### Changed

- `glob` package updated to `8.1.0` from `8.0.3`
- `body-parser` package updated to `1.20.2` from `1.20.1`
- `multer` package updated to `1.4.5-lts.1` from `1.4.4`
- Note: This fixes vulnerability CVE-2022-24434
- updated various dev dependencies

### Fixed

- Added normalization to glob pattern resolver to fix Windows paths

## [0.10.1](https://github.com/typestack/routing-controllers/compare/v0.10.0...v0.10.1) (2023-01-13)

### Changed
Expand Down
Loading

0 comments on commit 44e751e

Please sign in to comment.