chore(main): release 0.13.2 - #140
Open
czprz wants to merge 2 commits into
Open
Conversation
czprz
force-pushed
the
release-please--branches--main
branch
from
July 24, 2026 19:11
a6bfbe8 to
2e09a85
Compare
There was a problem hiding this comment.
Pull request overview
Release PR for v0.13.2 generated by Release Please, propagating the new version across client packages and documentation and recording the associated changelog entry.
Changes:
- Bump client/package versions and default “tested against” Mockly binary versions from 0.13.1 → 0.13.2 across Go/Node/Python/Java/.NET/Rust.
- Update docs/READMEs to reference v0.13.2 in install snippets and examples.
- Add v0.13.2 entry to
CHANGELOG.mdand bump.release-please-manifest.json.
Reviewed changes
Copilot reviewed 31 out of 33 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates top-level install/version references to 0.13.2 (also contains doc issues called out in comments). |
| docs/clients/rust.md | Updates Rust client docs to 0.13.2 (also contains doc issues called out in comments). |
| docs/clients/java.md | Updates Java client docs to 0.13.2. |
| clients/rust/README.md | Updates Rust crate README examples/version references to 0.13.2. |
| clients/rust/Cargo.toml | Bumps mockly-driver crate version to 0.13.2. |
| clients/rust-testcontainers/README.md | Updates Rust testcontainers crate README version references to 0.13.2 (also contains doc issues called out in comments). |
| clients/rust-testcontainers/Cargo.toml | Bumps mockly-testcontainers crate version and internal dependency to 0.13.2. |
| clients/python/src/mockly_driver/_install.py | Updates Python default fallback binary version to v0.13.2. |
| clients/python/README.md | Updates Python README default version reference to v0.13.2. |
| clients/python/pyproject.toml | Bumps Python mockly-driver package version to 0.13.2. |
| clients/python-testcontainers/pyproject.toml | Bumps Python mockly-testcontainers package version to 0.13.2. |
| clients/node/src/install.ts | Updates Node default binary version constant to v0.13.2. |
| clients/node/packages/mockly-driver-win32-x64/package.json | Bumps platform package version to 0.13.2. |
| clients/node/packages/mockly-driver-linux-x64/package.json | Bumps platform package version to 0.13.2. |
| clients/node/packages/mockly-driver-linux-arm64/package.json | Bumps platform package version to 0.13.2. |
| clients/node/packages/mockly-driver-darwin-x64/package.json | Bumps platform package version to 0.13.2. |
| clients/node/packages/mockly-driver-darwin-arm64/package.json | Bumps platform package version to 0.13.2. |
| clients/node/package.json | Bumps Node driver version and optional dependency pins to 0.13.2. |
| clients/node/package-lock.json | Updates lockfile versions/pins to 0.13.2. |
| clients/node-testcontainers/package.json | Bumps Node testcontainers package version to 0.13.2. |
| clients/node-testcontainers/package-lock.json | Updates lockfile version to 0.13.2. |
| clients/java/testcontainers/README.md | Updates Java testcontainers README dependency versions to 0.13.2. |
| clients/java/testcontainers/pom.xml | Bumps Java testcontainers module version to 0.13.2. |
| clients/java/src/main/java/io/mockly/driver/MocklyInstaller.java | Updates Java default binary version constant to v0.13.2. |
| clients/java/README.md | Updates Java README examples/version pins to 0.13.2. |
| clients/java/pom.xml | Bumps Java driver module version to 0.13.2. |
| clients/go/README.md | Updates Go README default version references to v0.13.2. |
| clients/go/install.go | Updates Go default version constant to v0.13.2. |
| clients/dotnet/src/Testcontainers.Mockly/Testcontainers.Mockly.csproj | Bumps .NET testcontainers package version to 0.13.2. |
| clients/dotnet/src/Mockly.Driver/Mockly.Driver.csproj | Bumps .NET driver package version to 0.13.2. |
| clients/dotnet/README.md | Updates .NET README version example to v0.13.2. |
| CHANGELOG.md | Adds 0.13.2 release notes entry. |
| .release-please-manifest.json | Bumps manifest version to 0.13.2. |
Files not reviewed (2)
- clients/node-testcontainers/package-lock.json: Generated file
- clients/node/package-lock.json: Generated file
Comments suppressed due to low confidence (1)
README.md:1521
- This TOML snippet closes the fenced code block on the same line as the dependency (the trailing ```), which breaks Markdown rendering (everything after may be treated as code). The closing fence should be on its own line.
mockly-driver = "0.13.2" # x-release-please-version```
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| | **.NET / C#** | `Mockly.Driver` | `Testcontainers.Mockly` | `dotnet add package Mockly.Driver` or `dotnet add package Testcontainers.Mockly` | | ||
| | **Python** | `mockly-driver` | `mockly-testcontainers` | `pip install mockly-driver` or `pip install mockly-testcontainers` | | ||
| | **Rust** | `mockly-driver` | `mockly-testcontainers` | `mockly-driver = "0.13.1"` <!-- x-release-please-version --> or `mockly-testcontainers = "0.12.4"` in `[dev-dependencies]` | | ||
| | **Rust** | `mockly-driver` | `mockly-testcontainers` | `mockly-driver = "0.13.2"` <!-- x-release-please-version --> or `mockly-testcontainers = "0.12.4"` in `[dev-dependencies]` | |
| <groupId>io.github.dever-labs</groupId> | ||
| <artifactId>mockly-driver</artifactId> | ||
| <version>0.13.1</version> <!-- x-release-please-version --> <scope>test</scope> | ||
| <version>0.13.2</version> <!-- x-release-please-version --> <scope>test</scope> |
| ```toml | ||
| [dev-dependencies] | ||
| mockly-driver = "0.13.1" # x-release-please-version``` | ||
| mockly-driver = "0.13.2" # x-release-please-version``` |
Comment on lines
+18
to
20
| mockly-testcontainers = "0.13.2" # x-release-please-version | ||
| reqwest = { version = "0.12", features = ["blocking"] } | ||
| testcontainers = { version = "0.23", features = ["blocking", "http_wait"] } |
Comment on lines
+302
to
304
| mockly-testcontainers = "0.13.2" # x-release-please-version | ||
| reqwest = { version = "0.12", features = ["blocking"] } | ||
| testcontainers = { version = "0.23", features = ["blocking", "http_wait"] } |
czprz
force-pushed
the
release-please--branches--main
branch
from
July 26, 2026 11:13
ad98d9a to
7cd1ea3
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 31 out of 33 changed files in this pull request and generated 1 comment.
Files not reviewed (2)
- clients/node-testcontainers/package-lock.json: Generated file
- clients/node/package-lock.json: Generated file
Comments suppressed due to low confidence (4)
README.md:1409
- The Rust row in the client table still recommends
mockly-testcontainers = "0.12.4", which is inconsistent with the 0.13.2 release and with the Rust testcontainers crate version bumped in this PR. This will mislead users into pinning an old crate version.
| **Rust** | `mockly-driver` | `mockly-testcontainers` | `mockly-driver = "0.13.2"` <!-- x-release-please-version --> or `mockly-testcontainers = "0.12.4"` in `[dev-dependencies]` |
docs/clients/rust.md:304
- The install snippet pins
testcontainersto 0.23, but this crate itself depends ontestcontainers = 0.27(clients/rust-testcontainers/Cargo.toml). Recommending an older major/minor can cause the example imports (e.g., runner APIs) to not compile for users.
clients/rust-testcontainers/README.md:20 - The README recommends
testcontainers = 0.23, but the crate depends ontestcontainers = 0.27(see Cargo.toml). Users following this README may hit API mismatches during compilation; align the suggested version with what the crate is built/tested against.
mockly-testcontainers = "0.13.2" # x-release-please-version
reqwest = { version = "0.12", features = ["blocking"] }
testcontainers = { version = "0.23", features = ["blocking", "http_wait"] }
docs/clients/rust.md:11
- The TOML snippet closes the markdown code fence on the same line as the dependency, which breaks formatting when rendered. Ensure the code block is properly closed before the next section (one easy fix is to use
~~~fences here).
Comment on lines
1519
to
+1521
| ```toml | ||
| [dev-dependencies] | ||
| mockly-driver = "0.13.1" # x-release-please-version``` | ||
| mockly-driver = "0.13.2" # x-release-please-version``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 I have created a release beep boop
0.13.2 (2026-07-26)
Bug Fixes
This PR was generated with Release Please. See documentation.