diff --git a/package.json b/package.json index 6e356b9a967..1f5345013a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/controllers-monorepo", - "version": "34.0.0-rc.1", + "version": "34.0.0", "private": true, "description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets", "repository": { diff --git a/packages/address-book-controller/CHANGELOG.md b/packages/address-book-controller/CHANGELOG.md index d6f76241bd4..fcabe3f962f 100644 --- a/packages/address-book-controller/CHANGELOG.md +++ b/packages/address-book-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/user/AddressBookController.ts` - `src/user/AddressBookController.test.ts` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/address-book-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/address-book-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/address-book-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/address-book-controller@1.0.0 diff --git a/packages/address-book-controller/package/CHANGELOG.md b/packages/address-book-controller/package/CHANGELOG.md new file mode 100644 index 00000000000..6afa80d26d5 --- /dev/null +++ b/packages/address-book-controller/package/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +[Unreleased]: https://github.com/MetaMask/controllers/ diff --git a/packages/address-book-controller/package/LICENSE b/packages/address-book-controller/package/LICENSE new file mode 100644 index 00000000000..ddfbecf9020 --- /dev/null +++ b/packages/address-book-controller/package/LICENSE @@ -0,0 +1,20 @@ +MIT License + +Copyright (c) 2018 MetaMask + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE diff --git a/packages/address-book-controller/package/README.md b/packages/address-book-controller/package/README.md new file mode 100644 index 00000000000..dbb6108c731 --- /dev/null +++ b/packages/address-book-controller/package/README.md @@ -0,0 +1,15 @@ +# `@metamask/address-book-controller` + +Manages a list of recipient addresses associated with nicknames. + +## Installation + +`yarn add @metamask/address-book-controller` + +or + +`npm install @metamask/address-book-controller` + +## Contributing + +This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/controllers#readme). diff --git a/packages/address-book-controller/package/package.json b/packages/address-book-controller/package/package.json new file mode 100644 index 00000000000..1814f3a0851 --- /dev/null +++ b/packages/address-book-controller/package/package.json @@ -0,0 +1,50 @@ +{ + "name": "@metamask/address-book-controller", + "version": "0.0.0", + "description": "Manages a list of recipient addresses associated with nicknames", + "keywords": [ + "MetaMask", + "Ethereum" + ], + "homepage": "https://github.com/MetaMask/controllers/tree/main/packages/address-book-controller#readme", + "bugs": { + "url": "https://github.com/MetaMask/controllers/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/controllers.git" + }, + "license": "MIT", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": [ + "dist/" + ], + "scripts": { + "build:docs": "typedoc", + "changelog:validate": "../../scripts/validate-changelog.sh @metamask/address-book-controller", + "test": "jest", + "test:watch": "jest --watch" + }, + "dependencies": { + "@metamask/base-controller": "../base-controller/package.tgz", + "@metamask/controller-utils": "../controller-utils/package.tgz" + }, + "devDependencies": { + "@metamask/auto-changelog": "^3.0.0", + "@types/jest": "^26.0.22", + "deepmerge": "^4.2.2", + "jest": "^26.4.2", + "ts-jest": "^26.5.2", + "typedoc": "^0.22.15", + "typedoc-plugin-missing-exports": "^0.22.6", + "typescript": "~4.6.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + } +} \ No newline at end of file diff --git a/packages/announcement-controller/CHANGELOG.md b/packages/announcement-controller/CHANGELOG.md index 4d637d4745f..4ed78e69922 100644 --- a/packages/announcement-controller/CHANGELOG.md +++ b/packages/announcement-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/announcement` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/announcement-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/announcement-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/announcement-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/announcement-controller@1.0.0 diff --git a/packages/approval-controller/CHANGELOG.md b/packages/approval-controller/CHANGELOG.md index 84a91eeda9a..154d5617716 100644 --- a/packages/approval-controller/CHANGELOG.md +++ b/packages/approval-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/approval` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/approval-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/approval-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/approval-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/approval-controller@1.0.0 diff --git a/packages/assets-controllers/CHANGELOG.md b/packages/assets-controllers/CHANGELOG.md index 144053e2a0a..e84ef308b18 100644 --- a/packages/assets-controllers/CHANGELOG.md +++ b/packages/assets-controllers/CHANGELOG.md @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/assets` - Asset-related functions from `src/util.ts` and accompanying tests @@ -18,5 +18,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/controllers/pull/845)) -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/assets-controllers@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/assets-controllers@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/assets-controllers@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/assets-controllers@1.0.0 diff --git a/packages/assets-controllers/package.json b/packages/assets-controllers/package.json index f7c0616e7e0..5f625e4d553 100644 --- a/packages/assets-controllers/package.json +++ b/packages/assets-controllers/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/assets-controllers", - "version": "1.0.0-rc.1", + "version": "1.0.0", "description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)", "keywords": [ "MetaMask", diff --git a/packages/base-controller/CHANGELOG.md b/packages/base-controller/CHANGELOG.md index bb4f078bdcf..26bf7119d4e 100644 --- a/packages/base-controller/CHANGELOG.md +++ b/packages/base-controller/CHANGELOG.md @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/BaseController.ts` - `src/BaseController.test.ts` @@ -21,5 +21,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/base-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/base-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/base-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/base-controller@1.0.0 diff --git a/packages/composable-controller/CHANGELOG.md b/packages/composable-controller/CHANGELOG.md index a716b931ebd..33501c02611 100644 --- a/packages/composable-controller/CHANGELOG.md +++ b/packages/composable-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/ComposableController.ts` - `src/ComposableController.test.ts` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/composable-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/composable-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/composable-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/composable-controller@1.0.0 diff --git a/packages/controller-utils/CHANGELOG.md b/packages/controller-utils/CHANGELOG.md index 5741947bd6b..e26cb101692 100644 --- a/packages/controller-utils/CHANGELOG.md +++ b/packages/controller-utils/CHANGELOG.md @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/constants.ts` - `src/util.ts` (minus transaction-, assets-, and message manager-related functions) @@ -17,5 +17,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/controller-utils@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/controller-utils@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/controller-utils@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/controller-utils@1.0.0 diff --git a/packages/controller-utils/package/CHANGELOG.md b/packages/controller-utils/package/CHANGELOG.md new file mode 100644 index 00000000000..6afa80d26d5 --- /dev/null +++ b/packages/controller-utils/package/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +[Unreleased]: https://github.com/MetaMask/controllers/ diff --git a/packages/controller-utils/package/LICENSE b/packages/controller-utils/package/LICENSE new file mode 100644 index 00000000000..ddfbecf9020 --- /dev/null +++ b/packages/controller-utils/package/LICENSE @@ -0,0 +1,20 @@ +MIT License + +Copyright (c) 2018 MetaMask + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE diff --git a/packages/controller-utils/package/README.md b/packages/controller-utils/package/README.md new file mode 100644 index 00000000000..0d9ed163340 --- /dev/null +++ b/packages/controller-utils/package/README.md @@ -0,0 +1,15 @@ +# `@metamask/controller-utils` + +Data and convenience functions shared by multiple packages. + +## Installation + +`yarn add @metamask/controller-utils` + +or + +`npm install @metamask/controller-utils` + +## Contributing + +This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/controllers#readme). diff --git a/packages/controller-utils/package/package.json b/packages/controller-utils/package/package.json new file mode 100644 index 00000000000..ea2f0c97260 --- /dev/null +++ b/packages/controller-utils/package/package.json @@ -0,0 +1,57 @@ +{ + "name": "@metamask/controller-utils", + "version": "0.0.0", + "description": "Data and convenience functions shared by multiple packages", + "keywords": [ + "MetaMask", + "Ethereum" + ], + "homepage": "https://github.com/MetaMask/controllers/tree/main/packages/controller-utils#readme", + "bugs": { + "url": "https://github.com/MetaMask/controllers/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/controllers.git" + }, + "license": "MIT", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": [ + "dist/" + ], + "scripts": { + "build:docs": "typedoc", + "changelog:validate": "../../scripts/validate-changelog.sh @metamask/controller-utils", + "test": "jest", + "test:watch": "jest --watch" + }, + "dependencies": { + "@metamask/base-controller": "../base-controller/package.tgz", + "eth-ens-namehash": "^2.0.8", + "eth-rpc-errors": "^4.0.0", + "ethereumjs-util": "^7.0.10", + "ethjs-unit": "^0.1.6", + "fast-deep-equal": "^3.1.3", + "isomorphic-fetch": "^3.0.0" + }, + "devDependencies": { + "@metamask/auto-changelog": "^3.0.0", + "@types/jest": "^26.0.22", + "abort-controller": "^3.0.0", + "deepmerge": "^4.2.2", + "jest": "^26.4.2", + "nock": "^13.0.7", + "ts-jest": "^26.5.2", + "typedoc": "^0.22.15", + "typedoc-plugin-missing-exports": "^0.22.6", + "typescript": "~4.6.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + } +} \ No newline at end of file diff --git a/packages/ens-controller/CHANGELOG.md b/packages/ens-controller/CHANGELOG.md index c66e1908dad..827cef7e441 100644 --- a/packages/ens-controller/CHANGELOG.md +++ b/packages/ens-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/third-party/EnsController.ts` - `src/third-party/EnsController.test.ts` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/ens-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/ens-controller@1.0.0 diff --git a/packages/gas-fee-controller/CHANGELOG.md b/packages/gas-fee-controller/CHANGELOG.md index 72363851497..ca93b2862ef 100644 --- a/packages/gas-fee-controller/CHANGELOG.md +++ b/packages/gas-fee-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/gas` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/gas-fee-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/gas-fee-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/gas-fee-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/gas-fee-controller@1.0.0 diff --git a/packages/keyring-controller/CHANGELOG.md b/packages/keyring-controller/CHANGELOG.md index e2aa8a68925..d9e7c6085b6 100644 --- a/packages/keyring-controller/CHANGELOG.md +++ b/packages/keyring-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/keyring` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/keyring-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/keyring-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/keyring-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/keyring-controller@1.0.0 diff --git a/packages/message-manager/CHANGELOG.md b/packages/message-manager/CHANGELOG.md index 9f92417a2a5..1d13dcba365 100644 --- a/packages/message-manager/CHANGELOG.md +++ b/packages/message-manager/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/message-manager` - Message manager-related functions in `src/util.ts` and accompanying tests All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/message-manager@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/message-manager@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/message-manager@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/message-manager@1.0.0 diff --git a/packages/network-controller/CHANGELOG.md b/packages/network-controller/CHANGELOG.md index 3257825727d..a46382b320a 100644 --- a/packages/network-controller/CHANGELOG.md +++ b/packages/network-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/network` (minus `NetworkType` and `NetworksChainId`, which were placed in `@metamask/controller-utils`) All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/network-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/network-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/network-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/network-controller@1.0.0 diff --git a/packages/notification-controller/CHANGELOG.md b/packages/notification-controller/CHANGELOG.md index d4cc5e9997b..660c37cacb8 100644 --- a/packages/notification-controller/CHANGELOG.md +++ b/packages/notification-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/notification` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/notification-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/notification-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/notification-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/notification-controller@1.0.0 diff --git a/packages/permission-controller/CHANGELOG.md b/packages/permission-controller/CHANGELOG.md index f89e9f1dc3b..6e7160ef7ce 100644 --- a/packages/permission-controller/CHANGELOG.md +++ b/packages/permission-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/permissions` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/permission-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/permission-controller@1.0.0 diff --git a/packages/phishing-controller/CHANGELOG.md b/packages/phishing-controller/CHANGELOG.md index 74e38276a08..0fb38ffad6f 100644 --- a/packages/phishing-controller/CHANGELOG.md +++ b/packages/phishing-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/third-party/PhishingController.ts` - `src/third-party/PhishingController.test.ts` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/phishing-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/phishing-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/phishing-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/phishing-controller@1.0.0 diff --git a/packages/preferences-controller/CHANGELOG.md b/packages/preferences-controller/CHANGELOG.md index 819fe8b3cb0..3a91e520c34 100644 --- a/packages/preferences-controller/CHANGELOG.md +++ b/packages/preferences-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - `src/user/PreferencesController.ts` (plus `ContactEntry` copied from `src/user/AddressBookController.ts`) - `src/user/PreferencesController.test.ts` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/preferences-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/preferences-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/preferences-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/preferences-controller@1.0.0 diff --git a/packages/rate-limit-controller/CHANGELOG.md b/packages/rate-limit-controller/CHANGELOG.md index c8206675017..0bffc856d36 100644 --- a/packages/rate-limit-controller/CHANGELOG.md +++ b/packages/rate-limit-controller/CHANGELOG.md @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/ratelimit` All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/rate-limit-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/rate-limit-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/rate-limit-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/rate-limit-controller@1.0.0 diff --git a/packages/subject-metadata-controller/CHANGELOG.md b/packages/subject-metadata-controller/CHANGELOG.md index 9693a70b8ba..649a1554639 100644 --- a/packages/subject-metadata-controller/CHANGELOG.md +++ b/packages/subject-metadata-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/subject-metadata` All changes listed after this point were applied to this package following the monorepo conversion. - Add method to get subject metadata by origin ([#950](https://github.com/MetaMask/controllers/pull/950)) -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/subject-metadata-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/subject-metadata-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/subject-metadata-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/subject-metadata-controller@1.0.0 diff --git a/packages/transaction-controller/CHANGELOG.md b/packages/transaction-controller/CHANGELOG.md index d09d879c31b..20b86c1a999 100644 --- a/packages/transaction-controller/CHANGELOG.md +++ b/packages/transaction-controller/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-rc.1] +## [1.0.0] ### Added -- Initial release candidate +- Initial release - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely: - Everything in `src/transaction` - Transaction-related functions from `src/util.ts` and accompanying tests All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/transaction-controller@1.0.0-rc.1...HEAD -[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/transaction-controller@1.0.0-rc.1 +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/transaction-controller@1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/transaction-controller@1.0.0