16 Commits

Author SHA1 Message Date
Unbound Release f159632ef9 chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
Unbound Release 8f75e44c71 chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
Unbound Release 6610660b9d chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
Unbound Release 19d2993f25 chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
Unbound Release 87f52e63c6 chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
Unbound Release 21ed9198d7 chore(release): prepare for v0.3.11 2025-12-30 15:15:33 +00:00
argoyle fea69bc45c Merge branch 'renovate/golang-1.25.5' into 'main'
chore(deps): update golang:1.25.5 docker digest to ad03ba9

See merge request unboundsoftware/pre-commit!110
2025-12-30 15:57:27 +01:00
Renovate 6aee48d5ef chore(deps): update golang:1.25.5 docker digest to ad03ba9 2025-12-30 03:58:12 +00:00
argoyle 87f2afe263 Merge branch 'renovate/golang-1.25.5' into 'main'
chore(deps): update golang:1.25.5 docker digest to 0c27bcf

See merge request unboundsoftware/pre-commit!107
2025-12-09 15:11:34 +01:00
Renovate 282175daf3 chore(deps): update golang:1.25.5 docker digest to 0c27bcf 2025-12-09 15:01:30 +01:00
argoyle f1cda3a703 Merge branch 'fix/ci-unset-buildkitd-host' into 'main'
fix(ci): unset BUILDKITD_HOST in the build stage

See merge request unboundsoftware/pre-commit!108
2025-12-09 15:01:07 +01:00
argoyle 609c12da30 fix(ci): unset BUILDKITD_HOST in the build stage
Unset the BUILDKITD_HOST variable in the build stage to ensure  
consistent build environments and prevent potential build issues.  
This change improves the CI/CD process reliability.
2025-12-09 14:49:41 +01:00
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
4 changed files with 21 additions and 3 deletions
+1
View File
@@ -14,5 +14,6 @@ build:
stage: build
script:
- unset BUILDTOOLS_CONTENT
- unset BUILDKIT_HOST
- build
- push
+1 -1
View File
@@ -1 +1 @@
{"version":"v0.3.9"}
{"version":"v0.3.11"}
+17
View File
@@ -2,6 +2,23 @@
All notable changes to this project will be documented in this file.
## [0.3.11] - 2025-12-30
### 🐛 Bug Fixes
- *(ci)* Unset BUILDKITD_HOST in the build stage
### ⚙️ Miscellaneous Tasks
- *(deps)* Update golang:1.25.5 docker digest to 0c27bcf
- *(deps)* Update golang:1.25.5 docker digest to ad03ba9
## [0.3.10] - 2025-12-03
### 🐛 Bug Fixes
- Add libyaml-dev to Dockerfile dependencies
## [0.3.9] - 2025-12-03
### 🐛 Bug Fixes
+2 -2
View File
@@ -1,9 +1,9 @@
FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d3c3db04a712e1898
FROM amd64/golang:1.25.5@sha256:ad03ba93327b8a6143b49373790b5d92c28067bdb814418509466122ee9c9e63
ENV PATH=${PATH}:/root/.local/bin
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/* && \
go install github.com/lietu/go-pre-commit@latest && \
go install golang.org/x/tools/cmd/goimports@latest && \