ember-freestyle 0.23.0 → 0.23.1
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/CHANGELOG.md +10 -0
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
|
|
11
|
+
## v0.23.1 (2026-04-21)
|
|
12
|
+
|
|
13
|
+
#### :house: Internal
|
|
14
|
+
* [#1027](https://github.com/chrislopresto/ember-freestyle/pull/1027) Fix CI: pin testem and tolerate beta/canary Ember 7 breakage ([@lukemelia](https://github.com/lukemelia))
|
|
15
|
+
* [#1026](https://github.com/chrislopresto/ember-freestyle/pull/1026) Widen @ember/string peer dep and add modern ember-try scenarios ([@lukemelia](https://github.com/lukemelia))
|
|
16
|
+
|
|
17
|
+
#### Committers: 1
|
|
18
|
+
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
19
|
+
|
|
10
20
|
## v0.23.0 (2026-03-22)
|
|
11
21
|
|
|
12
22
|
#### :rocket: Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-freestyle",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.1",
|
|
4
4
|
"description": "Create a living styleguide for your Ember app.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -138,7 +138,12 @@
|
|
|
138
138
|
"webpack": "^5.76.0"
|
|
139
139
|
},
|
|
140
140
|
"peerDependencies": {
|
|
141
|
-
"@ember/string": "^3.1.1"
|
|
141
|
+
"@ember/string": "^3.1.1 || ^4.0.0"
|
|
142
|
+
},
|
|
143
|
+
"pnpm": {
|
|
144
|
+
"overrides": {
|
|
145
|
+
"testem": "<3.19.0"
|
|
146
|
+
}
|
|
142
147
|
},
|
|
143
148
|
"engines": {
|
|
144
149
|
"node": ">= 18"
|