Skip to content

Commit

Permalink
revert subs
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiemongeon1 committed Sep 10, 2024
1 parent 5a17fc9 commit 5f43b5d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion submodules/internetidentity
Submodule internetidentity updated 122 files
2 changes: 1 addition & 1 deletion submodules/motoko
Submodule motoko updated 779 files
2 changes: 1 addition & 1 deletion submodules/response-verfication
Submodule response-verfication updated 56 files
+1 −1 .cz.yaml
+1 −1 .github/workflows/e2e-tests.yml
+0 −22 CHANGELOG.md
+21 −21 Cargo.lock
+8 −8 Cargo.toml
+4 −19 examples/http-certification/assets/README.md
+65 −13 examples/http-certification/assets/src/backend/src/lib.rs
+1 −1 examples/http-certification/assets/src/frontend/vite.config.ts
+10 −9 examples/http-certification/custom-assets/README.md
+11 −10 examples/http-certification/custom-assets/src/backend/src/lib.rs
+50 −40 examples/http-certification/json-api/README.md
+54 −44 examples/http-certification/json-api/src/backend/src/lib.rs
+1 −1 examples/http-certification/json-api/src/backend/src/types.rs
+11 −0 examples/http-certification/json-api/src/tests/src/response.ts
+17 −31 examples/http-certification/json-api/src/tests/src/todos.spec.ts
+18 −7 examples/response-verification/rust/src/main.rs
+2 −2 packages/certificate-verification-js/package.json
+1 −1 packages/ic-asset-certification/Cargo.toml
+35 −334 packages/ic-asset-certification/README.md
+81 −1 packages/ic-asset-certification/src/asset.rs
+7 −193 packages/ic-asset-certification/src/asset_config.rs
+12 −11 packages/ic-asset-certification/src/asset_response.rs
+634 −1,456 packages/ic-asset-certification/src/asset_router.rs
+480 −778 packages/ic-asset-certification/src/lib.rs
+1 −1 packages/ic-cbor/Cargo.toml
+1 −1 packages/ic-certificate-verification/Cargo.toml
+1 −1 packages/ic-certification-testing-wasm/package.json
+1 −1 packages/ic-certification-testing/Cargo.toml
+1 −1 packages/ic-certification/Cargo.toml
+135 −69 packages/ic-http-certification-tests/tests/v1_response_verification.rs
+162 −122 packages/ic-http-certification-tests/tests/v2_response_verification_certification_scenarios.rs
+67 −47 packages/ic-http-certification-tests/tests/v2_response_verification_happy_path.rs
+83 −54 packages/ic-http-certification-tests/tests/v2_response_verification_sad_path.rs
+1 −1 packages/ic-http-certification/Cargo.toml
+10 −8 packages/ic-http-certification/src/hash/request_hash.rs
+59 −60 packages/ic-http-certification/src/hash/response_hash.rs
+42 −705 packages/ic-http-certification/src/http/http_request.rs
+9 −543 packages/ic-http-certification/src/http/http_response.rs
+35 −26 packages/ic-http-certification/src/lib.rs
+81 −43 packages/ic-http-certification/src/tree/certification.rs
+77 −59 packages/ic-http-certification/src/tree/certification_tree.rs
+19 −15 packages/ic-http-certification/src/tree/certification_tree_entry.rs
+1 −1 packages/ic-representation-independent-hash/Cargo.toml
+0 −1 packages/ic-response-verification-tests/dfx-project/canisters/frontend/assets/another sample asset.txt
+0 −3 packages/ic-response-verification-tests/dfx-project/canisters/frontend/assets/capture-d’écran-2023-10-26-à.txt
+4 −2 packages/ic-response-verification-tests/package.json
+22 −38 packages/ic-response-verification-tests/src/main.rs
+2 −1 packages/ic-response-verification-tests/wasm-tests/main.ts
+1 −1 packages/ic-response-verification-wasm/package.json
+14 −12 packages/ic-response-verification-wasm/src/request.rs
+15 −13 packages/ic-response-verification-wasm/src/response.rs
+1 −1 packages/ic-response-verification/Cargo.toml
+6 −6 packages/ic-response-verification/src/verification/body.rs
+21 −31 packages/ic-response-verification/src/verification/verify_request_response_pair.rs
+143 −127 pnpm-lock.yaml
+21 −67 scripts/e2e.sh
2 changes: 1 addition & 1 deletion submodules/samples
Submodule samples updated 171 files
2 changes: 1 addition & 1 deletion submodules/sdk
Submodule sdk updated 45 files
+0 −8 CHANGELOG.md
+2 −2 Cargo.lock
+8 −1 docs/process/release.md
+0 −8 e2e/tests-dfx/completion.bash
+0 −25 e2e/tests-dfx/extension.bash
+5 −2 public/manifest.json
+4 −27 src/dfx-core/src/config/project_templates.rs
+0 −6 src/dfx-core/src/error/extension.rs
+0 −47 src/dfx-core/src/extension/manager/list.rs
+30 −3 src/dfx-core/src/extension/manager/mod.rs
+1 −1 src/dfx/assets/project_templates/any_js/package.json
+5 −5 src/dfx/assets/project_templates/azle/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/azle/package.json-patch
+1 −1 src/dfx/assets/project_templates/azle/src/__backend_name__/package.json
+4 −4 src/dfx/assets/project_templates/base/README.md
+5 −5 src/dfx/assets/project_templates/kybra/dfx.json-patch
+2 −2 src/dfx/assets/project_templates/motoko/dfx.json-patch
+4 −4 src/dfx/assets/project_templates/react/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/react/package.json-patch
+2 −2 src/dfx/assets/project_templates/react/src/__frontend_name__/package.json
+2 −2 src/dfx/assets/project_templates/react/src/__frontend_name__/src/App.jsx
+2 −2 src/dfx/assets/project_templates/react_tests/src/__frontend_name__/vite.config.js.patch
+1 −1 src/dfx/assets/project_templates/rust/Cargo.toml
+3 −3 src/dfx/assets/project_templates/rust/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/rust/src/__backend_name__/Cargo.toml
+3 −3 src/dfx/assets/project_templates/simple_assets/dfx.json-patch
+5 −5 src/dfx/assets/project_templates/svelte/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/svelte/package.json-patch
+2 −2 src/dfx/assets/project_templates/svelte/src/__frontend_name__/package.json
+1 −1 src/dfx/assets/project_templates/svelte/src/__frontend_name__/src/lib/canisters.js
+2 −2 src/dfx/assets/project_templates/svelte_tests/src/__frontend_name__/vite.config.js.patch
+4 −4 src/dfx/assets/project_templates/vanilla_js/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/vanilla_js/package.json-patch
+2 −2 src/dfx/assets/project_templates/vanilla_js/src/__frontend_name__/package.json
+2 −2 src/dfx/assets/project_templates/vanilla_js/src/__frontend_name__/src/App.js
+2 −2 src/dfx/assets/project_templates/vanilla_js_tests/src/__frontend_name__/vite.config.js.patch
+4 −4 src/dfx/assets/project_templates/vue/dfx.json-patch
+1 −1 src/dfx/assets/project_templates/vue/package.json-patch
+2 −2 src/dfx/assets/project_templates/vue/src/__frontend_name__/package.json
+2 −2 src/dfx/assets/project_templates/vue/src/__frontend_name__/src/App.vue
+2 −2 src/dfx/assets/project_templates/vue_tests/src/__frontend_name__/vite.config.js.patch
+4 −45 src/dfx/src/commands/extension/list.rs
+3 −3 src/dfx/src/commands/extension/mod.rs
+116 −111 src/dfx/src/commands/new.rs
+1 −164 src/dfx/src/lib/project/templates.rs

0 comments on commit 5f43b5d

Please sign in to comment.