@heroku/ember-hk-components 1.21.4 → 1.21.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tool-versions +2 -2
- package/CHANGELOG.md +41 -0
- package/README.md +9 -0
- package/package.json +20 -17
- package/pnpm-workspace.yaml +4 -0
package/.tool-versions
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
nodejs
|
|
2
|
-
|
|
1
|
+
nodejs 18.20.8
|
|
2
|
+
pnpm 9.15.7
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
## 1.21.5 (2026-01-26)
|
|
2
|
+
|
|
3
|
+
#### :house: Internal
|
|
4
|
+
* [#281](https://github.com/heroku/ember-hk-components/pull/281) Resolve markdown-it, qs, systeminformation, and weback vulnerabilities ([@kenyaplenty](https://github.com/kenyaplenty))
|
|
5
|
+
* [#279](https://github.com/heroku/ember-hk-components/pull/279) Chore: Update local development setup ([@kenyaplenty](https://github.com/kenyaplenty))
|
|
6
|
+
|
|
7
|
+
#### Committers: 2
|
|
8
|
+
- Kenya ([@kenyaplenty](https://github.com/kenyaplenty))
|
|
9
|
+
- Milad Imen ([@mimen](https://github.com/mimen))
|
|
10
|
+
|
|
11
|
+
## 1.21.3 (2025-11-18)
|
|
12
|
+
|
|
13
|
+
#### :house: Internal
|
|
14
|
+
* [#266](https://github.com/heroku/ember-hk-components/pull/266) Security: Migrate to PNPM and resolve critical vulnerabilities including babel-traverse ([@barretts](https://github.com/barretts))
|
|
15
|
+
* [#262](https://github.com/heroku/ember-hk-components/pull/262) Update to heroku-24 stack
|
|
16
|
+
* [#252](https://github.com/heroku/ember-hk-components/pull/252) Repository maintenance updates
|
|
17
|
+
* [#251](https://github.com/heroku/ember-hk-components/pull/251) Component inventory migration ([@component-inventory-migration-opex](https://github.com/component-inventory-migration-opex))
|
|
18
|
+
|
|
19
|
+
#### :memo: Documentation
|
|
20
|
+
* Updated security documentation with comprehensive vulnerability resolution guide
|
|
21
|
+
* Added `BABEL_TRAVERSE_VULNERABILITY_GUIDE.md` for detailed security mitigation strategies
|
|
22
|
+
|
|
23
|
+
#### :boom: Breaking Change
|
|
24
|
+
* Migrated from Yarn to PNPM for package management
|
|
25
|
+
* Updated `ember-changeset-validations` from `^2.x` to `^4.0.0`
|
|
26
|
+
* Updated `ember-cli-babel` from `^6.x` to `^7.26.11`
|
|
27
|
+
|
|
28
|
+
**Security Improvements:**
|
|
29
|
+
- Resolved critical babel-traverse vulnerability (CVE-2023-45133)
|
|
30
|
+
- Fixed high-severity vulnerabilities in rollup, json5, ansi-html, braces
|
|
31
|
+
- Implemented strategic package resolutions for transitive dependencies
|
|
32
|
+
- Enhanced dependency security through PNPM's stricter resolution
|
|
33
|
+
|
|
34
|
+
**Migration Note:** This version eliminates the babel-traverse vulnerability. Consuming applications should update to this version and run `pnpm install` to benefit from the security fixes.
|
|
35
|
+
|
|
36
|
+
#### Committers: 4
|
|
37
|
+
- Barrett ([@barretts](https://github.com/barretts))
|
|
38
|
+
- Kenya Plenty
|
|
39
|
+
- Jennette Heikes
|
|
40
|
+
- Component Inventory Team
|
|
41
|
+
|
|
1
42
|
## 0.21.2 (2023-02-22)
|
|
2
43
|
|
|
3
44
|
#### :bug: Bug Fix
|
package/README.md
CHANGED
|
@@ -54,6 +54,15 @@ See [ember-hk-components.herokuapp.com](https://ember-hk-components.herokuapp.co
|
|
|
54
54
|
|
|
55
55
|
* `git clone https://github.com/heroku/ember-hk-components`
|
|
56
56
|
* `cd ember-hk-components`
|
|
57
|
+
* Install the required asdf plugins (if not already installed):
|
|
58
|
+
```bash
|
|
59
|
+
asdf plugin add nodejs
|
|
60
|
+
asdf plugin add pnpm
|
|
61
|
+
```
|
|
62
|
+
* Install the correct tool versions:
|
|
63
|
+
```bash
|
|
64
|
+
asdf install
|
|
65
|
+
```
|
|
57
66
|
* `pnpm install`
|
|
58
67
|
|
|
59
68
|
### Running
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heroku/ember-hk-components",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.5",
|
|
4
4
|
"description": "Ember HK Components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -11,19 +11,6 @@
|
|
|
11
11
|
"doc": "doc",
|
|
12
12
|
"test": "tests"
|
|
13
13
|
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "ember build",
|
|
16
|
-
"lint:hbs": "ember-template-lint .",
|
|
17
|
-
"lint:js": "eslint .",
|
|
18
|
-
"lint": "pnpm run lint:js && pnpm run lint:hbs",
|
|
19
|
-
"lint:hbs:fix": "ember-template-lint . --fix",
|
|
20
|
-
"start": "ember server",
|
|
21
|
-
"test": "pnpm run test:ember",
|
|
22
|
-
"test:ember": "ember test",
|
|
23
|
-
"test:ember-compatibility": "ember try:each",
|
|
24
|
-
"changelog": "lerna-changelog",
|
|
25
|
-
"preinstall": "npx only-allow pnpm"
|
|
26
|
-
},
|
|
27
14
|
"dependencies": {
|
|
28
15
|
"@heroku/ember-malibu-icon": "^1.6.0",
|
|
29
16
|
"body-scroll-lock": "^3.1.5",
|
|
@@ -75,7 +62,7 @@
|
|
|
75
62
|
"qunit": "^2.19.3",
|
|
76
63
|
"qunit-dom": "^2.0.0",
|
|
77
64
|
"sass": "1.57.1",
|
|
78
|
-
"webpack": "5.
|
|
65
|
+
"webpack": "^5.94.0"
|
|
79
66
|
},
|
|
80
67
|
"changelog": {
|
|
81
68
|
"repo": "heroku/ember-hk-components",
|
|
@@ -100,6 +87,22 @@
|
|
|
100
87
|
"json5": "^2.2.3",
|
|
101
88
|
"lodash.template": "npm:lodash@^4.17.21",
|
|
102
89
|
"rollup": "^4.50.1",
|
|
103
|
-
"validated-changeset": "1.4.1"
|
|
90
|
+
"validated-changeset": "1.4.1",
|
|
91
|
+
"systeminformation": ">=5.27.14",
|
|
92
|
+
"qs": "^6.14.1",
|
|
93
|
+
"markdown-it-terminal": "0.3.0"
|
|
94
|
+
},
|
|
95
|
+
"scripts": {
|
|
96
|
+
"build": "ember build",
|
|
97
|
+
"lint:hbs": "ember-template-lint .",
|
|
98
|
+
"lint:js": "eslint .",
|
|
99
|
+
"lint": "pnpm run lint:js && pnpm run lint:hbs",
|
|
100
|
+
"lint:hbs:fix": "ember-template-lint . --fix",
|
|
101
|
+
"start": "ember server",
|
|
102
|
+
"test": "pnpm run test:ember",
|
|
103
|
+
"test:ember": "ember test",
|
|
104
|
+
"test:ember-compatibility": "ember try:each",
|
|
105
|
+
"changelog": "lerna-changelog",
|
|
106
|
+
"preinstall": "npx only-allow pnpm"
|
|
104
107
|
}
|
|
105
|
-
}
|
|
108
|
+
}
|