Skip to content

Commit

Permalink
Merge branch 'main' into serialize-status
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswanson-dfinity authored Feb 13, 2024
2 parents 728eeda + 981706c commit 6b43085
Show file tree
Hide file tree
Showing 34 changed files with 1,321 additions and 269 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
dfx: [ '0.8.4', '0.9.2', '0.10.1', '0.11.1' ]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Cache Cargo
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Cargo
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ic-ref.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
os: ubuntu-latest

steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install dfx
uses: dfinity/setup-dfx@main
with:
dfx-version: "0.15.2-beta.1"
dfx-version: "0.16.1"

- name: Cargo cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
binary_path: target/x86_64-apple-darwin/release
binary_files: icx
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- name: Setup environment variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# ubuntu-latest has shellcheck 0.4.6, while macos-latest has 0.7.1
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install shellcheck
run: |
mkdir $HOME/bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

* Added query stats to `StatusCallResult`.
* Changed the return type of `stored_chunks` to a struct.
* Added a prime256v1-based `Identity` impl to complement the ed25519 and secp256k1 `Identity` impls.
* Added serde and candid serialization traits to the `Status` type.
*
## [0.32.0] - 2024-01-18

* Added the chunked wasm API to ic-utils. Existing code that uses `install_code` should probably update to `install`, which works the same but silently handles large wasm modules.
* Added query stats to `StatusCallResult`.
* Upgraded `ic-certification` to v2.2.

## [0.31.0] - 2023-11-27

Expand Down
81 changes: 45 additions & 36 deletions Cargo.lock

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

17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
]

[workspace.package]
version = "0.31.0"
version = "0.32.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
Expand All @@ -21,19 +21,20 @@ rust-version = "1.70.0"
license = "Apache-2.0"

[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.31.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.31.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.31.0" }
ic-agent = { path = "ic-agent", version = "0.32.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.32.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.32.0" }

ic-certification = "1.2.0"
candid = "0.10.0"
candid_parser = "0.1.0"
ic-certification = "2.2"
candid = "0.10.1"
candid_parser = "0.1.1"
clap = "4.4.3"
futures-util = "0.3.21"
hex = "0.4.3"
leb128 = "0.2.5"
ring = "0.16.20"
serde = "1.0.162"
serde_bytes = "0.11.9"
serde_bytes = "0.11.13"
serde_cbor = "0.11.2"
serde_json = "1.0.96"
serde_repr = "0.1.12"
Expand Down
Loading

0 comments on commit 6b43085

Please sign in to comment.