Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build(deps): bump the temporal group with 4 updates #7

Merged
merged 2 commits into from
Sep 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 5, 2024

Bumps the temporal group with 4 updates: Temporalio, Temporalio.Extensions.OpenTelemetry, Temporalio.Extensions.Hosting and Temporalio.Extensions.DiagnosticSource.

Updates Temporalio from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio.Extensions.OpenTelemetry from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio.Extensions.OpenTelemetry's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio.Extensions.Hosting from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio.Extensions.Hosting's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio.Extensions.DiagnosticSource from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio.Extensions.DiagnosticSource's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Updates Temporalio from 1.2.0 to 1.3.0

Release notes

Sourced from Temporalio's releases.

1.3.0

Get from NuGet and read the README

Highlights

Warn on Unfinished Workflow Handlers

Previously if you had a signal handler or update handler that was not complete when the workflow was marked complete, it'd silently be ignored/abandoned. Now you will get a warning. Users are encouraged to add await Workflow.WaitConditionAsync(() => Workflow.AllHandlersFinished); to the bottom of their workflow to ensure they have no outstanding handlers. If the previous no-warn situation is preferred, the signal/update attribute has a setting to just abandon.

New Deterministic Async Helpers

While many Task based calls are safe for use in workflows (e.g. Task.WhenAll) there are some that are not (e.g. Task.Run). So instead of only having some safe implementations of these and documenting others are safe, we wrapped multiple in general. Some were added this release, so overall the set is:

  • Workflow.DelayAsync - Safe form of Task.Delay
  • Workflow.RunTaskAsync - Safe form of Task.Run or Task.Factory.StartNew
  • Workflow.WhenAllAsync - Safe form of Task.WhenAll
  • Workflow.WhenAnyAsync - Safe form of Task.WhenAny
  • Temporalio.Workflows.Mutex - Safe form of System.Threading.Mutex
  • Temporalio.Workflows.Semaphore - Safe form of System.Threading.Semaphore or System.Threading.SemaphoreSlim

Cloud Operations Client (EXPERIMENTAL)

For making operation-based calls against the cloud, there is now a Temporalio.Client.TemporalCloudOperationsClient that implements ITemporalCloudOperationsClient and contains a static ConnectAsync method that works similar to the TemporalClient version. There is a CloudService property on this client that gives raw access to the gRPC service.

This SDK API and the cloud operations API is experimental and may change in incompatible ways in the future.

Resource-based Worker Auto-tuning (EXPERIMENTAL)

Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. TemporalWorkerOptions now has a Tuner field that can be set with an instance of Temporalio.Worker.Tuning.IWorkerTuner. This can be a fixed-size based tuner via WorkerTuner.CreateFixedSize or based on resources via WorkerTuner.CreateResourceBased. Technically the interface can be manually implemented to return custom ISlotSuppliers, but only fixed-size and resource-based slot suppliers are currently supported, custom slot suppliers will appear in the future.

This SDK API is experimental and may change in incompatible ways in the future.

Specific Changes

2024-07-01 - 29753e5 - Expose resource based autotuning (#293) 2024-07-01 - 9ce6b8f - Added exception notation to ConnectAsync method (#295) 2024-07-02 - 0d0334f - Minor test fixes (#296)

... (truncated)

Commits
  • 973257a Update core, release version, and minor docs updates (#328)
  • efdb9a0 Do not warn about leftover handlers on workflow failure (#329)
  • 0b5a857 Fix NuGet package smoke test (#326)
  • 89c43d1 Add omes image build (#323)
  • 6695adf Add Workflow.RunTaskAsync and Workflow.WhenAllAsync (#313)
  • 9ffc963 Add features repo test to .NET CI (#324)
  • 2ce6c99 HTTP CONNECT proxy support (#318)
  • 66574bd Add rule code and edit signal warning (#317)
  • 62da5d6 Add workflow id conflict policy to signal with start (#322)
  • ac9c891 Allow updating search attributes from schedule updates (#320)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the temporal group with 4 updates: [Temporalio](https://github.com/temporalio/sdk-dotnet), [Temporalio.Extensions.OpenTelemetry](https://github.com/temporalio/sdk-dotnet), [Temporalio.Extensions.Hosting](https://github.com/temporalio/sdk-dotnet) and [Temporalio.Extensions.DiagnosticSource](https://github.com/temporalio/sdk-dotnet).


Updates `Temporalio` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio.Extensions.OpenTelemetry` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio.Extensions.Hosting` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio.Extensions.DiagnosticSource` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

Updates `Temporalio` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/temporalio/sdk-dotnet/releases)
- [Commits](temporalio/sdk-dotnet@1.2.0...1.3.0)

---
updated-dependencies:
- dependency-name: Temporalio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio.Extensions.OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio.Extensions.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio.Extensions.DiagnosticSource
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
- dependency-name: Temporalio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: temporal
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Dependency update minor Minor changes labels Sep 5, 2024
@snovak7 snovak7 self-requested a review September 5, 2024 19:46
@snovak7 snovak7 removed the minor Minor changes label Sep 5, 2024
@snovak7 snovak7 merged commit 52605c9 into main Sep 5, 2024
4 checks passed
@snovak7 snovak7 deleted the dependabot/nuget/temporal-c6a72bff5b branch September 5, 2024 19:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependency update
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant