Description
Problem Statement
The AWS Lambda Layer version of the Sentry SDK has as version number only an integer (because that is how AWS Lambda Layers are versioned)
Right now users have no way of knowing what Version of the AWS Lambda Layer includes what version of the Sentry SDK.
Meaning:
arn:aws:lambda:us-east-1:xxx:layer:SentryPythonServerlessSDK:125
could be Sentry SDK version1.45.0
andarn:aws:lambda:us-east-1:xxx:layer:SentryPythonServerlessSDK:126
could be Sentry SDK version2.0.0
andarn:aws:lambda:us-east-1:xxx:layer:SentryPythonServerlessSDK:127
could be Sentry SDK version1.45.1
.
There is also the problem, that the latest
version in the release registry can be a version of an old major. (in the example above 1.45.1
would be latest, not 2.0.0
.)
Solution Brainstorm
Option A)
Include the major version in the AWS Lambda Layers name. (This is what Javascript does). We would have SentryPythonServerlessSDKv2
and SentryPythonServerlessSDKv3
.
This means more work, because we need to update the release process to deploy the correctly named version of the SDK and also update the docs page to display the correct layer name (and also make it possible to select the major version of the SDK to install)
There is also an Issue for changing the release registry for making the major version selection possible: getsentry/sentry-release-registry#176
Option B) (tracked here: #3963)
Add the SDK version that is included in the layer in the layers Description
. As you can see in the screenshot above, the description is currently empty.
This would at least make it visible to the users what version of the SDK she has installed on her Lambda function.
Not as big of a change as Option A.
This would not solve the problem when deploying a bug fix version of an old major, the latest
version in the release registry will be set to this (outdated) version.