Skip to content

Commit

Permalink
bump moc
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyan-dfinity committed Nov 28, 2023
1 parent 4769747 commit 244e678
Show file tree
Hide file tree
Showing 9 changed files with 212 additions and 264 deletions.
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.

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

0 comments on commit 244e678

Please sign in to comment.