diff --git a/CHANGELOG.md b/CHANGELOG.md index 3075224..11aa927 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.6.8 +- [bb layer] Upgrade Babashka to v1.3.190 + ## 0.6.6 See [migration guide](https://fierycod.github.io/holy-lambda/#/migration-guide) diff --git a/modules/holy-lambda-babashka-layer/Dockerfile-amd64.bb b/modules/holy-lambda-babashka-layer/Dockerfile-amd64.bb index 3ab2ceb..5742fb4 100644 --- a/modules/holy-lambda-babashka-layer/Dockerfile-amd64.bb +++ b/modules/holy-lambda-babashka-layer/Dockerfile-amd64.bb @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y wget zip ENV GITLIBS=".gitlibs/" ENV CLOJURE_TOOLS_DIR=/opt -ARG BABASHKA_VERSION=0.9.162 +ARG BABASHKA_VERSION=1.3.190 COPY bootstrap . COPY hacks.clj . diff --git a/modules/holy-lambda-babashka-layer/Dockerfile-arm64.bb b/modules/holy-lambda-babashka-layer/Dockerfile-arm64.bb index fae1cc5..c80a34b 100644 --- a/modules/holy-lambda-babashka-layer/Dockerfile-arm64.bb +++ b/modules/holy-lambda-babashka-layer/Dockerfile-arm64.bb @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y wget zip ENV GITLIBS=".gitlibs/" ENV CLOJURE_TOOLS_DIR=/opt -ARG BABASHKA_VERSION=0.9.162 +ARG BABASHKA_VERSION=1.3.190 COPY bootstrap . COPY hacks.clj . diff --git a/modules/holy-lambda-babashka-layer/README-amd64.md b/modules/holy-lambda-babashka-layer/README-amd64.md index fd94d2c..41ad176 100644 --- a/modules/holy-lambda-babashka-layer/README-amd64.md +++ b/modules/holy-lambda-babashka-layer/README-amd64.md @@ -2,8 +2,8 @@ [Holy Lambda](https://github.com/FieryCod/holy-lambda) is an extraordinary simple, performant, and extensible custom AWS Lambda runtime for Clojure. - Architecture: amd64 -- Babashka: 0.9.162 -- Semantic version: 0.7.0 +- Babashka: 1.3.190 +- Semantic version: 0.8.0 # Documentation The holy-lambda documentation is available [here](https://fierycod.github.io/holy-lambda). diff --git a/modules/holy-lambda-babashka-layer/README-arm64.md b/modules/holy-lambda-babashka-layer/README-arm64.md index 2b6b153..797e19e 100644 --- a/modules/holy-lambda-babashka-layer/README-arm64.md +++ b/modules/holy-lambda-babashka-layer/README-arm64.md @@ -2,8 +2,8 @@ [Holy Lambda](https://github.com/FieryCod/holy-lambda) is an extraordinary simple, performant, and extensible custom AWS Lambda runtime for Clojure. - Architecture: arm64 -- Babashka: 0.9.162 -- Semantic version: 0.7.0 +- Babashka: 1.3.190 +- Semantic version: 0.8.0 # Documentation The holy-lambda documentation is available [here](https://fierycod.github.io/holy-lambda). diff --git a/modules/holy-lambda-babashka-layer/packaged-amd64.yml b/modules/holy-lambda-babashka-layer/packaged-amd64.yml index 3e5bb44..784c04d 100644 --- a/modules/holy-lambda-babashka-layer/packaged-amd64.yml +++ b/modules/holy-lambda-babashka-layer/packaged-amd64.yml @@ -1,7 +1,7 @@ AWSTemplateFormatVersion: 2010-09-09 Transform: AWS::Serverless-2016-10-31 Description: 'Holy-lambda micro framework babashka compatible runtime/backend layer: - - Architecture: amd64, - Babashka: 0.9.162, - SemanticVersion: 0.7.0 + - Architecture: amd64, - Babashka: 1.3.190, - SemanticVersion: 0.8.0 ' Resources: @@ -39,7 +39,7 @@ Metadata: - clojure SpdxLicenseId: MIT Description: 'Holy-lambda micro framework babashka compatible runtime/backend - layer: - Architecture: amd64, - Babashka: 0.9.162, - SemanticVersion: 0.7.0 + layer: - Architecture: amd64, - Babashka: 1.3.190, - SemanticVersion: 0.8.0 ' LicenseUrl: s3://holy-lambda-babashka-layer/holy-lambda/85789fb51c8e8f53b03fd823913f46a9 diff --git a/modules/holy-lambda-babashka-layer/packaged-arm64.yml b/modules/holy-lambda-babashka-layer/packaged-arm64.yml index 88ab071..aebff24 100644 --- a/modules/holy-lambda-babashka-layer/packaged-arm64.yml +++ b/modules/holy-lambda-babashka-layer/packaged-arm64.yml @@ -1,7 +1,7 @@ AWSTemplateFormatVersion: 2010-09-09 Transform: AWS::Serverless-2016-10-31 Description: 'Holy-lambda micro framework babashka compatible runtime/backend layer: - - Architecture: arm64, - Babashka: 0.9.162, - SemanticVersion: 0.7.0 + - Architecture: arm64, - Babashka: 1.3.190, - SemanticVersion: 0.8.0 ' Resources: @@ -39,7 +39,7 @@ Metadata: - clojure SpdxLicenseId: MIT Description: 'Holy-lambda micro framework babashka compatible runtime/backend - layer: - Architecture: arm64, - Babashka: 0.9.162, - SemanticVersion: 0.7.0 + layer: - Architecture: arm64, - Babashka: 1.3.190, - SemanticVersion: 0.8.0 ' LicenseUrl: s3://holy-lambda-babashka-layer/holy-lambda/85789fb51c8e8f53b03fd823913f46a9 diff --git a/modules/holy-lambda-babashka-layer/publish.clj b/modules/holy-lambda-babashka-layer/publish.clj index 2f8061e..db82072 100644 --- a/modules/holy-lambda-babashka-layer/publish.clj +++ b/modules/holy-lambda-babashka-layer/publish.clj @@ -8,8 +8,8 @@ (def ARCHS #{ARM64 AMD64}) (def FILES #{"README.md.template" "Dockerfile.bb.template" "template.yml.template"}) -(def BABASHKA_VERSION "0.9.162") -(def SEMANTIC_VERSION "0.7.0") +(def BABASHKA_VERSION "1.3.190") +(def SEMANTIC_VERSION "0.8.0") (defn arch->subcord [arch] diff --git a/modules/holy-lambda-babashka-layer/template-amd64.yml b/modules/holy-lambda-babashka-layer/template-amd64.yml index 3454a41..d1e4370 100644 --- a/modules/holy-lambda-babashka-layer/template-amd64.yml +++ b/modules/holy-lambda-babashka-layer/template-amd64.yml @@ -3,8 +3,8 @@ Transform: AWS::Serverless-2016-10-31 Description: > Holy-lambda micro framework babashka compatible runtime/backend layer: - Architecture: amd64, - - Babashka: 0.9.162, - - SemanticVersion: 0.7.0 + - Babashka: 1.3.190, + - SemanticVersion: 0.8.0 Resources: BabashkaLayer: @@ -36,8 +36,8 @@ Metadata: Description: > Holy-lambda micro framework babashka compatible runtime/backend layer: - Architecture: amd64, - - Babashka: 0.9.162, - - SemanticVersion: 0.7.0 + - Babashka: 1.3.190, + - SemanticVersion: 0.8.0 LicenseUrl: LICENSE ReadmeUrl: README-amd64.md SourceCodeUrl: https://github.com/FieryCod/holy-lambda/tree/master/modules/holy-lambda-babashka-layer diff --git a/modules/holy-lambda-babashka-layer/template-arm64.yml b/modules/holy-lambda-babashka-layer/template-arm64.yml index 1dcf598..3da444b 100644 --- a/modules/holy-lambda-babashka-layer/template-arm64.yml +++ b/modules/holy-lambda-babashka-layer/template-arm64.yml @@ -3,8 +3,8 @@ Transform: AWS::Serverless-2016-10-31 Description: > Holy-lambda micro framework babashka compatible runtime/backend layer: - Architecture: arm64, - - Babashka: 0.9.162, - - SemanticVersion: 0.7.0 + - Babashka: 1.3.190, + - SemanticVersion: 0.8.0 Resources: BabashkaLayer: @@ -36,8 +36,8 @@ Metadata: Description: > Holy-lambda micro framework babashka compatible runtime/backend layer: - Architecture: arm64, - - Babashka: 0.9.162, - - SemanticVersion: 0.7.0 + - Babashka: 1.3.190, + - SemanticVersion: 0.8.0 LicenseUrl: LICENSE ReadmeUrl: README-arm64.md SourceCodeUrl: https://github.com/FieryCod/holy-lambda/tree/master/modules/holy-lambda-babashka-layer