@metamask-previews/social-controllers 0.2.0-preview-71e106795 → 1.0.0-preview-d363b2d74

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 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.0]
11
+
12
+ ### Uncategorized
13
+
14
+ - chore: Format changelogs with Oxfmt ([#8442](https://github.com/MetaMask/core/pull/8442))
15
+
10
16
  ### Changed
11
17
 
12
18
  - **BREAKING:** `SocialServiceMessenger` now requires `AuthenticationController:getBearerToken` as an allowed action — all consumers must provide this action via messenger delegation
@@ -45,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
45
51
  - `unfollowTrader` — unfollows traders and removes addresses from state
46
52
  - `updateFollowing` — fetches following list and replaces addresses in state
47
53
 
48
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/social-controllers@0.2.0...HEAD
54
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/social-controllers@1.0.0...HEAD
55
+ [1.0.0]: https://github.com/MetaMask/core/compare/@metamask/social-controllers@0.2.0...@metamask/social-controllers@1.0.0
49
56
  [0.2.0]: https://github.com/MetaMask/core/compare/@metamask/social-controllers@0.1.0...@metamask/social-controllers@0.2.0
50
57
  [0.1.0]: https://github.com/MetaMask/core/releases/tag/@metamask/social-controllers@0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/social-controllers",
3
- "version": "0.2.0-preview-71e106795",
3
+ "version": "1.0.0-preview-d363b2d74",
4
4
  "description": "A collection of social related controllers",
5
5
  "keywords": [
6
6
  "Ethereum",
@@ -44,8 +44,8 @@
44
44
  "build:docs": "typedoc",
45
45
  "changelog:update": "../../scripts/update-changelog.sh @metamask/social-controllers",
46
46
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/social-controllers",
47
- "messenger-action-types:check": "tsx ../../packages/messenger-cli/src/cli.ts --check",
48
- "messenger-action-types:generate": "tsx ../../packages/messenger-cli/src/cli.ts --generate",
47
+ "messenger-action-types:check": "tsx ../../packages/messenger-cli/src/cli.ts --formatter oxfmt --check",
48
+ "messenger-action-types:generate": "tsx ../../packages/messenger-cli/src/cli.ts --formatter oxfmt --generate",
49
49
  "since-latest-release": "../../scripts/since-latest-release.sh",
50
50
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
51
51
  "test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",