Skip to content

Commit 958f38b

Browse files
committed
Update changelog and registry.clj
1 parent 5a67b3d commit 958f38b

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.6.6
4+
See [migration guide](https://fierycod.github.io/holy-lambda/#/migration-guide)
5+
6+
- [holy-lambda] Simplify default & async retrievers
7+
- [bb tasks] Fix tasks `hl:doctor` command
8+
- [holy-lambda] Add images of GraalVM 22.2.0
9+
- [docs] Update docs
10+
- [babashka] Fix typo in babashka tutorial
11+
- [holy-lambda] Fix 1 arity of `#'hr/status`
12+
313
## 0.6.5
414
See [migration guide](https://fierycod.github.io/holy-lambda/#/migration-guide)
515

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,14 @@ The extraordinary simple, performant, and extensible custom AWS Lambda runtime f
1616
- Native Clojure (GraalVM compiled),
1717
- Clojure (much faster than official AWS Java runtime),
1818

19-
**Incoming**
20-
- [nbb](https://github.com/borkdude/nbb)
21-
- ClojureScript
22-
2319
## Goals
24-
- **Low cold starts** - Clojure goes fast on AWS Lambda!
25-
- **Multiple backends support** - Unified runtime for Clojure/script!
26-
- **Minimal API** - Just stuff that gets the job done!
20+
- **Low cold starts** - Clojure goes fast on AWS Lambda.
21+
- **Multiple backends support** - Unified runtime for Clojure.
22+
- **Minimal API** - Just stuff that gets the job done.
2723

2824
## Non-Goals
29-
- **Tight integration with deployment tools** - I don't want to do this!
25+
- **Tight integration with deployment tools** - I don't want to do this.
26+
- **ClojureScript support** - there is no additional value HL may provide for Clojurescript. Use either [nbb][https://github.com/babashka/nbb] or [shadow-cljs][https://github.com/thheller/shadow-cljs] with advanced compilation.
3027

3128
## Companies & Inviduals using Holy Lambda?
3229
- [nextdoc.io](https://nextdoc.io) - 6 native lambdas: api-gateway custom authorizer, file access control, openapi data source etc.

docker/registry.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
(= 1 (:exit @(shell-no-exit false "git" "diff" "--exit-code" "HEAD~1" "HEAD" "--" "."))))
2323

2424
(def CE_IMAGES
25-
[{:version ["22.0.0.2"]
26-
:java ["11" "17"]
27-
:arch ["amd64", "aarch64"]}
25+
[;; {:version ["22.0.0.2"]
26+
;; :java ["11" "17"]
27+
;; :arch ["amd64", "aarch64"]}
2828
;; ALREADY BUILT IMAGES
2929
;; {:version ["21.3.0"]
3030
;; :java ["17"]

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.github.FieryCod/holy-lambda "0.6.7"
1+
(defproject io.github.FieryCod/holy-lambda "0.6.6"
22
:description "Micro framework which turns your code into AWS Lambda functions"
33

44
:url "https://github.com/FieryCod/holy-lambda"

0 commit comments

Comments
 (0)