-
Notifications
You must be signed in to change notification settings - Fork 503
Remove RequiresPreviewFeatures attribute for Lambda Response Streaming #2467
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
base: dev
Are you sure you want to change the base?
Changes from all commits
1b4d82a
92d4f08
df49879
93e49ad
093441b
cb305ec
d06e5f5
5a130d3
66be05c
d47cba1
9fadd95
0b07221
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| { | ||
| "Projects": [ | ||
| { | ||
| "Name": "Amazon.Lambda.Core", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Lambda response streaming is now available as GA. The RequiresPreviewFeatures attribute has been removed", | ||
| "The LambdaLogger.ConfigureStructuredLogging API has been deployed to the managed runtime. The RequiresPreviewFeatures attribute has been removed" | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.Annotations", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Updated Amazon.Lambda.Core dependency to include Lambda Response Streaming support." | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.AspNetCoreServer", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Removed RequiresPreviewFeatures attribute for Lambda Response Streaming.", | ||
| "Updated Amazon.Lambda.Core dependency to include Lambda Response Streaming support." | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.AspNetCoreServer.Hosting", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Removed RequiresPreviewFeatures attribute for Lambda Response Streaming.", | ||
| "Updated Amazon.Lambda.Core dependency to include Lambda Response Streaming support." | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.PowerShellHost", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Updated Amazon.Lambda.Core dependency to include Lambda Response Streaming support." | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are you missing some csproj updates or somthing somewhere?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The csproj files have the project reference to Amazon.Lambda.Core. So when we do the release the project reference will cause the dependency version for the generated nuspec file to have the new version of Amazon.Lambda.Core. So there is nothing to change in the csproj file. If it was a package reference then you would see a csrpoj change. |
||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.RuntimeSupport", | ||
| "Type": "Minor", | ||
| "ChangelogMessages": [ | ||
| "Updated Amazon.Lambda.Core dependency to include Lambda Response Streaming support." | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| using Xunit; | ||
|
|
||
| namespace Amazon.Lambda.AspNetCoreServer.Hosting.Tests; | ||
|
|
||
| /// <summary> | ||
| /// Groups tests that mutate the process-wide AWS_LAMBDA_FUNCTION_NAME (and related) environment | ||
| /// variables via <see cref="Amazon.Lambda.AspNetCoreServer.Test.EnvironmentVariableHelper"/>. xUnit runs | ||
| /// all classes in a single collection sequentially, so applying [Collection(Name)] to these classes | ||
| /// prevents them from running in parallel and clobbering each other's environment variables - which | ||
| /// otherwise causes intermittent failures (for example a test that expects the variable to be unset | ||
| /// running while another test has it set). | ||
| /// </summary> | ||
| [CollectionDefinition(Name)] | ||
| public class EnvironmentVariableCollection | ||
| { | ||
| public const string Name = "EnvironmentVariable"; | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.