Skip to content

Commit 45e335f

Browse files
Merge branch 'main' into add-osano-silent-script
2 parents e61229c + ffff6a4 commit 45e335f

File tree

21 files changed

+2346
-941
lines changed

21 files changed

+2346
-941
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@ on:
1010
required: true
1111
SENTRY_KEY:
1212
required: true
13-
GF_SURVEY_KEY:
14-
required: true
1513

1614
env:
1715
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_KEY }}
1816
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
1917
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
20-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
2118

2219
jobs:
2320
build:

.github/workflows/case.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,19 @@ on:
1010
required: true
1111
SENTRY_KEY:
1212
required: true
13-
GF_SURVEY_KEY:
14-
required: true
1513

1614
env:
1715
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_KEY }}
1816
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
1917
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
20-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
2118

2219
jobs:
2320
case:
2421
name: Check for case being inconsistent
2522
runs-on: ubuntu-latest
2623
strategy:
2724
matrix:
28-
folder: ["docs"]
25+
folder: ['docs']
2926
permissions:
3027
contents: read
3128
steps:

.github/workflows/lint.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@ on:
1010
required: true
1111
SENTRY_KEY:
1212
required: true
13-
GF_SURVEY_KEY:
14-
required: true
1513

1614
env:
1715
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_KEY }}
1816
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
1917
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
20-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
2118

2219
jobs:
2320
lint:
@@ -36,20 +33,20 @@ jobs:
3633
runs-on: ubuntu-latest
3734
strategy:
3835
matrix:
39-
file-extensions: [".md", ".mdx"]
36+
file-extensions: ['.md', '.mdx']
4037
steps:
4138
- uses: actions/checkout@v4
4239
- name: Vale
4340
uses: Consensys/docs-gha/spelling@main
4441
with:
45-
FILEPATHS: "snaps,services,wallet,developer-tools,docs"
42+
FILEPATHS: 'snaps,services,wallet,developer-tools,docs'
4643

4744
linkCheck:
4845
name: Link Checking
4946
runs-on: ubuntu-latest
5047
strategy:
5148
matrix:
52-
file-extensions: [".md", ".mdx"]
49+
file-extensions: ['.md', '.mdx']
5350
steps:
5451
- uses: actions/checkout@v4
5552
- name: LinkCheck

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_DEV_KEY }}
2727
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
2828
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
29-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
3029

3130
lint:
3231
name: Lint
@@ -35,7 +34,6 @@ jobs:
3534
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_DEV_KEY }}
3635
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
3736
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
38-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
3937

4038
case:
4139
name: Case
@@ -44,7 +42,6 @@ jobs:
4442
SEGMENT_ANALYTICS_KEY: ${{ secrets.SEGMENT_ANALYTICS_DEV_KEY }}
4543
LD_CLIENT_ID: ${{ secrets.LD_CLIENT_ID }}
4644
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
47-
GF_SURVEY_KEY: ${{ secrets.GF_SURVEY_KEY }}
4845

4946
all-jobs-completed:
5047
name: All jobs completed

docs/whats-new.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ The latest major MetaMask documentation updates are listed by the month they wer
99
For a comprehensive list of recent product changes, visit the "Release Notes" section at the bottom
1010
of the [MetaMask developer page](https://metamask.io/developer/).
1111

12+
## April 2025
13+
14+
- Documented [Snaps bundle analyzer option](/snaps/reference/cli/subcommands/#analyze).
15+
([#1955](https://github.com/MetaMask/metamask-docs/pull/1955))
16+
1217
## March 2025
1318

1419
- Added a tutorial for [sending a transaction using Viem](/services/tutorials/ethereum/send-a-transaction/send-a-transaction-viem). ([#1920](https://github.com/MetaMask/metamask-docs/pull/1920))

docusaurus.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ const config = {
4242
VERCEL_ENV: process.env.VERCEL_ENV,
4343
DASHBOARD_URL: process.env.DASHBOARD_URL || 'http://localhost:3000',
4444
SENTRY_KEY: process.env.SENTRY_KEY,
45-
GF_SURVEY_KEY: process.env.GF_SURVEY_KEY,
4645
LINEA_ENS_URL: process.env.LINEA_ENS_URL,
4746
},
4847

@@ -60,8 +59,6 @@ const config = {
6059
defer: true,
6160
'data-domain': 'docs.metamask.io',
6261
},
63-
{ src: '/js/feedback-script.js', defer: true, async: true },
64-
{ src: '/js/getfeedback.js', defer: true, async: true },
6562
],
6663

6764
markdown: {

0 commit comments

Comments
 (0)