Skip to content

Commit 5aa9d1e

Browse files
author
Tyschenko
committed
feat: Updated publishing job and changelog
1 parent 9e3491e commit 5aa9d1e

File tree

2 files changed

+39
-10
lines changed

2 files changed

+39
-10
lines changed

.github/workflows/publish-release.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Publish Release
22

33
on:
4-
release:
5-
types: [published]
64
workflow_dispatch:
75

86
jobs:
@@ -27,24 +25,24 @@ jobs:
2725
retention-days: 4
2826
path: |
2927
./packages/**/dist
30-
./node_modules/.yarn-state.yml
28+
./node_modules/.yarn-integrity
3129
32-
publish-npm-dry-run:
33-
name: Dry run publish to NPM
30+
publish-npm:
31+
name: Publish to NPM
32+
environment: npm-publish
3433
runs-on: ubuntu-latest
3534
needs: publish-release
36-
3735
steps:
3836
- name: Checkout and setup environment
3937
uses: MetaMask/action-checkout-and-setup@v1
4038
with:
4139
is-high-risk-environment: true
4240
ref: ${{ github.sha }}
43-
4441
- name: Restore build artifacts
4542
uses: actions/download-artifact@v4
4643
with:
4744
name: publish-release-artifacts-${{ github.sha }}
48-
49-
- name: Dry run publish to NPM
45+
- name: Publish to NPM
5046
uses: MetaMask/action-npm-publish@v5
47+
with:
48+
npm-token: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Inject Javascript on iOS to detect all iFrames inside the current page and report them to the React app (https://github.com/MetaMask/react-native-webview-mm/pull/61)
13+
- Inject Javascript on Android to detect all iFrames inside the current page and report them to the React app (https://github.com/MetaMask/react-native-webview-mm/pull/60)
1314

1415
## [14.2.2]
1516

1617
### Fixed
1718

18-
- On iOS on opening of some Dapps there is download file pop up (https://github.com/MetaMask/react-native-webview-mm/pull/63)
19+
- On iOS on opening of some Dapps there is download file pop up (https://github.com/MetaMask/react-native-webview-mm/pull/63)
20+
21+
## [14.2.1]
22+
23+
### Fixed
24+
25+
- Download file requested when connecting to any Dapp (https://github.com/MetaMask/react-native-webview-mm/pull/58)
26+
27+
## [14.2.0]
28+
29+
### Added
30+
31+
- Implement tapjacking prevention via 500ms delay (https://github.com/MetaMask/react-native-webview-mm/pull/54, https://github.com/MetaMask/react-native-webview-mm/pull/52)
32+
33+
### Fixed
34+
35+
- Fixes to blob downloading on both platforms (https://github.com/MetaMask/react-native-webview-mm/pull/51, https://github.com/MetaMask/react-native-webview-mm/pull/50)
36+
- Fix to regular file downloads on iOS (https://github.com/MetaMask/react-native-webview-mm/pull/53)
37+
38+
## [14.1.0]
39+
40+
### Changed
41+
42+
- bump ws from 6.2.2 to 6.2.3 in the npm_and_yarn group across 1 directory (https://github.com/MetaMask/react-native-webview-mm/pull/35)
43+
- sync with upstream v13.13.5 (https://github.com/MetaMask/react-native-webview-mm/pull/47)
44+
45+
[Unreleased]: https://github.com/MetaMask/react-native-webview-mm/compare/@metamask/MetaMask:react-native-webview-mm:release/14.2.2...main
46+
[14.2.2]: https://github.com/MetaMask/react-native-webview-mm/compare/release/14.2.1...MetaMask:react-native-webview-mm:release/14.2.2
47+
[14.2.1]: https://github.com/MetaMask/react-native-webview-mm/compare/release/14.2.0...MetaMask:react-native-webview-mm:release/14.2.1
48+
[14.2.0]: https://github.com/MetaMask/react-native-webview-mm/compare/release/14.1.0...MetaMask:react-native-webview-mm:release/14.2.0
49+
[14.1.0]: https://github.com/MetaMask/react-native-webview-mm/compare/v14.0.4...v14.1.0

0 commit comments

Comments
 (0)