Skip to content

Commit c366f2e

Browse files
fix: pin all dependency versions to exact versions
1 parent 5ebb52e commit c366f2e

3 files changed

Lines changed: 493 additions & 732 deletions

File tree

docs/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [1.1.28] - Current
5+
## [1.1.29] - Current
6+
7+
### Changed
8+
9+
- **Pin all dependency versions**: Removed `^` range prefixes from all `dependencies` and `devDependencies` to use exact versions, preventing unexpected breaking changes from transitive updates. `peerDependencies` retain ranges for consumer flexibility.
10+
11+
## [1.1.28]
612

713
- **APIHelper.createGitHubRepoWithFile**: Ensure file creation happens after repository creation.
814

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@red-hat-developer-hub/e2e-test-utils",
3-
"version": "1.1.28",
3+
"version": "1.1.29",
44
"description": "Test utilities for RHDH E2E tests",
55
"license": "Apache-2.0",
66
"repository": {
@@ -89,37 +89,37 @@
8989
"@playwright/test": "^1.57.0"
9090
},
9191
"devDependencies": {
92-
"@backstage/catalog-model": "1.7.5",
93-
"@playwright/test": "1.57.0",
92+
"@backstage/catalog-model": "1.7.7",
93+
"@playwright/test": "1.59.1",
9494
"@types/fs-extra": "11.0.4",
9595
"@types/js-yaml": "4.0.9",
9696
"@types/lodash.clonedeepwith": "4.5.9",
9797
"@types/lodash.mergewith": "4.6.9",
98-
"@types/node": "24.10.1",
98+
"@types/node": "25.5.2",
9999
"@types/proper-lockfile": "4.1.4",
100100
"husky": "9.1.7",
101-
"lint-staged": "15.4.3",
102-
"markdown-link-check": "3.13.6"
101+
"lint-staged": "16.4.0",
102+
"markdown-link-check": "3.14.2"
103103
},
104104
"dependencies": {
105-
"@axe-core/playwright": "4.11.0",
106-
"@backstage-community/plugin-rbac-common": "1.23.0",
107-
"@eslint/js": "9.39.1",
105+
"@axe-core/playwright": "4.11.1",
106+
"@backstage-community/plugin-rbac-common": "1.26.0",
107+
"@eslint/js": "10.0.1",
108108
"@keycloak/keycloak-admin-client": "26.5.6",
109109
"@kubernetes/client-node": "1.4.0",
110-
"eslint": "9.39.1",
110+
"eslint": "10.2.0",
111111
"eslint-plugin-check-file": "3.3.1",
112-
"eslint-plugin-playwright": "2.4.0",
113-
"fs-extra": "11.3.2",
112+
"eslint-plugin-playwright": "2.10.1",
113+
"fs-extra": "11.3.4",
114114
"js-yaml": "4.1.1",
115115
"lodash.clonedeepwith": "4.5.0",
116116
"lodash.mergewith": "4.6.2",
117-
"otplib": "12.0.1",
118-
"prettier": "3.7.4",
117+
"otplib": "13.4.0",
118+
"prettier": "3.8.1",
119119
"proper-lockfile": "4.1.2",
120-
"typescript": "5.9.3",
121-
"typescript-eslint": "8.48.1",
120+
"typescript": "6.0.2",
121+
"typescript-eslint": "8.58.1",
122122
"zx": "8.8.5"
123123
},
124-
"packageManager": "yarn@3.8.7"
124+
"packageManager": "yarn@4.12.0"
125125
}

0 commit comments

Comments
 (0)