swift-aws-lambda-runtime icon indicating copy to clipboard operation
swift-aws-lambda-runtime copied to clipboard

Swift implementation of AWS Lambda Runtime

Results 78 swift-aws-lambda-runtime issues
Sort by recently updated
recently updated
newest added

### Expected behavior Trying to use the archive plugin on examples is not working out of the box. In the examples directory `Package.swift` must be modified as this (note the...

### Expected behavior When a function crashes for an unexpected reason (`fatalError`, memory corruption...), the stack trace and details of the error are not stored/logged/reported to CloudWatch. I'm fairly new...

kind/enhancement

Avoid strict concurrency check warnings ### Motivation: My Lambda function is an actor to protect instances variables from race condition. ``` @main actor MyLambda: LambdaHandler { ... } ``` However,...

Introduces a system that allows to keep the execution environment running after submitting the response for a synchronous invocation. ### Note: This is a draft PR, only meant to gather...

enhancement
🔼 needs-minor-version-bump

Allow the runtime's `ByteBufferAllocator` to be shared with other systems which are initialized __before__ the handler is instantiated. ### Motivation: `LambdaRuntimeFactory.makeRuntime` is intended for scenarios requiring high customizability. It's reasonable...

enhancement

This change updates the SwiftPM plugin to include the executable's resources in the archive. ### Motivation: When deploying a Lambda function that generates HTML content I needed a way to...

enhancement

### Expected behavior Now that the [Static Linux SDK](https://www.swift.org/documentation/articles/static-linux-getting-started.html) has been released, it open the doors to cross-platform compilation from Mac that doesn't require Docker or depend on Amazon Linux....

kind/enhancement
🆕 semver/minor
status/needs-design

### Expected behavior I can't see how to test locally on the README? Some documentation suggests setting LOCAL_LAMBDA_SERVER_ENABLED in ENV, so I tried this ### Actual behavior The process exits...

This is the basis to resolve https://github.com/swift-server/swift-aws-lambda-runtime/issues/375 Missing docc, that will be added in a different PR that covers all docc changes