Skip to content

Commit a73e37e

Browse files
authored
build(pnpm): bump dependencies
Ref: #115, #117 Signed-off-by: Philip Gerke <me@philipgerke.com>
1 parent 3b75811 commit a73e37e

File tree

4 files changed

+777
-768
lines changed

4 files changed

+777
-768
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ repos:
2020
- hooks:
2121
- id: gitleaks
2222
repo: https://github.com/gitleaks/gitleaks
23-
rev: v8.27.2
23+
rev: v8.28.0

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+
## [19.8.0] - 22.07.2025
9+
10+
- [#115]: Fix @angular/localize version range
11+
- Bump dependencies
12+
813
## [19.7.1] - 29.06.2025
914

1015
### Fixed
@@ -105,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
105110
- [#2]: Added linter and formatter support
106111
- NO TICKET: Initial bootstrapping
107112

108-
[Unreleased]: https://github.com/pgerke/ngx-mat-table-multi-sort/compare/v19.7.1...HEAD
113+
[Unreleased]: https://github.com/pgerke/ngx-mat-table-multi-sort/compare/v19.8.0...HEAD
114+
[19.8.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.8.0
109115
[19.7.1]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.7.1
110116
[19.7.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.7.0
111117
[19.6.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.6.0
@@ -119,6 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
119125
[19.2.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.2.0
120126
[19.1.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.1.0
121127
[19.0.0]: https://github.com/pgerke/ngx-mat-table-multi-sort/releases/tag/19.0.0
128+
[#115]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/115
122129
[#95]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/95
123130
[#89]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/89
124131
[#74]: https://github.com/pgerke/ngx-mat-table-multi-sort/issues/74

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-mat-table-multi-sort",
3-
"version": "19.7.1",
3+
"version": "19.8.0",
44
"preview": false,
55
"scripts": {
66
"ng": "ng",
@@ -46,7 +46,7 @@
4646
"@angular/common": "^19.2.13",
4747
"@angular/core": "^19.2.13",
4848
"@angular/forms": "^19.2.13",
49-
"@angular/localize": "19.2.14",
49+
"@angular/localize": "^19.2.14",
5050
"@angular/material": "^19.2.19",
5151
"rxjs": "^7.8.1",
5252
"zone.js": "^0.15.0"
@@ -59,13 +59,13 @@
5959
"@angular/compiler-cli": "^19.2.14",
6060
"@angular/platform-browser": "^19.2.14",
6161
"@angular/platform-browser-dynamic": "^19.2.14",
62-
"@eslint/js": "^9.30.0",
62+
"@eslint/js": "^9.31.0",
6363
"@types/jasmine": "~5.1.8",
6464
"angular-eslint": "^19.8.1",
65-
"eslint": "^9.30.0",
66-
"eslint-config-prettier": "^10.1.5",
67-
"eslint-plugin-prettier": "^5.5.1",
68-
"jasmine-core": "~5.8.0",
65+
"eslint": "^9.31.0",
66+
"eslint-config-prettier": "^10.1.8",
67+
"eslint-plugin-prettier": "^5.5.3",
68+
"jasmine-core": "~5.9.0",
6969
"karma": "~6.4.4",
7070
"karma-chrome-launcher": "~3.2.0",
7171
"karma-coverage": "~2.2.1",
@@ -76,11 +76,11 @@
7676
"prettier-eslint": "^16.4.2",
7777
"rimraf": "^6.0.1",
7878
"typescript": "~5.8.3",
79-
"typescript-eslint": "^8.35.0",
79+
"typescript-eslint": "^8.38.0",
8080
"zone.js": "^0.15.1"
8181
},
8282
"sideEffects": false,
83-
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
83+
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
8484
"pnpm": {
8585
"onlyBuiltDependencies": [
8686
"@parcel/watcher",

0 commit comments

Comments
 (0)