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

Bump AWS Lambda C++ Runtime from v0.2.8 to v0.2.10 #123

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions THIRD-PARTY-LICENSES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
** aws-lambda-cpp; version 0.2.8 -- https://github.com/awslabs/aws-lambda-cpp
** aws-lambda-cpp; version 0.2.10 -- https://github.com/awslabs/aws-lambda-cpp

Apache License

Expand Down Expand Up @@ -309,4 +309,4 @@ OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of a copyright holder shall not
be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization of the copyright holder.
in this Software without prior written authorization of the copyright holder.
Binary file added deps/aws-lambda-cpp-0.2.10.tar.gz
Binary file not shown.
Binary file removed deps/aws-lambda-cpp-0.2.8.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion deps/versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
AWS_LAMBDA_CPP_RELEASE=0.2.8
AWS_LAMBDA_CPP_RELEASE=0.2.10
CURL_VERSION=7_83_1
10 changes: 0 additions & 10 deletions test/integration/docker/Dockerfile.echo.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@ RUN apk add --update-cache \
python3 \
libcurl

# AWS Lambda CPP and libcurl rely on backtrace which requires libexecinfo from Alpine.
# Since starting from Alpine3.17 libexecinfo is no longer available, temporarily source it from Alpine3.16
# while awaiting an upstream resolution in AWS Lambda CPP.
RUN if [[ "${DISTRO_VERSION}" == "3.17" ]] || [[ "${DISTRO_VERSION}" == "3.18" ]] ; \
then \
apk add --update-cache --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ libexecinfo-dev ; \
else \
apk add --update-cache libexecinfo-dev ; \
fi

# Include global arg in this stage of the build
ARG FUNCTION_DIR
# Create function directory
Expand Down
10 changes: 0 additions & 10 deletions test/integration/docker/Dockerfile.programmatic.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@ RUN apk add --update-cache \
python3 \
libcurl

# AWS Lambda CPP and libcurl rely on backtrace which requires libexecinfo from Alpine.
# Since starting from Alpine3.17 libexecinfo is no longer available, temporarily source it from Alpine3.16
# while awaiting an upstream resolution in AWS Lambda CPP.
RUN if [[ "${DISTRO_VERSION}" == "3.17" ]] || [[ "${DISTRO_VERSION}" == "3.18" ]] ; \
then \
apk add --update-cache --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ libexecinfo-dev ; \
else \
apk add --update-cache libexecinfo-dev ; \
fi

# Include global arg in this stage of the build
ARG FUNCTION_DIR
# Create function directory
Expand Down