File tree
4 files changed
+10
-20
lines changed- temporalio/bridge
- src
4 files changed
+10
-20
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
| |||
28 | 27 | | |
29 | 28 | | |
30 | 29 | | |
31 | | - | |
32 | | - | |
| 30 | + | |
| 31 | + | |
33 | 32 | | |
34 | 33 | | |
35 | | - | |
| 34 | + | |
36 | 35 | | |
37 | 36 | | |
38 | | - | |
| 37 | + | |
39 | 38 | | |
40 | 39 | | |
41 | 40 | | |
| |||
- .github/workflows/per-pr.yml+2
- AGENTS.md+7
- Cargo.toml+9-5
- README.md+6-5
- client/Cargo.toml+3-2
- client/src/lib.rs+16-7
- client/src/metrics.rs+57-23
- client/src/raw.rs+31-13
- core-api/Cargo.toml+2-2
- core-api/src/envconfig.rs+1-1
- core-api/src/lib.rs+9
- core-api/src/telemetry/metrics.rs+548-100
- core-c-bridge/Cargo.toml+49
- core-c-bridge/build.rs+25
- core-c-bridge/include/temporal-sdk-core-c-bridge.h+817
- core-c-bridge/src/client.rs+679
- core-c-bridge/src/lib.rs+245
- core-c-bridge/src/metric.rs+682
- core-c-bridge/src/random.rs+61
- core-c-bridge/src/runtime.rs+445
- core-c-bridge/src/testing.rs+282
- core-c-bridge/src/tests/context.rs+649
- core-c-bridge/src/tests/mod.rs+178
- core-c-bridge/src/tests/utils.rs+108
- core-c-bridge/src/worker.rs+1.1k
- core/Cargo.toml+9-9
- core/benches/workflow_replay.rs+114-15
- core/src/core_tests/queries.rs+11-2
- core/src/core_tests/workflow_tasks.rs+3-6
- core/src/ephemeral_server/mod.rs+1-19
- core/src/telemetry/metrics.rs+306-152
- core/src/telemetry/mod.rs+10-3
- core/src/telemetry/otel.rs+134-131
- core/src/telemetry/prometheus_meter.rs+885
- core/src/telemetry/prometheus_server.rs+48-28
- core/src/test_help/mod.rs+21-5
- core/src/worker/client.rs+26-5
- core/src/worker/client/mocks.rs+1-1
- core/src/worker/tuner/resource_based.rs+4-4
- core/src/worker/workflow/machines/cancel_external_state_machine.rs+1-2
- core/src/worker/workflow/machines/child_workflow_state_machine.rs+1-1
- core/src/worker/workflow/machines/nexus_operation_state_machine.rs+1-1
- core/src/worker/workflow/machines/signal_external_state_machine.rs+1-2
- core/src/worker/workflow/mod.rs+15-15
- etc/deps.svg+64-64
- sdk-core-protos/protos/api_upstream/README.md+4
- sdk-core-protos/protos/api_upstream/openapi/openapiv2.json+622-83
- sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml+620-78
- sdk-core-protos/protos/api_upstream/temporal/api/batch/v1/message.proto+4-4
- sdk-core-protos/protos/api_upstream/temporal/api/command/v1/message.proto+6-4
- sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto+2-2
- sdk-core-protos/protos/api_upstream/temporal/api/deployment/v1/message.proto+32-2
- sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/common.proto+10-1
- sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/deployment.proto+26
- sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto+2
- sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/reset.proto+4-4
- sdk-core-protos/protos/api_upstream/temporal/api/failure/v1/message.proto+2-2
- sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto+47-31
- sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto+4-4
- sdk-core-protos/protos/api_upstream/temporal/api/schedule/v1/message.proto+7-1
- sdk-core-protos/protos/api_upstream/temporal/api/worker/v1/message.proto+126
- sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto+14-11
- sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto+148-37
- sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto+21
- sdk-core-protos/src/history_builder.rs-1
- sdk-core-protos/src/lib.rs+7
- sdk/src/activity_context.rs+6-4
- sdk/src/lib.rs+48-26
- sdk/src/workflow_future.rs+10-24
- test-utils/src/lib.rs+11-3
- tests/cloud_tests.rs+2-2
- tests/heavy_tests.rs+11-3
- tests/integ_tests/client_tests.rs+12-13
- tests/integ_tests/ephemeral_server_tests.rs+1-1
- tests/integ_tests/metrics_tests.rs+169-58
- tests/integ_tests/polling_tests.rs+1-1
- tests/integ_tests/queries_tests.rs+37-20
- tests/integ_tests/update_tests.rs+1
- tests/integ_tests/worker_tests.rs+3-4
- tests/integ_tests/workflow_tests/nexus.rs+2
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
5 | 4 | | |
6 | 5 | | |
7 | 6 | | |
| |||
24 | 23 | | |
25 | 24 | | |
26 | 25 | | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
365 | 365 | | |
366 | 366 | | |
367 | 367 | | |
368 | | - | |
369 | | - | |
370 | | - | |
| 368 | + | |
371 | 369 | | |
372 | 370 | | |
373 | 371 | | |
| |||
400 | 398 | | |
401 | 399 | | |
402 | 400 | | |
403 | | - | |
404 | | - | |
405 | | - | |
| 401 | + | |
406 | 402 | | |
407 | 403 | | |
408 | 404 | | |
| |||
424 | 420 | | |
425 | 421 | | |
426 | 422 | | |
427 | | - | |
428 | | - | |
429 | | - | |
| 423 | + | |
430 | 424 | | |
431 | 425 | | |
432 | 426 | | |
| |||
446 | 440 | | |
447 | 441 | | |
448 | 442 | | |
449 | | - | |
450 | | - | |
451 | | - | |
| 443 | + | |
452 | 444 | | |
453 | 445 | | |
454 | 446 | | |
| |||
0 commit comments