Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
normj committed Sep 30, 2024
2 parents deca737 + c1a2cd6 commit 7a7dc76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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

0 comments on commit 7a7dc76

Please sign in to comment.