Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 1 vulnerabilities #2348

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changeLogs/09277.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- 优化 Swap 报价展示
- Send Max 时支持选择预留 gas 费用
2 changes: 2 additions & 0 deletions changeLogs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ import version09272 from './09272.md';
import version09273 from './09273.md';
import version09274 from './09274.md';
import version09276 from './09276.md';
import version09277 from './09277.md';

const version = process.env.release || '0';
const versionMap = {
Expand Down Expand Up @@ -168,6 +169,7 @@ const versionMap = {
'0.92.73': version09273,
'0.92.74': version09274,
'0.92.76': version09276,
'0.92.77': version09277,
};
export const getUpdateContent = () => {
return versionMap[version];
Expand Down
2 changes: 2 additions & 0 deletions changeLogs/zh-CN/09277.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Optimized swap rates display.
- Added the option to reserve gas when sending maximum tokens.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rabby",
"version": "0.92.76",
"version": "0.92.77",
"description": "A browser plugin for DeFi users",
"scripts": {
"clean": "mkdir -p dist && rm -rf dist/*",
Expand All @@ -22,7 +22,7 @@
"postinstall": "patch-package && npm run sync-chain"
},
"dependencies": {
"@coinbase/wallet-sdk": "3.8.0-beta.3",
"@coinbase/wallet-sdk": "3.9.0",
"@debank/common": "0.3.60",
"@debank/festats": "1.0.1",
"@dnd-kit/core": "5.0.1",
Expand Down Expand Up @@ -94,7 +94,7 @@
"eth-rpc-errors": "4.0.3",
"eth-sig-util": "3.0.1",
"ethereumjs-util": "7.1.2",
"ethers": "5.4.2",
"ethers": "6.0.0",
"events": "3.3.0",
"hdkey": "0.8.0",
"https-browserify": "1.0.0",
Expand Down Expand Up @@ -138,7 +138,7 @@
"ts-toolbelt": "9.6.0",
"url": "0.11.3",
"uuid": "9.0.0",
"viem": "2.9.4",
"viem": "2.15.1",
"web3-eth-abi": "1.7.0",
"web3-utils": "1.7.0",
"webextension-polyfill": "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion src/manifest/mv2/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "0.92.76",
"version": "0.92.77",
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest/mv3/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "0.92.76",
"version": "0.92.77",
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
Expand Down
Loading