Skip to content

Commit

Permalink
Merge branch 'master' into release-please--branches--master--componen…
Browse files Browse the repository at this point in the history
…ts--filsnap-adapter-react
  • Loading branch information
hugomrdias authored Oct 29, 2024
2 parents bae71db + 371d50d commit bbaef76
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages/snap": "1.1.0",
"packages/adapter": "2.0.1",
"packages/snap": "1.2.0",
"packages/adapter": "2.0.2",
"packages/adapter-react": "2.0.1"
}
7 changes: 7 additions & 0 deletions packages/adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.0.2](https://github.com/filecoin-project/filsnap/compare/filsnap-adapter-v2.0.1...filsnap-adapter-v2.0.2) (2024-10-29)


### Bug Fixes

* support undefined network when not filecoin chain ([d1ed11d](https://github.com/filecoin-project/filsnap/commit/d1ed11d249f753e8854382fef0f6403a5e1e5eae))

## [2.0.1](https://github.com/filecoin-project/filsnap/compare/filsnap-adapter-v2.0.0...filsnap-adapter-v2.0.1) (2024-10-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "filsnap-adapter",
"type": "module",
"version": "2.0.1",
"version": "2.0.2",
"description": "Adapter for installing Filsnap",
"author": "Protocol Labs",
"license": "(Apache-2.0 AND MIT)",
Expand Down
16 changes: 16 additions & 0 deletions packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.2.0](https://github.com/filecoin-project/filsnap/compare/filsnap-v1.1.0...filsnap-v1.2.0) (2024-10-29)


### Features

* add filsnap.dev and glif.io to initialConnections ([53fb49a](https://github.com/filecoin-project/filsnap/commit/53fb49a064407206e80c7ded49c1ee451e848bbb))


### Bug Fixes

* fix account safe return ([b6c4f6a](https://github.com/filecoin-project/filsnap/commit/b6c4f6a25a6d060dffd9f5c8f4437aa8eb27e933))
* fix chain names to avoid metamask warnings ([814317f](https://github.com/filecoin-project/filsnap/commit/814317f1cee92cd40061837ac1e5a6837f4cf108))
* setup internal config on update and default to mainnet ([fd4d8ca](https://github.com/filecoin-project/filsnap/commit/fd4d8ca5de5a4e2bfb42c77f31aff87a13e6686b))
* update dialogs to JSX and some minor improvements to the UI ([18dd299](https://github.com/filecoin-project/filsnap/commit/18dd299f582d554be5d3caf4255f7e4493beaf24))
* update jsx components and mm-snap cli ([ff39df1](https://github.com/filecoin-project/filsnap/commit/ff39df1bb2e311c8c386c6b139832d3379b32bdd))

## [1.1.0](https://github.com/filecoin-project/filsnap/compare/filsnap-v1.0.3...filsnap-v1.1.0) (2024-09-03)


Expand Down
4 changes: 2 additions & 2 deletions packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "filsnap",
"type": "module",
"version": "1.1.0",
"version": "1.2.0",
"description": "Connect to Filecoin dapps using Metamask. Manage Filecoin accounts, send FIL to Native and FEVM accounts and enable FEVM transaction insights.",
"author": "Protocol Labs",
"license": "(Apache-2.0 AND MIT)",
Expand Down Expand Up @@ -50,7 +50,7 @@
"test": "wireit",
"build": "wireit",
"serve": "wireit",
"watch": "pnpm run serve & pnpx onchange -i -k 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}' -- pnpm run test -- --headed"
"watch": "pnpm run serve & onchange -i -k 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}' -- pnpm run test -- --headed -j 1"
},
"wireit": {
"build": {
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
timeout: process.env.CI ? 60 * 1000 : 30 * 1000,
forbidOnly: Boolean(process.env.CI),
retries: process.env.CI ? 2 : undefined,
// workers: process.env.CI ? 1 : undefined,
workers: process.env.CI ? 1 : undefined,
maxFailures: process.env.CI ? 0 : 1,
reporter: process.env.CI ? [['html'], ['list']] : 'list',
use: {
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0",
"version": "1.2.0",
"description": "Enhances MetaMask with native Filecoin address support (e.g. f1 addresses). (Not needed for the Filecoin EVM.)",
"proposedName": "Filecoin Wallet",
"repository": {
Expand Down

0 comments on commit bbaef76

Please sign in to comment.