Skip to content

Commit 5f91937

Browse files
merge: release 0.13.2 (#1409)
2 parents 1fde8a9 + 8e841ef commit 5f91937

23 files changed

+10927
-2202
lines changed

.eslintrc.yml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ extends:
1212
- 'plugin:@typescript-eslint/recommended-requiring-type-checking'
1313
- 'plugin:jest/recommended'
1414
- 'prettier'
15-
- 'prettier/@typescript-eslint'
1615
rules:
1716
'@typescript-eslint/explicit-member-accessibility': off
1817
'@typescript-eslint/no-angle-bracket-type-assertion': off

.github/dependabot.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ updates:
1111
commit-message:
1212
prefix: build
1313
include: scope
14+
ignore:
15+
- dependency-name: "husky"
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
name: Auto approve PRs
1+
name: Dependabot auto-merge
22
on:
3-
pull_request
3+
pull_request_target
44
jobs:
55
dependabot:
66
runs-on: ubuntu-latest
7+
if: github.actor == 'dependabot[bot]'
78
steps:
8-
- uses: hmarr/auto-approve[email protected]
9-
if: github.actor == 'dependabot[bot]'
9+
- name: 'Auto approve PR by Dependabot'
10+
uses: hmarr/[email protected]
1011
with:
11-
github-token: "${{ secrets.GITHUB_TOKEN }}"
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

+93-73
Large diffs are not rendered by default.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,7 @@ There are several extensions that simplify class-validator integration with othe
10031003
- [class-validator integration](https://github.com/19majkel94/class-transformer-validator) with [class-transformer](https://github.com/pleerock/class-transformer)
10041004
- [class-validator-rule](https://github.com/yantrab/class-validator-rule)
10051005
- [ngx-dynamic-form-builder](https://github.com/EndyKaufman/ngx-dynamic-form-builder)
1006+
- [abarghoud/ngx-reactive-form-class-validator](https://github.com/abarghoud/ngx-reactive-form-class-validator)
10061007

10071008
## Release notes
10081009

0 commit comments

Comments
 (0)