Skip to content

Commit 6c03bfc

Browse files
merge: merge pull request
Refs: #176, #183 Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Philip Gerke <me@philipgerke.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cdd2097 commit 6c03bfc

File tree

9 files changed

+1205
-909
lines changed

9 files changed

+1205
-909
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup pnpm
1616
uses: pnpm/action-setup@v4
1717
- name: Setup Node.js
18-
uses: actions/setup-node@v5
18+
uses: actions/setup-node@v6
1919
with:
2020
node-version: lts/*
2121
- name: Restore pnpm store
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup pnpm
4646
uses: pnpm/action-setup@v4
4747
- name: Setup Node.js
48-
uses: actions/setup-node@v5
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version: lts/*
5151
- name: Restore pnpm store

.github/workflows/cache_dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup pnpm
1818
uses: pnpm/action-setup@v4
1919
- name: Setup Node.js
20-
uses: actions/setup-node@v5
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: lts/*
2323
- name: Get pnpm store path

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ jobs:
4040
- name: Setup pnpm
4141
uses: pnpm/action-setup@v4
4242
- name: Setup Node.js
43-
uses: actions/setup-node@v5
43+
uses: actions/setup-node@v6
4444
with:
4545
node-version: lts/*
4646
registry-url: "https://registry.npmjs.org"
47+
- name: Update npm to support OIDC
48+
run: npm install -g npm@^11.5.1
4749
- name: Download artifacts
4850
uses: actions/download-artifact@v5
4951
with:
@@ -53,5 +55,4 @@ jobs:
5355
run: |
5456
pnpm publish ./dist/lib --access public --tag latest;
5557
env:
56-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5758
NPM_CONFIG_PROVENANCE: true

.github/workflows/pr_release_check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
id: extract_version
3434
uses: ./.github/actions/get-version-and-changelog
3535
- name: Find Comment
36-
uses: peter-evans/find-comment@v3
36+
uses: peter-evans/find-comment@v4
3737
id: fc
3838
with:
3939
issue-number: ${{ github.event.pull_request.number }}
4040
comment-author: "github-actions[bot]"
4141
body-includes: "**This PR will"
4242
- name: Comment on PR that a release will be triggered
43-
uses: peter-evans/create-or-update-comment@v4
43+
uses: peter-evans/create-or-update-comment@v5
4444
with:
4545
comment-id: ${{ steps.fc.outputs.comment-id }}
4646
issue-number: ${{ github.event.pull_request.number }}
@@ -66,14 +66,14 @@ jobs:
6666
with:
6767
labels: release
6868
- name: Find Comment
69-
uses: peter-evans/find-comment@v3
69+
uses: peter-evans/find-comment@v4
7070
id: fc
7171
with:
7272
issue-number: ${{ github.event.pull_request.number }}
7373
comment-author: "github-actions[bot]"
7474
body-includes: "**This PR will"
7575
- name: Comment on PR that no release will be triggered
76-
uses: peter-evans/create-or-update-comment@v4
76+
uses: peter-evans/create-or-update-comment@v5
7777
with:
7878
comment-id: ${{ steps.fc.outputs.comment-id }}
7979
issue-number: ${{ github.event.pull_request.number }}

.github/workflows/shared.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup pnpm
2424
uses: pnpm/action-setup@v4
2525
- name: Setup Node.js
26-
uses: actions/setup-node@v5
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version: lts/*
2929
- name: Restore pnpm store
@@ -64,7 +64,7 @@ jobs:
6464
- name: Setup pnpm
6565
uses: pnpm/action-setup@v4
6666
- name: Setup Node.js
67-
uses: actions/setup-node@v5
67+
uses: actions/setup-node@v6
6868
with:
6969
node-version: lts/*
7070
- name: Restore pnpm store
@@ -89,7 +89,7 @@ jobs:
8989
- name: Setup pnpm
9090
uses: pnpm/action-setup@v4
9191
- name: Setup Node.js
92-
uses: actions/setup-node@v5
92+
uses: actions/setup-node@v6
9393
with:
9494
node-version: lts/*
9595
- name: Restore pnpm store

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sonarlint.connectedMode.project": {
3+
"connectionId": "pgerke",
4+
"projectKey": "pgerke_ngx-mat-table-multi-sort"
5+
}
6+
}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [20.3.0] - 20.10.2025
9+
10+
- Bump dependencies
11+
- [#176]: Moved to using a Trusted Publisher instead of a personal access token for library publication
12+
813
## [20.2.0] - 14.09.2025
914

1015
- Bump dependencies
@@ -20,9 +25,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2025

2126
- [#87]: Migrate to Angular 20
2227

23-
[Unreleased]: https://github.com/pgerke/ngx-mat-table-multi-sort/compare/v20.2.0...HEAD
28+
[Unreleased]: https://github.com/pgerke/ngx-mat-table-multi-sort/compare/v20.3.0...HEAD
29+
[20.3.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/20.3.0
2430
[20.2.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/20.2.0
2531
[20.1.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/20.1.0
2632
[20.0.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/20.0.0
33+
[#176]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/176
2734
[#115]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/115
2835
[#87]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/87

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-mat-table-multi-sort",
3-
"version": "20.2.0",
3+
"version": "20.3.0",
44
"preview": false,
55
"scripts": {
66
"ng": "ng",
@@ -41,31 +41,31 @@
4141
"tslib": "^2.8.1"
4242
},
4343
"peerDependencies": {
44-
"@angular/animations": "^20.3.0",
45-
"@angular/cdk": "^20.2.3",
46-
"@angular/common": "^20.3.0",
47-
"@angular/core": "^20.3.0",
48-
"@angular/forms": "^20.3.0",
49-
"@angular/localize": "^20.3.0",
50-
"@angular/material": "^20.2.3",
44+
"@angular/animations": "^20.3.6",
45+
"@angular/cdk": "^20.2.9",
46+
"@angular/common": "^20.3.6",
47+
"@angular/core": "^20.3.6",
48+
"@angular/forms": "^20.3.6",
49+
"@angular/localize": "^20.3.6",
50+
"@angular/material": "^20.2.9",
5151
"rxjs": "^7.8.1",
5252
"zone.js": "^0.15.0"
5353
},
5454
"devDependencies": {
55-
"@angular-eslint/builder": "^20.3.0",
56-
"@angular/build": "^20.3.1",
57-
"@angular/cli": "^20.3.1",
58-
"@angular/compiler": "^20.3.0",
59-
"@angular/compiler-cli": "^20.3.0",
60-
"@angular/platform-browser": "^20.3.0",
61-
"@angular/platform-browser-dynamic": "^20.3.0",
62-
"@eslint/js": "^9.35.0",
63-
"@types/jasmine": "~5.1.9",
64-
"angular-eslint": "^20.3.0",
65-
"eslint": "^9.35.0",
55+
"@angular-eslint/builder": "^20.4.0",
56+
"@angular/build": "^20.3.6",
57+
"@angular/cli": "^20.3.6",
58+
"@angular/compiler": "^20.3.6",
59+
"@angular/compiler-cli": "^20.3.6",
60+
"@angular/platform-browser": "^20.3.6",
61+
"@angular/platform-browser-dynamic": "^20.3.6",
62+
"@eslint/js": "^9.38.0",
63+
"@types/jasmine": "~5.1.12",
64+
"angular-eslint": "^20.4.0",
65+
"eslint": "^9.38.0",
6666
"eslint-config-prettier": "^10.1.8",
6767
"eslint-plugin-prettier": "^5.5.4",
68-
"jasmine-core": "~5.10.0",
68+
"jasmine-core": "~5.12.0",
6969
"karma": "~6.4.4",
7070
"karma-chrome-launcher": "~3.2.0",
7171
"karma-coverage": "~2.2.1",
@@ -75,12 +75,12 @@
7575
"prettier": "3.6.2",
7676
"prettier-eslint": "^16.4.2",
7777
"rimraf": "^6.0.1",
78-
"typescript": "~5.9.2",
79-
"typescript-eslint": "^8.43.0",
78+
"typescript": "~5.9.3",
79+
"typescript-eslint": "^8.46.2",
8080
"zone.js": "^0.15.1"
8181
},
8282
"sideEffects": false,
83-
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706",
83+
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
8484
"pnpm": {
8585
"onlyBuiltDependencies": [
8686
"@parcel/watcher",

0 commit comments

Comments
 (0)