Skip to content

Commit 5b0c2b9

Browse files
committed
📦 updates HDK for v0.3.8
1 parent a38988b commit 5b0c2b9

13 files changed

+30
-22
lines changed

Taskfile.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ tasks:
2424
#TAG: "v0.3.4"
2525
#TAG: "v0.3.5"
2626
#TAG: "v0.3.6" # next release
27-
TAG: "v0.3.7" # next release (this is a pre-release)
27+
#TAG: "v0.3.7" # next release (this is a pre-release)
28+
TAG: "v0.3.8"
29+
2830
cmds:
2931
- echo "📦 Generating release..."
3032
- git add .
@@ -34,13 +36,13 @@ tasks:
3436

3537
remove-tag:
3638
env:
37-
TAG: "v0.3.7"
39+
TAG: "v0.3.8"
3840
cmds:
3941
- git tag -d ${TAG}
4042

4143
build-releases:
4244
env:
43-
TAG: "v0.3.7"
45+
TAG: "v0.3.8"
4446
cmds:
4547
- |
4648
cd capsule-cli
@@ -73,7 +75,7 @@ tasks:
7375
build-push-docker-image:
7476
vars:
7577
IMAGE_BASE_NAME: "capsule-http"
76-
IMAGE_TAG: "0.3.7"
78+
IMAGE_TAG: "0.3.8"
7779
cmds:
7880
- echo "👋 {{.IMAGE_BASE_NAME}}-{{.GOOS}}-{{.GOARCH}}:{{.IMAGE_TAG}}"
7981
- |

capsctl/description.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CapsCtl v0.3.7 🥦 [broccoli]
1+
CapsCtl v0.3.8 🥬 [leafy greens]

capsule-cli/description.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[CLI] v0.3.7 🥦 [broccoli]
1+
[CLI] v0.3.8 🥬 [leafy greens]

capsule-http/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
FROM golang:1.20-1-buster as build-env
2+
13
FROM scratch
4+
COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
25
ADD capsule-http ./

capsule-http/Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks:
6363
GOOS: "linux"
6464
GOARCH: "arm64"
6565
IMAGE_BASE_NAME: "capsule-http"
66-
IMAGE_TAG: "0.3.7"
66+
IMAGE_TAG: "0.3.8"
6767
cmds:
6868
- |
6969
IMAGE_NAME="${IMAGE_BASE_NAME}-${GOOS}-${GOARCH}"

capsule-http/description.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[HTTP] v0.3.7 🥦 [broccoli]
1+
[HTTP] v0.3.8 🥬 [leafy greens]

capsule-http/functions/hello-world/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM botsgarden/capsule-http-linux-arm64:0.3.7
1+
FROM botsgarden/capsule-http-linux-arm64:0.3.8
22
COPY hello-world.wasm .
33
EXPOSE 8080
44
CMD ["/capsule-http", "--wasm=./hello-world.wasm", "--httpPort=8080"]

docs/capsule-http-faas-mode.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A Capsule HTTP server can start/spawn other Capsule HTTP server processes.
1010
### Install the last version of Capsule HTTP
1111

1212
```bash
13-
VERSION="v0.3.7" OS="linux" ARCH="arm64"
13+
VERSION="v0.3.8" OS="linux" ARCH="arm64"
1414
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
1515
chmod +x capsule-http
1616
sudo cp capsule-http /usr/local/bin/capsule-http
@@ -24,7 +24,7 @@ capsule-http --version
2424
**CapsCtl** is a CLI to send commands to the Capsule HTTP server when it is unning in **FaaS** mode.
2525

2626
```bash
27-
VERSION="v0.3.7" OS="linux" ARCH="arm64"
27+
VERSION="v0.3.8" OS="linux" ARCH="arm64"
2828
wget -O capsctl https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsctl-${VERSION}-${OS}-${ARCH}
2929
chmod +x capsctl
3030
sudo cp capsctl /usr/local/bin/capsctl
@@ -47,7 +47,7 @@ You should get an output like this:
4747
```
4848
2023/05/29 15:12:18 🚀 faas mode activated!
4949
2023/05/29 15:12:18 📦 wasm module loaded: ./functions/index-page/index-page.wasm
50-
2023/05/29 15:12:18 💊 Capsule [HTTP] v0.3.7 🥦 [broccoli]
50+
2023/05/29 15:12:18 💊 Capsule [HTTP] v0.3.8 🥬 [leafy greens]
5151
http server is listening on: 8080 🌍
5252
```
5353

