Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 21, 2024
1 parent 4d8a2d7 commit 639e256
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"packages/starknet-snap": "2.7.0",
"packages/wallet-ui": "1.21.0"
"packages/starknet-snap": "2.8.0",
"packages/wallet-ui": "1.22.0",
"packages/get-starknet": "1.0.0"
}
17 changes: 17 additions & 0 deletions packages/get-starknet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## 1.0.0 (2024-06-21)


### Features

* add get starknet package ([#186](https://github.com/Consensys/starknet-snap/issues/186)) ([c44c00d](https://github.com/Consensys/starknet-snap/commit/c44c00d3340191d4b276579556c613308c32cc1d))
* Enable Local Testing of Webpack Federation Module (get-starknet remoteEntry.js) ([#249](https://github.com/Consensys/starknet-snap/issues/249)) ([b06f9f2](https://github.com/Consensys/starknet-snap/commit/b06f9f26e6fa5be001075d128032064444990c17))
* sf-640 revamp cicd workflow ([#255](https://github.com/Consensys/starknet-snap/issues/255)) ([6faaf02](https://github.com/Consensys/starknet-snap/commit/6faaf024bd0b8112e5cea930a2bf8aad564a9454))
* show upgrade dialog on get-starknet calls ([#247](https://github.com/Consensys/starknet-snap/issues/247)) ([4d8a2d7](https://github.com/Consensys/starknet-snap/commit/4d8a2d7948459033c91991c357f3fe2f620fe46b))


### Bug Fixes

* get-starknet execute txn not working in firefox ([#242](https://github.com/Consensys/starknet-snap/issues/242)) ([634152d](https://github.com/Consensys/starknet-snap/commit/634152d885e14d5c41e2caabfd8f45337bbb66c4))
* resolve issue in cicd pipeline ([#258](https://github.com/Consensys/starknet-snap/issues/258)) ([35f21e6](https://github.com/Consensys/starknet-snap/commit/35f21e6da20e69420bc8763fd5a4a84f192fbc87))
15 changes: 15 additions & 0 deletions packages/starknet-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Changelog


## [2.8.0](https://github.com/Consensys/starknet-snap/compare/starknet-snap-v2.7.0...starknet-snap-v2.8.0) (2024-06-21)


### Features

* add waiting mode for create account ([#251](https://github.com/Consensys/starknet-snap/issues/251)) ([0c91142](https://github.com/Consensys/starknet-snap/commit/0c911420595193672885d97d12769570a96316ce))
* cairo 1 support ([#202](https://github.com/Consensys/starknet-snap/issues/202)) ([c5e36e9](https://github.com/Consensys/starknet-snap/commit/c5e36e9a6f3c63155d990bf519cd6af6eb3cd006))
* sf-640 revamp cicd workflow ([#255](https://github.com/Consensys/starknet-snap/issues/255)) ([6faaf02](https://github.com/Consensys/starknet-snap/commit/6faaf024bd0b8112e5cea930a2bf8aad564a9454))
* show upgrade dialog on get-starknet calls ([#247](https://github.com/Consensys/starknet-snap/issues/247)) ([4d8a2d7](https://github.com/Consensys/starknet-snap/commit/4d8a2d7948459033c91991c357f3fe2f620fe46b))


### Bug Fixes

* ensure account deployment for executTxn in get-starknet ([#250](https://github.com/Consensys/starknet-snap/issues/250)) ([c98f2c7](https://github.com/Consensys/starknet-snap/commit/c98f2c74f5983736dedb960a5bf2ce57d9a3f99c))

## [2.7.0](https://github.com/Consensys/starknet-snap/compare/starknet-snap-v2.6.2...starknet-snap-v2.7.0) (2024-05-01)


Expand Down
28 changes: 23 additions & 5 deletions packages/starknet-snap/openrpc/starknet_snap_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "2.7.0",
"version": "2.8.0",
"title": "Starknet MetaMask Snap API",
"license": {}
},
Expand Down Expand Up @@ -1366,7 +1366,12 @@
"properties": {
"type": {
"type": "string",
"enum": ["DECLARE", "DEPLOY", "DEPLOY_ACCOUNT", "INVOKE_FUNCTION"]
"enum": [
"DECLARE",
"DEPLOY",
"DEPLOY_ACCOUNT",
"INVOKE_FUNCTION"
]
},
"payload": {
"$ref": "#/components/schemas/INVOCATION_PAYLOAD"
Expand Down Expand Up @@ -1452,17 +1457,30 @@
},
"TXN_STATUS": {
"type": "string",
"enum": ["UNKNOWN", "RECEIVED", "PENDING", "ACCEPTED_ON_L2", "ACCEPTED_ON_L1", "REJECTED"],
"enum": [
"UNKNOWN",
"RECEIVED",
"PENDING",
"ACCEPTED_ON_L2",
"ACCEPTED_ON_L1",
"REJECTED"
],
"description": "The status of the transaction. May be unknown in case node is not aware of it"
},
"VOYAGER_TXN_TYPE": {
"type": "string",
"enum": ["invoke", "deploy"],
"enum": [
"invoke",
"deploy"
],
"description": "The txn type of the transaction from Voyager. May not be a full list here and subject to change"
},
"VOYAGER_TXN_STATUS": {
"type": "string",
"enum": ["Accepted on L2", "Accepted on L1"],
"enum": [
"Accepted on L2",
"Accepted on L1"
],
"description": "The status of the transaction. May be unknown in case node is not aware of it"
},
"TYPED_DATA_SIGNATURE": {
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@consensys/starknet-snap",
"version": "2.7.0",
"version": "2.8.0",
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.7.0",
"version": "2.8.0",
"description": "Manage Starknet accounts and assets with MetaMask.",
"proposedName": "Starknet",
"repository": {
Expand Down
14 changes: 14 additions & 0 deletions packages/wallet-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.


## [1.22.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.21.0...wallet-ui-v1.22.0) (2024-06-21)


### Features

* cairo 1 support ([#202](https://github.com/Consensys/starknet-snap/issues/202)) ([c5e36e9](https://github.com/Consensys/starknet-snap/commit/c5e36e9a6f3c63155d990bf519cd6af6eb3cd006))
* Enable Local Testing of Webpack Federation Module (get-starknet remoteEntry.js) ([#249](https://github.com/Consensys/starknet-snap/issues/249)) ([b06f9f2](https://github.com/Consensys/starknet-snap/commit/b06f9f26e6fa5be001075d128032064444990c17))
* sf-640 revamp cicd workflow ([#255](https://github.com/Consensys/starknet-snap/issues/255)) ([6faaf02](https://github.com/Consensys/starknet-snap/commit/6faaf024bd0b8112e5cea930a2bf8aad564a9454))


### Bug Fixes

* sf 639 update contract upgrade message ([#256](https://github.com/Consensys/starknet-snap/issues/256)) ([9decd4b](https://github.com/Consensys/starknet-snap/commit/9decd4b9c52a7b84951ea81658f77f1532ca2522))

## [1.21.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.20.0...wallet-ui-v1.21.0) (2024-04-05)


Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallet-ui",
"version": "1.21.0",
"version": "1.22.0",
"private": true,
"license": "(Apache-2.0 OR MIT)",
"homepage": "/starknet",
Expand Down

0 comments on commit 639e256

Please sign in to comment.