@metamask-previews/bitcoin-regtest-up 0.0.0-preview-56b2c8bdd → 1.0.0-preview-eb182b860

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 +8 -13
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,19 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ### Added
11
-
12
- - Add the `@metamask/bitcoin-regtest-up` package ([#9212](https://github.com/MetaMask/core/pull/9212)).
13
-
14
- ### Changed
10
+ ## [1.0.0]
15
11
 
16
- - Replace duplicated installer utilities with `@metamask/local-node-utils` ([#9236](https://github.com/MetaMask/core/pull/9236)).
17
-
18
- ### Fixed
12
+ ### Added
19
13
 
20
- - Parse `.yarnrc.yml` as YAML for global-cache detection, matching `@metamask/foundryup` ([#9212](https://github.com/MetaMask/core/pull/9212)).
21
- - Tolerate a missing `package.json` so flag-only `install` and `cache clean` commands work ([#9212](https://github.com/MetaMask/core/pull/9212)).
22
- - Merge partial `bitcoinCore` overrides from `package.json` with the pinned defaults instead of replacing them ([#9212](https://github.com/MetaMask/core/pull/9212)).
23
- - Propagate child termination signals as a non-zero exit from the generated `bitcoind` and `bitcoin-cli` wrappers ([#9212](https://github.com/MetaMask/core/pull/9212)).
14
+ - Initial release ([#9314](https://github.com/MetaMask/core/pull/9314))
15
+ - Installs a pinned Bitcoin Core runtime for local development and CI
16
+ - Exposes `bitcoin-regtest-up`, `bitcoind`, and `bitcoin-cli` binaries via `node_modules/.bin`
17
+ - Uses `@metamask/local-node-utils` for cache resolution, downloads, and executable wrappers
24
18
 
25
- [Unreleased]: https://github.com/MetaMask/core/
19
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bitcoin-regtest-up@1.0.0...HEAD
20
+ [1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/bitcoin-regtest-up@1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/bitcoin-regtest-up",
3
- "version": "0.0.0-preview-56b2c8bdd",
3
+ "version": "1.0.0-preview-eb182b860",
4
4
  "description": "Bitcoin Core regtest runtime installer for MetaMask E2E tests",
5
5
  "keywords": [
6
6
  "Ethereum",
@@ -54,7 +54,7 @@
54
54
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
55
55
  },
56
56
  "dependencies": {
57
- "@metamask/local-node-utils": "^0.0.0"
57
+ "@metamask/local-node-utils": "^1.0.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@metamask/auto-changelog": "^6.1.0",