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

Update V3.x Branch with Latest Changes from Branch Dev #2958

Merged
merged 23 commits into from
Nov 13, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4a5edf8
Merge pull request #2559 from Azure/dev
bachuv Aug 29, 2023
c9ad121
Merge pull request #2562 from Azure/dev
bachuv Aug 31, 2023
e378bfa
Merge pull request #2579 from Azure/dev
jviau Sep 12, 2023
32680a3
Merge pull request #2583 from Azure/dev
jviau Sep 13, 2023
92c6712
Merge pull request #2637 from Azure/dev
nytian Oct 12, 2023
e7c22eb
Merge pull request #2643 from Azure/dev
nytian Oct 17, 2023
ddf88b9
Merge pull request #2670 from Azure/dev
bachuv Nov 13, 2023
3dd943b
Merge dev into main for worker extension v1.1.0 release
bachuv Nov 14, 2023
3784988
Merge pull request #2724 from Azure/dev
nytian Jan 12, 2024
0596909
Merge pull request #2817 from Azure/dev
nytian May 14, 2024
c3f5504
Merge Branch dev to Branch main #2837 from Azure/dev
nytian May 29, 2024
58cad68
build java smoke test on build pipeline (#2941)
davidmrdavid Oct 16, 2024
6a63e24
Add automated release pipeline (#2932)
davidmrdavid Oct 16, 2024
48da8ad
Merge pull request #2943 from Azure/main
davidmrdavid Oct 17, 2024
820e9dd
Fix custom connection name not working when using IDurableClientFacto…
hctan Oct 17, 2024
7dcbab4
Correct typo in analyzer description from definied -> defined (#2901)
schlechtums Oct 17, 2024
4cc6ec2
Change 'durabletask-extension.official' to `durable-extension.officia…
davidmrdavid Oct 21, 2024
a7c6d69
Implement CreateHttpManagementPayload API in Durable Worker Extension…
nytian Oct 23, 2024
8470f3d
Fail fast if `ExtendedSessionsEnabled` is requested for a non-.NET wo…
gukoff Oct 28, 2024
79e2295
Add WaitForCompletionOrCreateCheckStatusResponseAsync to Microsoft.Az…
dixonte Nov 5, 2024
aa30752
Make durable client registration idempotent. (#2950)
jviau Nov 8, 2024
9facae2
merge latest change from main
nytian Nov 13, 2024
cbedfe5
update CustomTestStorageAccountProvider to use IStorageServiceClientP…
nytian Nov 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change 'durabletask-extension.official' to `durable-extension.officia…
…l' in publish pipeline (#2947)
davidmrdavid authored Oct 21, 2024
commit 4cc6ec2167bcc3b027dbf382a4540c0524955ce3
2 changes: 1 addition & 1 deletion eng/ci/publish.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ resources:

pipelines:
- pipeline: officialPipeline # Reference to the pipeline to be used as an artifact source
source: 'durabletask-extension.official'
source: 'durable-extension.official'

extends:
template: v1/1ES.Official.PipelineTemplate.yml@1es

Unchanged files with check annotations Beta

[FunctionName("Multiply")]
public async Task<int> Multiply(
[OrchestrationTrigger] ITypedDurableOrchestrationContext context

Check warning on line 106 in src/DurableFunctions.TypedInterfaces/Example/Calculator.cs

GitHub Actions / Analyze (csharp)

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.

Check warning on line 106 in src/DurableFunctions.TypedInterfaces/Example/Calculator.cs

GitHub Actions / Analyze (csharp)

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.

Check warning on line 106 in src/DurableFunctions.TypedInterfaces/Example/Calculator.cs

GitHub Actions / build

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.

Check warning on line 106 in src/DurableFunctions.TypedInterfaces/Example/Calculator.cs

GitHub Actions / build

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.
)
{
var (num1, num2) = context.GetInput<(int, int)>();
[FunctionName("SimpleOrchestrationHttp")]
public static async Task<IActionResult> HttpStart_SimpleOrchestration(
[HttpTrigger(AuthorizationLevel.Anonymous, "get")] HttpRequest req,
[DurableClient] ITypedDurableClient client,

Check warning on line 21 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / Analyze (csharp)

DurableClient attribute is applied to a 'ITypedDurableClient' but must be used with either an IDurableClient, IDurableEntityClient, or an IDurableOrchestrationClient.

Check warning on line 21 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

DurableClient attribute is applied to a 'ITypedDurableClient' but must be used with either an IDurableClient, IDurableEntityClient, or an IDurableOrchestrationClient.

Check warning on line 21 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

DurableClient attribute is applied to a 'ITypedDurableClient' but must be used with either an IDurableClient, IDurableEntityClient, or an IDurableOrchestrationClient.

Check warning on line 21 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

DurableClient attribute is applied to a 'ITypedDurableClient' but must be used with either an IDurableClient, IDurableEntityClient, or an IDurableOrchestrationClient.

Check warning on line 21 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

DurableClient attribute is applied to a 'ITypedDurableClient' but must be used with either an IDurableClient, IDurableEntityClient, or an IDurableOrchestrationClient.
ILogger log)
{
string instanceId = await client.Orchestrations.StartSimpleOrchestration(null);
[FunctionName("SimpleOrchestration")]
public static async Task<List<string>> SimpleOrchestrator(
[OrchestrationTrigger] ITypedDurableOrchestrationContext context)

Check warning on line 31 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / Analyze (csharp)

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.

Check warning on line 31 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.

Check warning on line 31 in src/DurableFunctions.TypedInterfaces/Example/SimpleOrchestration.cs

GitHub Actions / build

OrchestrationTrigger is applied to a 'ITypedDurableOrchestrationContext' but must be used with an IDurableOrchestrationContext instead.
{
var outputs = new List<string>();