4 Commits

Author SHA1 Message Date
argoyle c30f8ba6e1 Merge branch 'next-release' into 'main'
chore(release): prepare for v0.3.10

See merge request unboundsoftware/pre-commit!106
2025-12-03 14:35:47 +01:00
Unbound Release 5389f7fefb chore(release): prepare for v0.3.10 2025-12-03 14:35:47 +01:00
argoyle 1a4af60366 Merge branch 'fix/add-libyaml-dev-to-dockerfile' into 'main'
fix: add libyaml-dev to Dockerfile dependencies

See merge request unboundsoftware/pre-commit!105
2025-12-03 14:13:24 +01:00
argoyle 9783e06264 fix: add libyaml-dev to Dockerfile dependencies
Include libyaml-dev in the list of installed packages to ensure 
support for YAML parsing in the application. This change is made to 
meet project requirements and improve functionality.
2025-12-03 13:11:51 +01:00
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
{"version":"v0.3.9"} {"version":"v0.3.10"}
+6
View File
@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.3.10] - 2025-12-03
### 🐛 Bug Fixes
- Add libyaml-dev to Dockerfile dependencies
## [0.3.9] - 2025-12-03 ## [0.3.9] - 2025-12-03
### 🐛 Bug Fixes ### 🐛 Bug Fixes
+1 -1
View File
@@ -3,7 +3,7 @@ FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d
ENV PATH=${PATH}:/root/.local/bin ENV PATH=${PATH}:/root/.local/bin
RUN apt update && \ RUN apt update && \
apt install -y python3 python3-pip ruby ruby-dev git pipx libffi-dev && \ apt install -y python3 python3-pip ruby ruby-dev git pipx libffi-dev libyaml-dev && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
go install github.com/lietu/go-pre-commit@latest && \ go install github.com/lietu/go-pre-commit@latest && \
go install golang.org/x/tools/cmd/goimports@latest && \ go install golang.org/x/tools/cmd/goimports@latest && \