From 8287bcc0994554c042aebee05b766924397a8f0e Mon Sep 17 00:00:00 2001 From: Martin Raszyk Date: Mon, 23 Mar 2026 15:09:27 +0100 Subject: [PATCH 1/3] fix: cloud_engine in subnet_config_set --- pocket_ic/subnet_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pocket_ic/subnet_config.py b/pocket_ic/subnet_config.py index 9b01dec..a498d15 100644 --- a/pocket_ic/subnet_config.py +++ b/pocket_ic/subnet_config.py @@ -128,6 +128,7 @@ def _json(self) -> dict: "sns": self.sns, "system": self.system, "verified_application": self.verified_application, + "cloud_engine": [], }, "state_dir": self.state_dir, "log_level": None, From f616842831cb101d8a0a0d8eb006a0dcaae9f50c Mon Sep 17 00:00:00 2001 From: Martin Raszyk Date: Mon, 23 Mar 2026 15:10:34 +0100 Subject: [PATCH 2/3] release v3.1.2 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8158ce..e453c2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 3.1.2 - 2026-03-23 + +### Added +- Support for PocketIC server version 13.0.0 + + + ## 3.1.1 - 2025-09-12 ### Added diff --git a/pyproject.toml b/pyproject.toml index aa680bb..7a39976 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pocket_ic" -version = "3.1.1" +version = "3.1.2" description = "PocketIC: A Canister Smart Contract Testing Platform" authors = [ "The Internet Computer Project Developers ", From 71d7ae9402472b95e8d8d50bb0a8767ac1b886b1 Mon Sep 17 00:00:00 2001 From: Martin Raszyk Date: Mon, 23 Mar 2026 15:11:31 +0100 Subject: [PATCH 3/3] bump server version on CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7f208f..f8007d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Install PocketIC server uses: dfinity/pocketic@main with: - pocket-ic-server-version: "10.0.0" + pocket-ic-server-version: "13.0.0" - name: Create python environment and run tests and examples run: |