hs-temporal-sdk
hs-temporal-sdk copied to clipboard
fix(deps): update tokio-prost monorepo to ~0.14.0
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| prost | dependencies | minor | ~0.13 -> ~0.14.0 |
| prost-types | dependencies | minor | ~0.13 -> ~0.14.0 |
Release Notes
tokio-rs/prost (prost)
v0.14.1
PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.
⚠️ Revert emission of rerun commands
Version 0.14.1 reverts the emission of rerun commands. Other than this change, it is identical to 0.14.0.
In version 0.14.0, prost-build began emitting rerun commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating protos from an includes directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1.
For more details, see issue #1296.
Breaking changes
-
prost: Relax Message Debug trait bound (#1147)
BREAKING CHANGE:
trait Debugwas a supertrait oftrait Message. This is no longer required byprost. If your code relies ontrait Debugbeing implemented for everyimpl Message, you must now explicitly state that you require both Debug and Message. For example:where M: Debug + Message -
prost: Remove prost-derive feature (#1247)
BREAKING CHANGE: Feature flag
prost-deriveis renamed toderive. Please rename any usage ofprost-derivefeature in yourCargo.toml. -
prost-build: Prevent repeated fields to be boxed (#1237)
BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as
Vec<Box<T>>. Those fields are now simply typed asVec<T>to prevent double indirection. Theboxedconfiguration is effectively ignored for repeated fields. -
prost-build: Make
type_name_domaincumulative (#1228)BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to
prost_build::Config::type_name_domainare now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. -
prost-build: Derive Eq and Hash trait for messages where possible (#1175)
BREAKING CHANGE:
prost-buildwill automatically derivetrait Eqandtrait Hashfor types where all field support those as well. If you manuallyimpl Eqand/orimpl Hashfor generated types, then you need to remove the manual implementation. If you usetype_attributetoderive(Eq)and/orderive(Hash), then you need to remove those.
Features
- prost-types: Implement conversion
Durationto/fromchrono::TimeDelta(#1236) - prost-build: Prepare for 2024 keyword
gen(#1257)
Dependencies
- (deps) Update pulldown-cmark to 0.13 (#1259)
- (deps) update criterion requirement from 0.5 to 0.6 (#1280)
Documentation
- Update dead link LICENSE in
prost-types/README.md(#1262)
Styling
Testing
v0.14.0
PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.
Breaking changes
-
prost: Relax Message Debug trait bound (#1147)
BREAKING CHANGE:
trait Debugwas a supertrait oftrait Message. This is no longer required byprost. If your code relies ontrait Debugbeing implemented for everyimpl Message, you must now explicitly state that you require both Debug and Message. For example:where M: Debug + Message -
prost: Remove prost-derive feature (#1247)
BREAKING CHANGE: Feature flag
prost-deriveis renamed toderive. Please rename any usage ofprost-derivefeature in yourCargo.toml. -
prost-build: Emit
reruncommands (#1140)BREAKING CHANGE: Previously
cargoassumed it had to rerunbuild.rsif any files in the project changed.prost-buildwill now emitreruncommands, which means only the explicitly marked files cause a rerun. If yourbuild.rsis dependent on any other file paths than those given toprost-build, then yourbuild.rsneeds to emitreruncommands as well. -
prost-build: Prevent repeated fields to be boxed (#1237)
BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as
Vec<Box<T>>. Those fields are now simply typed asVec<T>to prevent double indirection. Theboxedconfiguration is effectively ignored for repeated fields. -
prost-build: Make
type_name_domaincumulative (#1228)BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to
prost_build::Config::type_name_domainare now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. -
prost-build: Derive Eq and Hash trait for messages where possible (#1175)
BREAKING CHANGE:
prost-buildwill automatically derivetrait Eqandtrait Hashfor types where all field support those as well. If you manuallyimpl Eqand/orimpl Hashfor generated types, then you need to remove the manual implementation. If you usetype_attributetoderive(Eq)and/orderive(Hash), then you need to remove those.
Features
- prost-types: Implement conversion
Durationto/fromchrono::TimeDelta(#1236) - prost-build: Prepare for 2024 keyword
gen(#1257)
Dependencies
- (deps) Update pulldown-cmark to 0.13 (#1259)
- (deps) update criterion requirement from 0.5 to 0.6 (#1280)
Documentation
- Update dead link LICENSE in
prost-types/README.md(#1262)
Styling
Testing
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
⚠️ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: core/rust/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path core/rust/Cargo.toml --package [email protected] --precise 0.14.1
Updating crates.io index
Updating git repository `https://github.com/temporalio/sdk-core`
From https://github.com/temporalio/sdk-core
* [new ref] 97093c5ea4b0d933513f4c8999f7960f0c16f05f -> refs/commit/97093c5ea4b0d933513f4c8999f7960f0c16f05f
Updating git repository `https://github.com/open-telemetry/opentelemetry-rust.git`
From https://github.com/open-telemetry/opentelemetry-rust
* [new ref] e91138351a689cd21923c15eb48f5fbc95ded807 -> refs/commit/e91138351a689cd21923c15eb48f5fbc95ded807
Updating git submodule `https://github.com/open-telemetry/opentelemetry-proto`
From https://github.com/open-telemetry/opentelemetry-proto
* [new ref] 40b3c1b746767cbc13c2e39da3eaf1a23e54ffdd -> refs/commit/40b3c1b746767cbc13c2e39da3eaf1a23e54ffdd
error: failed to select a version for the requirement `prost = "^0.13"`
candidate versions found which didn't match: 0.14.1
location searched: crates.io index
required by package `temporal-sdk-core v0.1.0 (https://github.com/temporalio/sdk-core?rev=97093c5ea4b0d933513f4c8999f7960f0c16f05f#97093c5e)`
... which satisfies git dependency `temporal-sdk-core` (locked to 0.1.0) of package `temporal_bridge v0.1.0 (/tmp/renovate/repos/github/MercuryTechnologies/hs-temporal-sdk/core/rust)`
📊 Code Coverage Report
Current PR Coverage
Overall Coverage: 🟠 57.9%
- 10147 / 17539 expressions covered
Overall Summary
| Category | Coverage |
|---|---|
| Top-level definitions | 790/2607 🔴 30.3% |
| Alternatives | 27/57 🟠 47.4% |
| Expressions | 9082/14450 🟡 62.9% |
| Local definitions | 228/368 🟡 62.0% |
| Other | 20/57 🔴 35.1% |
Coverage by Module
| Module | Coverage | Top-level | Alternatives | Expressions | Local |
|---|---|---|---|---|---|
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH.Internal |
🔴 0.0% | 0/15 🔴 0.0% | 0/2 🔴 0.0% | 0/135 🔴 0.0% | 0/2 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH |
🔴 8.2% | 1/21 🔴 4.8% | 0/16 🔴 0.0% | 41/460 🔴 8.9% | 3/36 🔴 8.3% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.SearchAttributes |
🔴 15.6% | 12/101 🔴 11.9% | N/A | 19/92 🔴 20.7% | 0/6 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common |
🔴 15.9% | 49/637 🔴 7.7% | 1/1 🟢 100.0% | 78/170 🟠 45.9% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Data.EvalRecord |
🔴 21.0% | 12/71 🔴 16.9% | N/A | 68/308 🔴 22.1% | 2/12 🔴 16.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Worker.Types |
🔴 25.0% | 9/35 🔴 25.7% | N/A | 9/37 🔴 24.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client.TestService |
🔴 32.0% | 7/16 🟠 43.8% | 1/1 🟢 100.0% | 43/139 🔴 30.9% | 3/12 🔴 25.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Definition |
🔴 35.1% | 22/57 🔴 38.6% | N/A | 24/74 🔴 32.4% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Payload |
🔴 35.4% | 38/125 🔴 30.4% | 0/5 🔴 0.0% | 162/438 🔴 37.0% | 2/4 🟠 50.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Update |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Signal |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Query |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH.Classes |
🟠 40.0% | 10/27 🔴 37.0% | N/A | 28/68 🟠 41.2% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Definition |
🟠 41.7% | 8/20 🟠 40.0% | N/A | 32/76 🟠 42.1% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Types |
🟠 45.0% | 9/21 🟠 42.9% | N/A | 9/19 🟠 47.4% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Types |
🟠 45.3% | 49/179 🔴 27.4% | N/A | 81/108 🟡 75.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Bundle |
🟠 45.5% | 9/25 🔴 36.0% | N/A | 91/199 🟠 45.7% | 10/18 🟠 55.6% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Unsafe.Handle |
🟠 49.4% | 5/8 🟡 62.5% | N/A | 72/148 🟠 48.6% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Coroutine |
🟠 49.7% | 12/23 🟠 52.2% | N/A | 65/132 🟠 49.2% | 3/6 🟠 50.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.WorkflowInstance |
🟠 50.0% | 1/1 🟢 100.0% | N/A | 1/3 🔴 33.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.EphemeralServer |
🟠 50.0% | 4/13 🔴 30.8% | N/A | 64/122 🟠 52.5% | 0/1 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common.Async |
🟠 50.0% | 1/2 🟠 50.0% | N/A | 10/20 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Exception |
🟠 52.0% | 84/291 🔴 28.9% | 2/3 🟡 66.7% | 301/455 🟡 66.2% | 5/5 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Testing.MockActivityEnvironment |
🟠 52.9% | 7/14 🟠 50.0% | N/A | 43/85 🟠 50.6% | 5/5 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Operator |
🟠 55.6% | 3/12 🔴 25.0% | 1/1 🟢 100.0% | 53/92 🟠 57.6% | 2/2 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow |
🟠 58.2% | 38/104 🔴 36.5% | 2/3 🟡 66.7% | 1237/2085 🟠 59.3% | 31/56 🟠 55.4% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Worker |
🟠 59.1% | 42/111 🔴 37.8% | 1/1 🟢 100.0% | 601/997 🟡 60.3% | 34/39 🟢 87.2% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Internal.Monad |
🟡 60.7% | 135/254 🟠 53.1% | 1/3 🔴 33.3% | 617/980 🟡 63.0% | 2/3 🟡 66.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client.Types |
🟡 65.5% | 49/104 🟠 47.1% | N/A | 124/159 🟡 78.0% | 0/1 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Interceptor |
🟡 67.6% | 15/33 🟠 45.5% | N/A | 56/72 🟡 77.8% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity |
🟡 69.8% | 3/6 🟠 50.0% | N/A | 84/120 🟡 70.0% | 3/3 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Duration |
🟡 70.9% | 27/64 🟠 42.2% | 6/7 🟢 85.7% | 213/274 🟡 77.7% | 6/9 🟡 66.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.WorkflowInstance |
🟡 71.2% | 18/22 🟢 81.8% | 2/2 🟢 100.0% | 1258/1767 🟡 71.2% | 29/42 🟡 69.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client |
🟡 73.6% | 34/78 🟠 43.6% | 5/7 🟡 71.4% | 1455/1945 🟡 74.8% | 26/33 🟡 78.8% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Contrib.OpenTelemetry |
🟡 73.8% | 3/7 🟠 42.9% | N/A | 518/700 🟡 74.0% | 12/15 🟢 80.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Internal.Instance |
🟡 74.2% | 6/8 🟡 75.0% | N/A | 132/178 🟡 74.2% | 6/8 🟡 75.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Worker |
🟡 75.2% | 23/36 🟡 63.9% | N/A | 420/555 🟡 75.7% | 10/11 🟢 90.9% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common.Logging |
🟢 81.0% | 11/14 🟡 78.6% | 1/1 🟢 100.0% | 87/106 🟢 82.1% | 3/4 🟡 75.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Testing.Assertions |
🟢 81.1% | 6/11 🟠 54.5% | N/A | 24/26 🟢 92.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Worker |
🟢 84.7% | 15/22 🟡 68.2% | 1/1 🟢 100.0% | 630/740 🟢 85.1% | 22/26 🟢 84.6% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Eval |
🟢 91.1% | 4/4 🟢 100.0% | 3/3 🟢 100.0% | 300/329 🟢 91.2% | 9/9 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.SearchAttributes.Internal |
🟢 93.3% | 5/5 🟢 100.0% | N/A | 23/25 🟢 92.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Unsafe |
🟢 100.0% | 1/1 🟢 100.0% | N/A | 6/6 🟢 100.0% | N/A |
🟢 ≥80% 🟡 ≥60% 🟠 ≥40% 🔴 <40%
📈 Coverage Comparison vs. Main
➡️ Coverage unchanged at 57.9%
Main Branch Coverage (for comparison)
Overall Coverage: 🟠 57.9%
- 10147 / 17539 expressions covered
Overall Summary
| Category | Coverage |
|---|---|
| Top-level definitions | 790/2607 🔴 30.3% |
| Alternatives | 27/57 🟠 47.4% |
| Expressions | 9082/14450 🟡 62.9% |
| Local definitions | 228/368 🟡 62.0% |
| Other | 20/57 🔴 35.1% |
Coverage by Module
| Module | Coverage | Top-level | Alternatives | Expressions | Local |
|---|---|---|---|---|---|
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH.Internal |
🔴 0.0% | 0/15 🔴 0.0% | 0/2 🔴 0.0% | 0/135 🔴 0.0% | 0/2 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH |
🔴 8.2% | 1/21 🔴 4.8% | 0/16 🔴 0.0% | 41/460 🔴 8.9% | 3/36 🔴 8.3% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.SearchAttributes |
🔴 15.6% | 12/101 🔴 11.9% | N/A | 19/92 🔴 20.7% | 0/6 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common |
🔴 15.9% | 49/637 🔴 7.7% | 1/1 🟢 100.0% | 78/170 🟠 45.9% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Data.EvalRecord |
🔴 21.0% | 12/71 🔴 16.9% | N/A | 68/308 🔴 22.1% | 2/12 🔴 16.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Worker.Types |
🔴 25.0% | 9/35 🔴 25.7% | N/A | 9/37 🔴 24.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client.TestService |
🔴 32.0% | 7/16 🟠 43.8% | 1/1 🟢 100.0% | 43/139 🔴 30.9% | 3/12 🔴 25.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Definition |
🔴 35.1% | 22/57 🔴 38.6% | N/A | 24/74 🔴 32.4% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Payload |
🔴 35.4% | 38/125 🔴 30.4% | 0/5 🔴 0.0% | 162/438 🔴 37.0% | 2/4 🟠 50.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Update |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Signal |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Query |
🟠 40.0% | 1/3 🔴 33.3% | N/A | 1/2 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.TH.Classes |
🟠 40.0% | 10/27 🔴 37.0% | N/A | 28/68 🟠 41.2% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Definition |
🟠 41.7% | 8/20 🟠 40.0% | N/A | 32/76 🟠 42.1% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Types |
🟠 45.0% | 9/21 🟠 42.9% | N/A | 9/19 🟠 47.4% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Types |
🟠 45.3% | 49/179 🔴 27.4% | N/A | 81/108 🟡 75.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Bundle |
🟠 45.5% | 9/25 🔴 36.0% | N/A | 91/199 🟠 45.7% | 10/18 🟠 55.6% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Unsafe.Handle |
🟠 49.4% | 5/8 🟡 62.5% | N/A | 72/148 🟠 48.6% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Coroutine |
🟠 49.7% | 12/23 🟠 52.2% | N/A | 65/132 🟠 49.2% | 3/6 🟠 50.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.WorkflowInstance |
🟠 50.0% | 1/1 🟢 100.0% | N/A | 1/3 🔴 33.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.EphemeralServer |
🟠 50.0% | 4/13 🔴 30.8% | N/A | 64/122 🟠 52.5% | 0/1 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common.Async |
🟠 50.0% | 1/2 🟠 50.0% | N/A | 10/20 🟠 50.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Exception |
🟠 52.0% | 84/291 🔴 28.9% | 2/3 🟡 66.7% | 301/455 🟡 66.2% | 5/5 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Testing.MockActivityEnvironment |
🟠 52.9% | 7/14 🟠 50.0% | N/A | 43/85 🟠 50.6% | 5/5 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Operator |
🟠 55.6% | 3/12 🔴 25.0% | 1/1 🟢 100.0% | 53/92 🟠 57.6% | 2/2 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow |
🟠 58.2% | 38/104 🔴 36.5% | 2/3 🟡 66.7% | 1237/2085 🟠 59.3% | 31/56 🟠 55.4% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Worker |
🟠 59.1% | 42/111 🔴 37.8% | 1/1 🟢 100.0% | 601/997 🟡 60.3% | 34/39 🟢 87.2% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Internal.Monad |
🟡 60.7% | 135/254 🟠 53.1% | 1/3 🔴 33.3% | 617/980 🟡 63.0% | 2/3 🟡 66.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client.Types |
🟡 65.5% | 49/104 🟠 47.1% | N/A | 124/159 🟡 78.0% | 0/1 🔴 0.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Interceptor |
🟡 67.6% | 15/33 🟠 45.5% | N/A | 56/72 🟡 77.8% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity |
🟡 69.8% | 3/6 🟠 50.0% | N/A | 84/120 🟡 70.0% | 3/3 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Duration |
🟡 70.9% | 27/64 🟠 42.2% | 6/7 🟢 85.7% | 213/274 🟡 77.7% | 6/9 🟡 66.7% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.WorkflowInstance |
🟡 71.2% | 18/22 🟢 81.8% | 2/2 🟢 100.0% | 1258/1767 🟡 71.2% | 29/42 🟡 69.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Client |
🟡 73.6% | 34/78 🟠 43.6% | 5/7 🟡 71.4% | 1455/1945 🟡 74.8% | 26/33 🟡 78.8% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Contrib.OpenTelemetry |
🟡 73.8% | 3/7 🟠 42.9% | N/A | 518/700 🟡 74.0% | 12/15 🟢 80.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Internal.Instance |
🟡 74.2% | 6/8 🟡 75.0% | N/A | 132/178 🟡 74.2% | 6/8 🟡 75.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Activity.Worker |
🟡 75.2% | 23/36 🟡 63.9% | N/A | 420/555 🟡 75.7% | 10/11 🟢 90.9% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Common.Logging |
🟢 81.0% | 11/14 🟡 78.6% | 1/1 🟢 100.0% | 87/106 🟢 82.1% | 3/4 🟡 75.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Testing.Assertions |
🟢 81.1% | 6/11 🟠 54.5% | N/A | 24/26 🟢 92.3% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Worker |
🟢 84.7% | 15/22 🟡 68.2% | 1/1 🟢 100.0% | 630/740 🟢 85.1% | 22/26 🟢 84.6% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Eval |
🟢 91.1% | 4/4 🟢 100.0% | 3/3 🟢 100.0% | 300/329 🟢 91.2% | 9/9 🟢 100.0% |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.SearchAttributes.Internal |
🟢 93.3% | 5/5 🟢 100.0% | N/A | 23/25 🟢 92.0% | N/A |
temporal-sdk-2025.10.1.0-2GLkjAgtube2wLzBMhfM5i/Temporal.Workflow.Unsafe |
🟢 100.0% | 1/1 🟢 100.0% | N/A | 6/6 🟢 100.0% | N/A |
🟢 ≥80% 🟡 ≥60% 🟠 ≥40% 🔴 <40%