Skip to content

Tags: dfinity/ic

Tags

rosetta-icrc-release-1.2.9

Toggle rosetta-icrc-release-1.2.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(ICRC_Rosetta): Add ICRC Rosetta release 1.2.9 (#8640)

Release information for ICRC Rosetta 1.2.9 with the following changes:

- Add ICRC-107 fee collector block handling.
- Bump the database schema version from 1 to 2.

rosetta-icrc-1.2.9

Toggle rosetta-icrc-1.2.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(ICRC_Rosetta): Add ICRC Rosetta release 1.2.9 (#8640)

Release information for ICRC Rosetta 1.2.9 with the following changes:

- Add ICRC-107 fee collector block handling.
- Bump the database schema version from 1 to 2.

ledger-suite-icrc-2026-02-02

Toggle ledger-suite-icrc-2026-02-02's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: //ci/githubstats:query add 'impact' column (#8627)

We should prioritise fixing tests where failures have the most impact.
So this adds an `impact` column to the `top` query which is the product
of the number of `non_success` runs and the `duration_p90`.

A better metric than `non_success * duration_p90` would be the sum of
time spent on failed runs. However we don't track that data (yet) so we
go for this for now and might change it to the latter later.

release-2026-01-29_23-28-base

Toggle release-2026-01-29_23-28-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: Update Base Image Refs and libvirt config (#8581)

Updating base container image references and libvirt config for
custom-built QEMU 10.2

---------

Co-authored-by: Bownairo <7826872+Bownairo@users.noreply.github.com>

release-2026-01-29_16-08-base

Toggle release-2026-01-29_16-08-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(nr_large): use spawn_blocking also around bash script execution (#…

…8595)

Similarly to #8547, this PR spawns the execution of the bash script
itself as a blocking task since it also uses blocking I/O.

Unfortunately, I could not simply write
```rust
tokio::task::spawn_blocking(move || self.block_on_bash_script_from_session(&session, &script))
    .await
    .expect("Executing bash script task panicked")
```
because I also had to clone `self`, which is not `Clone`. Removing the
`self` parameter from `block_on_bash_script_from_session` (which is not
used) would not be practical either as we would have to adapt every call
site.

release-2026-01-22_03-33-pre-signature-stash

Toggle release-2026-01-22_03-33-pre-signature-stash's commit message
enable pre-signature-stash

release-2026-01-22_03-33-base

Toggle release-2026-01-22_03-33-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
test: Refactor IC-OS image config in system_tests.bzl for more clarity (

#8436)

- Instead of the `uses_*` pattern, pass `hostos` and `setupos` args to
`system_test` similarly to `guestos`.
- Factor out repeating parts of the config in `system_tests.bzl` into
functions
- Improve handling of mainnet dev images.
- Behavior change: `recovery-dev` now builds the initial update image
corresponding to the base image (both from
`//ic-os/guestos/envs/recovery-dev`), whereas previously the two weren't
consistent. The test still passes and I got green light from
@andrewbattat who originally wrote the tests.

---------

Co-authored-by: IDX GitHub Automation <infra+github-automation@dfinity.org>

rosetta-icrc-release-1.2.8

Toggle rosetta-icrc-release-1.2.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(ICRC_Rosetta): Add ICRC Rosetta release 1.2.8 (#8299)

Release information for ICRC Rosetta 1.2.8 with the following changes:

- Add database schema versioning.
- Use `tokio-rusqlite` for database operations.
- Make balance sync batch size configurable.
- Add configurable SQLite cache size limit and flushing.

rosetta-icrc-1.2.8

Toggle rosetta-icrc-1.2.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(ICRC_Rosetta): Add ICRC Rosetta release 1.2.8 (#8299)

Release information for ICRC Rosetta 1.2.8 with the following changes:

- Add database schema versioning.
- Use `tokio-rusqlite` for database operations.
- Make balance sync batch size configurable.
- Add configurable SQLite cache size limit and flushing.

release-2026-01-08_03-31-base

Toggle release-2026-01-08_03-31-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
test(node): add OSConfig Default traits (#8204)

NODE-1808

Adds GuestOSConfig, HostOSConfig, and SetupOSConfig Default trains to
reduce test boilerplate. Unit tests now only must specify specific
fields they care about.