docs/docker-capsule-http.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# 🐳 Capsule HTTP Docker image
22

3-
!!! info "Capsule HTTP Docker images v0.3.7 🥦 [broccoli]"
4-
- `botsgarden/capsule-http-linux-arm64:0.3.7`
5-
- `botsgarden/capsule-http-linux-amd64:0.3.7`
3+
!!! info "Capsule HTTP Docker images v0.3.8 🥬 [leafy greens]"
4+
- `botsgarden/capsule-http-linux-arm64:0.3.8`
5+
- `botsgarden/capsule-http-linux-amd64:0.3.8`
66

77
> https://hub.docker.com/repositories/botsgarden
88
9+
**👋 testing of these images is in progress, so please be patient 🙏**
10+
911
## How to use it
1012

1113
```bash
1214
GOOS="linux"
1315
GOARCH="arm64"
14-
IMAGE_TAG="0.3.7"
16+
IMAGE_TAG="0.3.8"
1517
IMAGE_NAME="botsgarden/capsule-http-${GOOS}-${GOARCH}"
1618

1719
docker run \
@@ -27,7 +29,7 @@ docker run \
2729
Create a new `Dockerfile`:
2830

2931
```dockerfile
30-
FROM botsgarden/capsule-http-linux-arm64:0.3.7
32+
FROM botsgarden/capsule-http-linux-arm64:0.3.8
3133
COPY hello-world.wasm .
3234
EXPOSE 8080
3335
CMD ["/capsule-http", "--wasm=./hello-world.wasm", "--httpPort=8080"]

docs/getting-started-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
First, download the last version of the Capsule CLI for the appropriate OS & ARCH (and release version):
66

77
```bash
8-
VERSION="v0.3.7" OS="linux" ARCH="arm64"
8+
VERSION="v0.3.8" OS="linux" ARCH="arm64"
99
wget -O capsule https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-${VERSION}-${OS}-${ARCH}
1010
chmod +x capsule
1111
```

docs/getting-started-http-ngrok.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ NGROK_AUTHTOKEN="${YOUR_NGROK_AUTHTOKEN}" \
1515
The ouput will be like this:
1616

1717
```bash
18-
2023/05/18 11:25:36 💊 Capsule v0.3.6 🫐 [blueberries] http server is listening on: 6666 🌍
18+
2023/05/18 11:25:36 💊 Capsule v0.3.8 🥬 [leafy greens] http server is listening on: 6666 🌍
1919
2023/05/18 11:25:37 👋 Ngrok tunnel created: https://d298-88-173-112-231.ngrok-free.app
2020
2023/05/18 11:25:37 🤚 Ngrok URL: /home/ubuntu/workspaces/capsule/capsule-http/ngrok.url
2121
```

docs/getting-started-http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
First, download the last version of the Capsule HTTP server for the appropriate OS & ARCH (and release version):
66

77
```bash
8-
VERSION="v0.3.7" OS="linux" ARCH="arm64"
8+
VERSION="v0.3.8" OS="linux" ARCH="arm64"
99
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
1010
chmod +x capsule-http
1111
```

release/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
👋 **be on the main branch**
88

9+
Last release: `v0.3.8 🥬 [leafy greens]`
910
Last release: `v0.3.7 🥦 [broccoli]`
1011

1112
### Update documentation content with the new tag
@@ -46,8 +47,8 @@ Run:
4647
```bash
4748
task release
4849
task build-releases
49-
task build-docker-capsule-http-image-darwin-arm64
50-
task build-docker-capsule-http-image-darwin-amd64
50+
#task build-docker-capsule-http-image-darwin-arm64
51+
#task build-docker-capsule-http-image-darwin-amd64
5152
task build-docker-capsule-http-image-linux-amd64
5253
task build-docker-capsule-http-image-linux-arm64
5354
```

0 commit comments

Comments
 (0)