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

Sync Dev Branch #1826

Merged
merged 5 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public static HttpClient ConstructHttpClient()
private void WriteUnhandledExceptionToLog(Exception exception)
{
#if NET6_0_OR_GREATER
Client.ConsoleLogger.FormattedWriteLine(LogLevel.Error.ToString(), exception, null);
Client.ConsoleLogger.FormattedWriteLine(Amazon.Lambda.RuntimeSupport.Helpers.LogLevelLoggerWriter.LogLevel.Error.ToString(), exception, null);
#else
Console.Error.WriteLine(exception);
#endif
Expand Down
4 changes: 4 additions & 0 deletions RELEASE.CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Release 2024-09-29
* **Amazon.Lambda.Annotations (1.5.2)**
* Fixed issue with handling unicode characters when converting FromBody parameters from JSON to .NET type.

### Release 2024-09-25
* **Amazon.Lambda.Annotations (1.5.1)**
* Added a 127 character limit on the Lambda function handler when the package type is set to zip.
Expand Down
Loading