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

bump moc and agent-js #213

Merged
merged 2 commits into from
Nov 29, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
fail-fast: false
env:
DFX_VERSION: 0.15.1
IC_REPL_VERSION: 0.5.1
MOC_VERSION: 0.10.1
DFX_VERSION: 0.15.2-beta.3
IC_REPL_VERSION: 0.6.0
MOC_VERSION: 0.10.2
steps:
- name: Setup Rust
uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- 16
- 18
env:
DFX_VERSION: 0.15.1
DFX_VERSION: 0.15.2-beta.3
SKIP_WASM: true
MOC_VERSION: 0.10.1
MOC_VERSION: 0.10.2
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
Expand Down
279 changes: 168 additions & 111 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@dfinity/agent": "^0.19.2",
"@dfinity/candid": "^0.19.2",
"@dfinity/principal": "^0.19.2",
"@dfinity/agent": "^0.20.2",
"@dfinity/candid": "^0.20.2",
"@dfinity/principal": "^0.20.2",
"@monaco-editor/react": "4.4.5",
"@types/node": "^14.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.10",
"lodash.debounce": "^4.0.8",
"motoko": "^3.6.8",
"motoko": "^3.6.10",
"prettier-plugin-motoko": "^0.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion public/moc.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion service/pool/tests/canisterPool.test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ let init = opt record {
};
let S = install(wasm, init, opt 100_000_000_000);
fail call S.getCanisterId(nonce, origin);
assert _ ~= "105_000_000_000 cycles";
assert _ ~= "out of cycles";
call ic.provisional_top_up_canister(
record {
canister_id = S;
Expand Down
168 changes: 30 additions & 138 deletions service/wasm-utils/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions service/wasm-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ crate-type = ["cdylib"]

[dependencies]
hex = "0.4.3"
ic-cdk = "0.10.0"
ic-cdk = "0.12.0"
serde = "1.0"
serde_bytes = "0.11"
candid = "0.9.10"
ic-wasm = { version = "0.6.0", default-features = false }
candid = "0.10.0"
ic-wasm = { version = "0.7.0", default-features = false }
sha2 = "0.10.6"

[profile.release]
Expand Down
1 change: 0 additions & 1 deletion service/wasm-utils/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ fn transform(wasm: ByteBuf, config: Config) -> ByteBuf {
trace_only_funcs: vec![],
start_address: config.start_page.map(|page| page as i32 * 65536),
page_limit: config.page_limit.map(|x| x as i32),
use_new_metering: false,
};
instrumentation::instrument(&mut m, instr_config).unwrap();
}
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { DeployModal, DeploySetter } from "./components/DeployModal";
import { backend, saved } from "./config/actor";
import { setupEditorIntegration } from "./integrations/editorIntegration";

const MOC_VERSION = "0.10.1";
const MOC_VERSION = "0.10.2";

const GlobalStyles = createGlobalStyle`
:root {
Expand Down
Loading