Releases: cythral/lambdajection
Releases · cythral/lambdajection
v0.10.0-beta3
Enhancements
- Enables .NET 7 Support & Drops .NET 6 Support
v0.10.0-beta2
Enhancements
- Adds an attribute to each Lambdajection assembly called
LambdajectionVersion
which can be used to retrieve the NuGet Package Version of Lambdajection being used.
v0.10.0-beta1
Enhancements
- Uncaught exceptions are now logged as critical errors.
- Exceptions are logged under the "Lambdajection" Log Category, which can be filtered out via ILambdaStartup.ConfigureLogging.
- The Lambdajection Lambda Layer now supports arm64-based lambdas.
v0.9.2
v0.9.1
Bug Fixes
- Fixes an issue where wrong assembly versions may be loaded into the generator's AssemblyLoadContext.
v0.9.0
Enhancements
- Request serialization / deserialization is now handled by Lambdajection instead of the serializers provided by Amazon's Runtime Support. This implementation is purely System.Text.Json-based.
- X-Ray Active Tracing can now be easily enabled by adding a PackageReference to the new Lambdajection.Tracing package.
- Enables .NET 6 Support and drops .NET 5 support.
- SNS Event Handling is now built in to Lambdajection. Add the Lambdajection.Sns package to your project and use the SnsEventHandlerAttribute to denote Lambdas that are sourced from SNS events. The lambda handler will be invoked once for each SNS record received.
- A model for CloudFormation Stack Notifications is included in the Lambdajection.Sns package for processing stack notification events.
- The lambda output for Custom Resources is now the full response that would've been sent to CloudFormation, rather than just the output data.
Prerelease Links
https://github.com/cythral/lambdajection/releases/tag/v0.9.0-beta1
https://github.com/cythral/lambdajection/releases/tag/v0.9.0-beta2
https://github.com/cythral/lambdajection/releases/tag/v0.9.0-beta3
https://github.com/cythral/lambdajection/releases/tag/v0.9.0-beta4
https://github.com/cythral/lambdajection/releases/tag/v0.9.0-beta5
Whats Next?
Please look forward to more built-in event handling and continued improvements to serialization/deserialization in v0.10.0 coming early 2022.
v0.9.0-beta5
Bug Fixes
- Fixes an issue where deserializing an SnsMessage`CloudFormationStackEvent would result in an error about newlines are not allowed in JSON strings.
v0.9.0-beta4
Enhancements
- CloudFormationStackEvent objects are now serializable.
- ResponseURL is now an optional argument to custom resource requests, to allow for easier testing.
- The lambda output for Custom Resources is now the full response that would've been sent to CloudFormation, rather than just the output data.
Bug Fixes
- Fixes an issue where SnsMessage objects would fail to deserialize.
v0.9.0-beta3
New Features
- SNS Event Handling is now built in to Lambdajection. Add the Lambdajection.Sns package to your project and use the SnsEventHandlerAttribute to denote Lambdas that are sourced from SNS events. The lambda handler will be invoked once for each SNS record received.
- A model for CloudFormation Stack Notifications is included in the Lambdajection.Sns package for processing stack notification events.
v0.9.0-beta2
- Enables .NET 6 support
- Lambdajection.Layer no longer contains pre-optimized packages due to a bug in the .NET 6 SDK.
- Lambdas that include Lambdajection.Runtime will now have to set RuntimeIdentifier and SelfContained properties to true in their csproj due to backwards-incompatible changes in the .NET SDK starting in version 6.0.100.