Skip to content

Commit 071f1b3

Browse files
authored
Merge branch 'master' into lwshang/dfx_0.18.0
2 parents 5194e36 + 1db5707 commit 071f1b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3995
-3811
lines changed

.github/CODEOWNERS

+86
Original file line numberDiff line numberDiff line change
@@ -1 +1,87 @@
11
* @dfinity/editorial
2+
3+
/c/adventure/ @dfinity/growth
4+
/c/qr/ @dfinity/growth
5+
/c/reverse/ @dfinity/growth
6+
7+
/hosting/godot-html5-template/ @zhangwei983
8+
/hosting/photo-storage/ @dfinity/sdk
9+
/hosting/static-website/ @dfinity/sdk
10+
/hosting/unity-webgl-template/ @zhangwei983
11+
12+
/motoko/actor_reference/ @dfinity/languages
13+
/motoko/auth_client_demo/ @dfinity/sdk
14+
/motoko/basic_bitcoin/ @dfinity/execution
15+
/motoko/basic_dao/ @dfinity/languages
16+
/motoko/calc/ @dfinity/languages
17+
/motoko/cert-var/ @dfinity/trust
18+
/motoko/classes/ @dfinity/languages
19+
/motoko/composite_query/ @dfinity/languages
20+
/motoko/counter/ @dfinity/languages
21+
/motoko/defi/ @rumenov
22+
/motoko/dip721-nft-container/ @dfinity/languages
23+
/motoko/echo/ @dfinity/languages
24+
/motoko/encrypted-notes-dapp-vetkd/ @dfinity/div-Crypto
25+
/motoko/encrypted-notes-dapp/ @dfinity/div-Crypto
26+
/motoko/factorial/ @dfinity/languages
27+
/motoko/hello-world/ @dfinity/languages
28+
/motoko/hello/ @dfinity/languages
29+
/motoko/hello_cycles/ @dfinity/languages
30+
/motoko/http_counter/ @rumenov
31+
/motoko/ic-pos/ @dfinity/div-Crypto
32+
/motoko/icrc2-swap/ @dfinity/div-Crypto
33+
/motoko/internet_identity_integration/ @dfinity/gix
34+
/motoko/invoice-canister/ @dfinity/FinInt
35+
/motoko/ios-notifications/ @dfinity/trust
36+
/motoko/ledger-transfer/ @dfinity/FinInt
37+
/motoko/life/ @dfinity/languages
38+
/motoko/minimal-counter-dapp/ @dfinity/growth
39+
/motoko/persistent-storage/ @dfinity/growth
40+
/motoko/phone-book/ @dfinity/growth
41+
/motoko/pub-sub/ @dfinity/growth
42+
/motoko/quicksort/ @dfinity/growth
43+
/motoko/random_maze/ @dfinity/languages
44+
/motoko/send_http_get/ @rumenov
45+
/motoko/send_http_post/ @rumenov
46+
/motoko/simple-to-do/ @dfinity/growth
47+
/motoko/superheroes/ @dfinity/growth
48+
/motoko/threshold-ecdsa/ @dfinity/div-Crypto
49+
/motoko/vetkd/ @dfinity/div-Crypto
50+
/motoko/whoami/ @dfinity/growth
51+
52+
/native-apps/unity_ii_applink/ @zhangwei983
53+
/native-apps/unity_ii_deeplink/ @zhangwei983
54+
55+
/rust/basic_bitcoin/ @dfinity/execution
56+
/rust/basic_dao/ @dfinity/testing-verification
57+
/rust/canister-info/ @dfinity/testing-verification
58+
/rust/composite_query/ @dfinity/execution
59+
/rust/counter/ @dfinity/growth
60+
/rust/defi/ @dfinity/div-Crypto
61+
/rust/dip721-nft-container/ @dfinity/sdk
62+
/rust/encrypted-notes-dapp-vetkd/ @dfinity/div-Crypto
63+
/rust/encrypted-notes-dapp/ @dfinity/div-Crypto
64+
/rust/hello/ @dfinity/sdk
65+
/rust/nft-wallet/ @dfinity/growth
66+
/rust/performance_counters/ @dfinity/runtime
67+
/rust/periodic_tasks/ @dfinity/runtime
68+
/rust/pub-sub/ @dfinity/growth
69+
/rust/qrcode/ @dfinity/runtime
70+
/rust/send_http_get/ @dfinity/growth
71+
/rust/send_http_post/ @dfinity/growth
72+
/rust/threshold-ecdsa/ @chmllr
73+
/rust/tokens_transfer/ @dfinity/div-Crypto
74+
/rust/vetkd/ @dfinity/div-Crypto
75+
76+
/svelte/svelte-motoko-starter/ @dfinity/sdk
77+
/svelte/svelte-starter/ @dfinity/sdk
78+
/svelte/sveltekit-starter/ @dfinity/sdk
79+
80+
/wasm/counter @dfinity/languages
81+
82+
83+
84+
85+
86+
87+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Known failure: https://dfinity.atlassian.net/browse/EM-5
2+
name: motoko-icp_transfer
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
paths:
9+
- motoko/icp_transfer/**
10+
- .github/workflows/provision-darwin.sh
11+
- .github/workflows/provision-linux.sh
12+
- .github/workflows/motoko-icp-transfer-example.yml
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
jobs:
17+
motoko-icp_transfer-darwin:
18+
runs-on: macos-12
19+
steps:
20+
- uses: actions/checkout@v1
21+
- name: Provision Darwin
22+
run: bash .github/workflows/provision-darwin.sh
23+
- name: Install mops
24+
uses: ZenVoich/setup-mops@v1
25+
- name: Motoko Ledger Transfer Darwin
26+
run: |
27+
pushd motoko/icp_transfer
28+
mops install
29+
bash ./demo.sh
30+
popd
31+
motoko-icp_transfer-linux:
32+
runs-on: ubuntu-20.04
33+
steps:
34+
- uses: actions/checkout@v1
35+
- name: Provision Linux
36+
run: bash .github/workflows/provision-linux.sh
37+
- name: Install mops
38+
uses: ZenVoich/setup-mops@v1
39+
- name: Motoko Ledger Transfer Linux
40+
run: |
41+
pushd motoko/icp_transfer
42+
mops install
43+
bash ./demo.sh
44+
popd
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
# Known failure: https://dfinity.atlassian.net/browse/EM-5
2-
name: motoko-ledger-transfer
2+
name: motoko-token_transfer
33
on:
44
push:
55
branches:
66
- master
77
pull_request:
88
paths:
9-
- motoko/ledger-transfer/**
9+
- motoko/token_transfer/**
1010
- .github/workflows/provision-darwin.sh
1111
- .github/workflows/provision-linux.sh
12-
- .github/workflows/motoko-ledger-transfer-example.yml
12+
- .github/workflows/motoko-token-transfer-example.yml
1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.ref }}
1515
cancel-in-progress: true
1616
jobs:
17-
motoko-ledger-transfer-darwin:
17+
motoko-token_transfer-darwin:
1818
runs-on: macos-12
1919
steps:
2020
- uses: actions/checkout@v1
2121
- name: Provision Darwin
2222
run: bash .github/workflows/provision-darwin.sh
2323
- name: Motoko Ledger Transfer Darwin
2424
run: |
25-
pushd motoko/ledger-transfer
25+
pushd motoko/token_transfer
2626
bash ./demo.sh
2727
popd
28-
motoko-ledger-transfer-linux:
28+
motoko-token_transfer-linux:
2929
runs-on: ubuntu-20.04
3030
steps:
3131
- uses: actions/checkout@v1
3232
- name: Provision Linux
3333
run: bash .github/workflows/provision-linux.sh
3434
- name: Motoko Ledger Transfer Linux
3535
run: |
36-
pushd motoko/ledger-transfer
36+
pushd motoko/token_transfer
3737
bash ./demo.sh
3838
popd
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Known failure: https://dfinity.atlassian.net/browse/EM-5
2-
name: rust-tokens_transfer
2+
name: rust-icp_transfer
33
on:
44
push:
55
branches:
66
- master
77
pull_request:
88
paths:
9-
- rust/tokens_transfer/**
9+
- rust/icp_transfer/**
1010
- .github/workflows/provision-darwin.sh
1111
- .github/workflows/provision-linux.sh
12-
- .github/workflows/rust-tokens-transfer-example.yml
12+
- .github/workflows/rust-icp-transfer-example.yml
1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.ref }}
1515
cancel-in-progress: true
1616
jobs:
17-
rust-tokens_transfer-darwin:
17+
rust-icp_transfer-darwin:
1818
runs-on: macos-12
1919
steps:
2020
- uses: actions/checkout@v2
@@ -24,10 +24,10 @@ jobs:
2424
run: bash .github/workflows/provision-darwin.sh
2525
- name: Rust Tokens Transfer Darwin
2626
run: |
27-
pushd rust/tokens_transfer
27+
pushd rust/icp_transfer
2828
bash ./demo.sh
2929
popd
30-
rust-tokens_transfer-linux:
30+
rust-icp_transfer-linux:
3131
runs-on: ubuntu-20.04
3232
steps:
3333
- uses: actions/checkout@v2
@@ -37,6 +37,6 @@ jobs:
3737
run: bash .github/workflows/provision-linux.sh
3838
- name: Rust Tokens Transfer Linux
3939
run: |
40-
pushd rust/tokens_transfer
40+
pushd rust/icp_transfer
4141
bash ./demo.sh
4242
popd
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Known failure: https://dfinity.atlassian.net/browse/EM-5
2+
name: rust-token_transfer
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
paths:
9+
- rust/token_transfer/**
10+
- .github/workflows/provision-darwin.sh
11+
- .github/workflows/provision-linux.sh
12+
- .github/workflows/rust-icp-transfer-example.yml
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
jobs:
17+
rust-token_transfer-darwin:
18+
runs-on: macos-12
19+
steps:
20+
- uses: actions/checkout@v2
21+
with:
22+
submodules: recursive
23+
- name: Provision Darwin
24+
run: bash .github/workflows/provision-darwin.sh
25+
- name: Rust Tokens Transfer Darwin
26+
run: |
27+
pushd rust/token_transfer
28+
bash ./demo.sh
29+
popd
30+
rust-token_transfer-linux:
31+
runs-on: ubuntu-20.04
32+
steps:
33+
- uses: actions/checkout@v2
34+
with:
35+
submodules: recursive
36+
- name: Provision Linux
37+
run: bash .github/workflows/provision-linux.sh
38+
- name: Rust Tokens Transfer Linux
39+
run: |
40+
pushd rust/token_transfer
41+
bash ./demo.sh
42+
popd

motoko/auth_client_demo/package-lock.json

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

motoko/auth_client_demo/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
],
4949
"dependencies": {
5050
"@dfinity/agent": "^0.20.2",
51-
"@dfinity/auth-client": "^0.20.2",
51+
"@dfinity/auth-client": "^1.0.1",
5252
"@dfinity/candid": "^0.20.2",
53-
"@dfinity/identity": "^0.20.2",
53+
"@dfinity/identity": "^1.0.1",
5454
"@dfinity/principal": "^0.20.2",
5555
"lit-html": "^2.4.0",
5656
"pinia": "^2.0.36",

motoko/cert-var/package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)