Skip to content

Commit 2816378

Browse files
authored
Merge pull request MyEtherWallet#4595 from MyEtherWallet/staging
release: 🔥 v6.7.0-hotfix.2
2 parents 5600a10 + 7e53500 commit 2816378

File tree

15 files changed

+222
-677
lines changed

15 files changed

+222
-677
lines changed

.github/workflows/add-to-codecov.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,11 @@ jobs:
3333

3434
- name: add to codecov
3535
run: |
36-
ci_env='-e GITHUB_ACTION -e GITHUB_REF -e GITHUB_HEAD_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID'
36+
git config --global --add safe.directory '*'
37+
ci_env=`bash <(curl -s https://codecov.io/env)`
3738
docker run $ci_env --rm -v `pwd`:/home:rw mew-build-container /bin/bash -c "npm run codecov"
3839
3940
- name: upload to codecov
40-
uses: codecov/codecov-action@v1
41+
uses: codecov/codecov-action@v3
4142
with:
4243
fail_ci_if_error: true

.github/workflows/run-on-pr.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ jobs:
3535

3636
- name: add to codecov
3737
run: |
38-
ci_env='-e GITHUB_ACTION -e GITHUB_REF -e GITHUB_HEAD_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID'
38+
git config --global --add safe.directory '*'
39+
ci_env=`bash <(curl -s https://codecov.io/env)`
3940
docker run $ci_env --rm -v `pwd`:/home:rw mew-build-container /bin/bash -c "npm run codecov"
4041
4142
- name: upload to codecov
42-
uses: codecov/codecov-action@v1
43+
uses: codecov/codecov-action@v3
4344
with:
4445
fail_ci_if_error: true

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### Release v6.7.0-hotfix.2
2+
3+
### devop
4+
5+
* sync develop [#4585](https://github.com/MyEtherWallet/MyEtherWallet/pull/4585)
6+
* seo token pages [#4591](https://github.com/MyEtherWallet/MyEtherWallet/pull/4591)
7+
18
### Release v6.7.0-hotfix.1
29

310
### fix

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM node:12-stretch
1+
FROM node:14-buster
22
RUN apt update
33
RUN apt install nasm -y
44
ENV HOME /home
55
ENV NODE_OPTIONS --max-old-space-size=8192
6-
RUN npm install [email protected] -g
6+
RUN npm install npm@^6.14 -g
77
RUN node -v && npm -v
88
COPY package*.json ./
99
COPY package-audit.js ./

builds/liveConfig.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ const exportObj = {
1313
importWorkboxFrom: 'local',
1414
skipWaiting: true,
1515
clientsClaim: true,
16-
navigateFallback: '/index.html'
16+
navigateFallback: '/index.html',
17+
navigateFallbackBlacklist: [/^\/pages/]
1718
}
1819
},
1920
chainWebpack: config => {

connections.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,6 @@ module.exports = [
8686
'https://eth-mainnet.alchemyapi.io:443', // Unstoppable domains
8787
'https://polygon-mainnet.g.alchemy.com:443', // Unstoppable domains
8888
'https://unstoppabledomains.g.alchemy.com:443', // Unstoppable domains
89-
'https://metadata.unstoppabledomains.com:443' // Unstoppable domains
89+
'https://metadata.unstoppabledomains.com:443', // Unstoppable domains
90+
'https://mew-seo-pages.pages.dev:443' //pages
9091
];

0 commit comments

Comments
 (0)