@metamask-previews/shield-controller 1.1.0-preview-fe9b7e4c → 1.2.0-preview-b8454d32

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 +11 -1
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.2.0]
11
+
12
+ ### Changed
13
+
14
+ - fix: Fix build script not working because of missing `@ts-bridge/cli` dependency ([#7040](https://github.com/MetaMask/core/pull/7040))
15
+ - chore(dev-deps): Bump `@ts-bridge/cli` from `^0.6.1` to `^0.6.4` ([#7039](https://github.com/MetaMask/core/pull/7039))
16
+ - Bump `@metamask/transaction-controller` from `61.0.0` to `61.1.0`. ([#7007](https://github.com/MetaMask/core/pull/7007))
17
+ - Bump `@metamask/controller-utils` from `^11.14.1` to `^11.15.0`. ([#7003](https://github.com/MetaMask/core/pull/7003))
18
+
10
19
  ### Fixed
11
20
 
12
21
  - Fixed and optimized initiating shield coverage result for transactions. ([#7036](https://github.com/MetaMask/core/pull/7036))
@@ -109,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109
118
 
110
119
  - Initial release of the shield-controller package ([#6137](https://github.com/MetaMask/core/pull/6137)
111
120
 
112
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@1.1.0...HEAD
121
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@1.2.0...HEAD
122
+ [1.2.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@1.1.0...@metamask/shield-controller@1.2.0
113
123
  [1.1.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@1.0.0...@metamask/shield-controller@1.1.0
114
124
  [1.0.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.4.0...@metamask/shield-controller@1.0.0
115
125
  [0.4.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.3.2...@metamask/shield-controller@0.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/shield-controller",
3
- "version": "1.1.0-preview-fe9b7e4c",
3
+ "version": "1.2.0-preview-b8454d32",
4
4
  "description": "Controller handling shield transaction coverage logic",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -36,15 +36,16 @@
36
36
  ],
37
37
  "scripts": {
38
38
  "build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
39
+ "build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
39
40
  "build:docs": "typedoc",
40
41
  "changelog:update": "../../scripts/update-changelog.sh @metamask/shield-controller",
41
42
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/shield-controller",
42
43
  "publish:preview": "yarn npm publish --tag preview",
44
+ "since-latest-release": "../../scripts/since-latest-release.sh",
43
45
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
44
46
  "test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
45
47
  "test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
46
- "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
47
- "since-latest-release": "../../scripts/since-latest-release.sh"
48
+ "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
48
49
  },
49
50
  "dependencies": {
50
51
  "@metamask/base-controller": "^9.0.0",
@@ -60,7 +61,7 @@
60
61
  "@metamask/auto-changelog": "^3.4.4",
61
62
  "@metamask/signature-controller": "^35.0.0",
62
63
  "@metamask/transaction-controller": "^61.1.0",
63
- "@ts-bridge/cli": "^0.6.1",
64
+ "@ts-bridge/cli": "^0.6.4",
64
65
  "@types/jest": "^27.4.1",
65
66
  "deepmerge": "^4.2.2",
66
67
  "jest": "^27.5.1",