Skip to content

Commit

Permalink
Update dependencies version (#499)
Browse files Browse the repository at this point in the history
Signed-off-by: Himalayan Dev <kipkap1001@gmail.com>
  • Loading branch information
himalayan-dev authored Jul 12, 2024
1 parent 2b3b516 commit e5042e0
Show file tree
Hide file tree
Showing 9 changed files with 515 additions and 241 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-metamask-snaps",
"version": "0.4.2",
"version": "0.5.0",
"description": "A collection of Hedera related Metamask snaps that expose and utilize Hedera functionality inside Metamask",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion packages/hedera-wallet-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap-monorepo",
"version": "0.4.2",
"version": "0.5.0",
"private": true,
"description": "Hedera Wallet Snap unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"homepage": "https://github.com/hashgraph/hedera-metamask-snaps#readme",
Expand Down
22 changes: 11 additions & 11 deletions packages/hedera-wallet-snap/packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap-site",
"version": "0.4.2",
"version": "0.5.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
Expand All @@ -25,13 +25,13 @@
]
},
"dependencies": {
"@hashgraph/sdk": "^2.45.0",
"@metamask/providers": "^16.1.0",
"@hashgraph/sdk": "^2.48.1",
"@metamask/providers": "^17.1.0",
"bignumber.js": "^9.1.2",
"bootstrap": "^5.3.3",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-select": "^5.8.0",
Expand All @@ -44,9 +44,9 @@
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/bootstrap": "^5.2.10",
"@types/jest": "^29.5.12",
Expand All @@ -64,17 +64,17 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "28.3.0",
"eslint-plugin-jsdoc": "^48.2.7",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-n": "17.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gatsby": "^5.13.6",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"prettier": "^3.2.5",
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
"typescript": "^5.5.3"
}
}
}
19 changes: 19 additions & 0 deletions packages/hedera-wallet-snap/packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.5.0](https://github.com/hashgraph/hedera-metamask-snaps/compare/v0.5.0...v0.5.0) (2024-07-12)

### :page_with_curl: Documentation

- Refer to the [Hedera Wallet Snap Wiki](https://docs.tuum.tech/hedera-wallet-snap/) for more info on how the snap works and how to integrate it into your own application.

### :rocket: Features

- [Added a new API to create a new topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/486)
- [Added a new API to update a topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/487)
- [Added a new API to submit message to a topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/488)
- [Added a new API to delete a topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/489)
- [Added a new API to get info about the topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/490)
- [Added a new API to get messages from a topic](https://github.com/hashgraph/hedera-metamask-snaps/issues/490)
- Updated the dependencies
- Further optimized the code

### :bug: Bug Fixes

## [0.4.2](https://github.com/hashgraph/hedera-metamask-snaps/compare/v0.4.2...v0.4.2) (2024-06-10)

### :page_with_curl: Documentation
Expand Down
24 changes: 12 additions & 12 deletions packages/hedera-wallet-snap/packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-wallet-snap",
"version": "0.4.2",
"version": "0.5.0",
"description": "Hedera Wallet Snap unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"keywords": [
"MetaMask",
Expand Down Expand Up @@ -44,13 +44,13 @@
"test:ci": "yarn test --silent"
},
"dependencies": {
"@hashgraph/sdk": "^2.45.0",
"@hashgraph/sdk": "^2.48.1",
"@metamask/key-tree": "^9.1.1",
"@metamask/providers": "^16.1.0",
"@metamask/rpc-errors": "^6.2.1",
"@metamask/snaps-sdk": "^4.3.0",
"@metamask/providers": "^17.1.0",
"@metamask/rpc-errors": "^6.3.1",
"@metamask/snaps-sdk": "^6.0.0",
"bignumber.js": "^9.1.2",
"ethers": "^6.12.1",
"ethers": "^6.13.1",
"lodash": "^4.17.21",
"normalize-url": "^8.0.1"
},
Expand All @@ -61,8 +61,8 @@
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@metamask/snaps-cli": "^6.2.0",
"@metamask/snaps-jest": "^8.1.0",
"@metamask/snaps-cli": "^6.2.1",
"@metamask/snaps-jest": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/lodash.clonedeep": "^4.5.9",
"@types/normalize-url": "^4.2.0",
Expand All @@ -72,7 +72,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "28.3.0",
"eslint-plugin-jsdoc": "^48.2.7",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-n": "17.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
Expand All @@ -81,12 +81,12 @@
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"lodash.clonedeep": "^4.5.0",
"prettier": "^3.2.5",
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
"typescript": "^5.5.3"
},
"packageManager": "yarn@3.2.1",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/hedera-wallet-snap/packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "0.4.2",
"version": "0.5.0",
"description": "Hedera Wallet unlocks wallet functionality via Metamask that any other apps can interact with, thereby turning Metamask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.",
"proposedName": "Hedera Wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/hedera-metamask-snaps.git"
},
"source": {
"shasum": "6PgvO96LR3ZtP9urKh7E8qflB9X6zL+gGmWoiTWJOYo=",
"shasum": "wPtBfj/zGpc4NTgR3uyRfnaof6MgOTLAEDnp1BnztdM=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
14 changes: 6 additions & 8 deletions packages/hedera-wallet-snap/packages/snap/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,14 +666,12 @@ export const onUpdate: OnUpdateHandler = async () => {
content: panel([
heading('Thank you for updating Hedera Wallet Snap'),
text('New features added in this version:'),
text('🚀 Added new APIs to create/update/delete a smart contract'),
text('🚀 Added a new API to call a smart contract function'),
text(
'🚀 Added a new API to execute ethereum transaction on Hedera network',
),
text('🚀 Added a new API to get smart contract function'),
text('🚀 Added a new API to get smart contract bytecode'),
text('🚀 Added a new API to get smart contract info'),
text('🚀 Added a new API to create a new topic'),
text('🚀 Added a new API to update a topic'),
text('🚀 Added a new API to submit a message to a topic'),
text('🚀 Added a new API to get topic info'),
text('🚀 Added a new API to get topic messages'),
text('🚀 Added a new API to delete a topic'),
]),
},
});
Expand Down
Loading

0 comments on commit e5042e0

Please sign in to comment.