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

chore(release): publish #407

Closed
wants to merge 2 commits into from
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
10 changes: 5 additions & 5 deletions .release.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
"__important__": "DO NOT MODIFY THIS FILE. This file is automatically generated.",
"versions": {
"wallet-dapp": {
"currentVersion": "0.0.2-alpha.11",
"newVersion": "0.0.2-alpha.12",
"currentVersion": "0.0.2-alpha.12",
"newVersion": "0.0.2-alpha.13",
"dependentProjects": []
}
},
"changes": {
"wallet-dapp": {
"releaseVersion": {
"rawVersion": "0.0.2-alpha.12",
"gitTag": "@orbit/wallet-dapp-v0.0.2-alpha.12",
"rawVersion": "0.0.2-alpha.13",
"gitTag": "@orbit/wallet-dapp-v0.0.2-alpha.13",
"isPrerelease": true
},
"contents": "## 0.0.2-alpha.12 (2024-10-25)\n\n\n### 🚀 Features\n\n- **dfx-orbit:** Review list pagination ([#403](https://github.com/dfinity/orbit/pull/403))\n\n- **wallet:** use didc for candid parsing ([#402](https://github.com/dfinity/orbit/pull/402))\n\n\n### ❤️ Thank You\n\n- Kepler Vital\n- Leon Tan"
"contents": "## 0.0.2-alpha.13 (2024-10-25)\n\n\n### 🚀 Features\n\n- **wallet:** enable webassembly loading ([050ad8e2](https://github.com/dfinity/orbit/commit/050ad8e2))\n\n\n### ❤️ Thank You\n\n- Kepler Vital"
}
}
}
12 changes: 12 additions & 0 deletions apps/wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.0.2-alpha.13 (2024-10-25)


### 🚀 Features

- **wallet:** enable webassembly loading ([050ad8e2](https://github.com/dfinity/orbit/commit/050ad8e2))


### ❤️ Thank You

- Kepler Vital

## 0.0.2-alpha.12 (2024-10-25)


Expand Down
6 changes: 5 additions & 1 deletion apps/wallet/build/main.build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ export default defineConfig(_ => {
return `locale-${localeName}`;
}

if (isNodeModule && folder.includes('/@dfinity')) {
if (
isNodeModule &&
folder.includes('/@dfinity') &&
!folder.includes('/@dfinity/didc') // this package has a wasm so we exclude it
) {
return 'ic-libs';
}

Expand Down
2 changes: 1 addition & 1 deletion apps/wallet/build/plugins/with-ic-assets.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const getContentSecurityPolicy = (
): string => {
const csp: Record<string, string[]> = {
'default-src': ["'none'"],
'script-src': ["'self'"],
'script-src': ["'self'", "'wasm-unsafe-eval'"],
'connect-src': ["'self'", 'https://icp-api.io', 'https://ic0.app', 'https://icp0.io'],
'img-src': ["'self'", 'data:'],
'font-src': ["'self'"],
Expand Down
2 changes: 1 addition & 1 deletion apps/wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wallet-dapp",
"private": true,
"version": "0.0.2-alpha.12",
"version": "0.0.2-alpha.13",
"type": "module",
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion apps/wallet/public/compat.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"__important__": "This file is automatically generated by the build process. Do not modify it manually.",
"version": "0.0.2-alpha.12",
"version": "0.0.2-alpha.13",
"api": {
"latest": "0.0.2-alpha.8",
"compatibility": {
"0.0.2-alpha.8": {
"ui": [
"0.0.2-alpha.13",
"0.0.2-alpha.12",
"0.0.2-alpha.11"
]
Expand Down
Loading