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

Include socat in final sidecar image #33

Merged
merged 5 commits into from
Mar 4, 2024
Merged
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
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
1.3.4 (Feb 22, 2024):
1.3.1 (March 4, 2024):
- Add socat in runner image

1.3.0 (Feb 22, 2024):
- Add boringcrypto-based FIPS-compliant build for amd64/linux

1.2.0 (Jan 25, 2024):
Expand Down
2 changes: 1 addition & 1 deletion infra/sidecar.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN export GITHUB_SHA="${COMMIT_SHA}" && bash -c '\
FROM debian:12.4 AS runner

RUN apt update -y
RUN apt install -y bash ca-certificates wget
RUN apt install -y bash ca-certificates wget socat

RUN wget https://github.com/mikefarah/yq/releases/download/v4.40.5/yq_linux_amd64
RUN chmod +x yq_linux_amd64
Expand Down
2 changes: 1 addition & 1 deletion splitio/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package splitio

const Version = "1.3.0"
const Version = "1.3.1"
Loading