@newskit-render/feature-flags 0.5.0 → 0.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +18 -18
package/CHANGELOG.md CHANGED
@@ -3,6 +3,47 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.8.1](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/feature-flags@0.8.0...@newskit-render/feature-flags@0.8.1) (2022-01-27)
7
+
8
+ **Note:** Version bump only for package @newskit-render/feature-flags
9
+
10
+
11
+
12
+
13
+
14
+ # [0.8.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/feature-flags@0.7.0...@newskit-render/feature-flags@0.8.0) (2022-01-25)
15
+
16
+
17
+ ### Features
18
+
19
+ * **PPDSR-566:** remove carrot from dependencies ([#572](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/572)) ([a00f25a](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/a00f25a871f023b6008fe06a1391e83328d3ad58))
20
+
21
+
22
+
23
+
24
+
25
+ # [0.7.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/feature-flags@0.6.0...@newskit-render/feature-flags@0.7.0) (2022-01-14)
26
+
27
+
28
+ ### Features
29
+
30
+ * **PPDSR-604:** Add husky & commitlint ([#558](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/558)) ([c67fc76](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/c67fc76276c8607f7604ae6ac0d0cae1ecb5b4f0))
31
+
32
+
33
+
34
+
35
+
36
+ # [0.6.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/feature-flags@0.5.0...@newskit-render/feature-flags@0.6.0) (2022-01-13)
37
+
38
+
39
+ ### Features
40
+
41
+ * **PPDSR-632:** Fix newsletter query ([#559](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/559)) ([38085d1](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/38085d1418bb42237a41b4bad0394fc8cabdf2a4))
42
+
43
+
44
+
45
+
46
+
6
47
  # [0.5.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/feature-flags@0.4.2...@newskit-render/feature-flags@0.5.0) (2022-01-05)
7
48
 
8
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newskit-render/feature-flags",
3
- "version": "0.5.0",
3
+ "version": "0.8.1",
4
4
  "description": "A package for utilizing feature flags for newskit-render consumers, based on optimizely's capabilities.",
5
5
  "author": "",
6
6
  "license": "UNLICENSED",
@@ -17,21 +17,23 @@
17
17
  "test:unit:ci": "JEST_JUNIT_OUTPUT_NAME=feature-flags.xml jest --ci --coverage --reporters=default --reporters=jest-junit"
18
18
  },
19
19
  "devDependencies": {
20
- "@babel/polyfill": "^7.10.1",
21
- "@babel/register": "^7.10.1",
22
- "@types/jest": "^27.0.2",
23
- "@types/react": "^17.0.0",
24
- "@typescript-eslint/eslint-plugin": "^4.9.0",
25
- "@typescript-eslint/parser": "^4.9.0",
26
- "eslint": "^7.14.0",
27
- "eslint-config-prettier": "^6.15.0",
28
- "eslint-plugin-prettier": "^3.2.0",
29
- "jest": "^27.2.4",
30
- "jest-junit": "^12.0.0",
31
- "prettier": "^2.2.1",
20
+ "@babel/polyfill": "7.10.1",
21
+ "@babel/register": "7.10.1",
22
+ "@testing-library/react-hooks": "7.0.2",
23
+ "@types/jest": "27.0.2",
24
+ "@types/react": "17.0.0",
25
+ "@typescript-eslint/eslint-plugin": "4.9.0",
26
+ "@typescript-eslint/parser": "4.9.0",
27
+ "eslint": "7.14.0",
28
+ "eslint-config-prettier": "6.15.0",
29
+ "eslint-plugin-prettier": "3.2.0",
30
+ "eslint-plugin-react": "7.26.1",
31
+ "jest": "27.2.4",
32
+ "jest-junit": "12.0.0",
33
+ "prettier": "2.2.1",
32
34
  "react": "17.0.2",
33
- "react-dom": "^17.0.2",
34
- "ts-jest": "^27.0.5",
35
+ "react-dom": "17.0.2",
36
+ "ts-jest": "27.0.5",
35
37
  "typescript": "4.4.3"
36
38
  },
37
39
  "files": [
@@ -41,8 +43,6 @@
41
43
  "access": "public"
42
44
  },
43
45
  "dependencies": {
44
- "@optimizely/optimizely-sdk": "^4.7.0",
45
- "@testing-library/react-hooks": "^7.0.2",
46
- "eslint-plugin-react": "^7.26.1"
46
+ "@optimizely/optimizely-sdk": "4.7.0"
47
47
  }
48
48
  }