reactor-feature-toggle 5.0.0 → 6.0.0
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 +9 -2
- package/README.md +0 -1
- package/dist/umd/reactor-feature-toggle.min.js.gz +0 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased][]
|
|
9
9
|
|
|
10
|
+
## [6.0.0][] - 2025-12-04
|
|
11
|
+
|
|
12
|
+
### Updated
|
|
13
|
+
|
|
14
|
+
- Updating peerDependencies to accept react and react-dom >= v16
|
|
15
|
+
|
|
10
16
|
## [5.0.0][] - 2020-07-20
|
|
11
17
|
|
|
12
18
|
### Updated
|
|
@@ -163,5 +169,6 @@ And pass `featureName` prop with `!` prefix to keep the same behavior on WebApp
|
|
|
163
169
|
[4.0.5]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v4.0.5
|
|
164
170
|
|
|
165
171
|
|
|
166
|
-
[Unreleased]: https://github.com/willmendesneto/reactor-feature-toggle/compare/
|
|
167
|
-
[
|
|
172
|
+
[Unreleased]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v6.0.0...HEAD
|
|
173
|
+
[6.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v5.0.0...v6.0.0
|
|
174
|
+
[5.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v5.0.0
|
package/README.md
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactor-feature-toggle",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Your module to handle with feature toggles in ReactJS applications easier",
|
|
5
5
|
"author": "Will Mendes <willmendesneto@gmail.com> (http://github.com/willmendesneto)",
|
|
6
6
|
"keywords": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"feature-toggle-service": "^6.0.0",
|
|
58
|
-
"tslib": "^2.
|
|
58
|
+
"tslib": "^2.3.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@babel/cli": "^7.5.5",
|
|
@@ -106,8 +106,8 @@
|
|
|
106
106
|
"version-changelog": "^3.1.1"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
|
-
"react": "
|
|
110
|
-
"react-dom": "
|
|
109
|
+
"react": ">=16.8.0",
|
|
110
|
+
"react-dom": ">=16.8.0"
|
|
111
111
|
},
|
|
112
112
|
"bundlesize": [
|
|
113
113
|
{
|