18 Commits

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

See merge request unboundsoftware/pre-commit!101
2025-12-03 07:18:41 +01:00
Unbound Release 234c533ee1 chore(release): prepare for v0.3.8 2025-12-03 07:18:41 +01:00
argoyle d582c31201 Merge branch 'fix/dockerfile-add-libffi8' into 'main'
fix: add libffi8 to Dockerfile dependencies

See merge request unboundsoftware/pre-commit!100
2025-12-03 07:15:31 +01:00
argoyle c03b0c927d fix: add libffi8 to Dockerfile dependencies
Install libffi8 to ensure compatibility with Python packages.
2025-12-03 07:12:25 +01:00
argoyle 33d5c86d3f Merge branch 'next-release' into 'main'
chore(release): prepare for v0.3.7

See merge request unboundsoftware/pre-commit!98
2025-12-03 06:05:45 +01:00
Unbound Release bf49a63fef chore(release): prepare for v0.3.7 2025-12-03 06:05:45 +01:00
argoyle 0144a905b0 Merge branch 'renovate/golang-1.x' into 'main'
chore(deps): update golang docker tag to v1.25.5

See merge request unboundsoftware/pre-commit!99
2025-12-02 19:40:31 +01:00
Renovate 445dfa1aca chore(deps): update golang docker tag to v1.25.5 2025-12-02 18:11:20 +00:00
argoyle 1bc4a6f847 Merge branch 'renovate/golang-1.25.4' into 'main'
chore(deps): update golang:1.25.4 docker digest to efe81fa

See merge request unboundsoftware/pre-commit!97
2025-11-18 13:58:57 +01:00
Renovate 0bcf2c23f9 chore(deps): update golang:1.25.4 docker digest to efe81fa 2025-11-18 11:58:16 +00:00
argoyle a84d1f80a1 Merge branch 'next-release' into 'main'
chore(release): prepare for v0.3.6

See merge request unboundsoftware/pre-commit!94
2025-11-06 08:34:26 +01:00
Unbound Release 33825feeea chore(release): prepare for v0.3.6 2025-11-06 08:34:26 +01:00
argoyle 3f49d6eae4 Merge branch 'renovate/golang-1.x' into 'main'
chore(deps): update golang docker tag to v1.25.4

See merge request unboundsoftware/pre-commit!96
2025-11-06 07:02:51 +01:00
Renovate 355607fe9b chore(deps): update golang docker tag to v1.25.4 2025-11-05 22:10:36 +00:00
argoyle 1c72a58001 Merge branch 'renovate/golang-1.25.3' into 'main'
chore(deps): update golang:1.25.3 docker digest to 9ac0edc

See merge request unboundsoftware/pre-commit!95
2025-11-04 13:41:15 +01:00
Renovate 52bf06267e chore(deps): update golang:1.25.3 docker digest to 9ac0edc 2025-11-04 11:58:38 +00:00
argoyle 76c1201ee0 Merge branch 'renovate/golang-1.25.3' into 'main'
chore(deps): update golang:1.25.3 docker digest to 69d1009

See merge request unboundsoftware/pre-commit!93
2025-10-21 14:19:33 +02:00
Renovate 6c3215be6d chore(deps): update golang:1.25.3 docker digest to 69d1009 2025-10-21 09:57:43 +00:00
3 changed files with 24 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
{"version":"v0.3.5"} {"version":"v0.3.8"}
+21
View File
@@ -2,6 +2,27 @@
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.8] - 2025-12-03
### 🐛 Bug Fixes
- Add libffi8 to Dockerfile dependencies
## [0.3.7] - 2025-12-03
### ⚙️ Miscellaneous Tasks
- *(deps)* Update golang:1.25.4 docker digest to efe81fa
- *(deps)* Update golang docker tag to v1.25.5
## [0.3.6] - 2025-11-06
### ⚙️ Miscellaneous Tasks
- *(deps)* Update golang:1.25.3 docker digest to 69d1009
- *(deps)* Update golang:1.25.3 docker digest to 9ac0edc
- *(deps)* Update golang docker tag to v1.25.4
## [0.3.5] - 2025-10-14 ## [0.3.5] - 2025-10-14
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
+2 -2
View File
@@ -1,9 +1,9 @@
FROM amd64/golang:1.25.3@sha256:89abb76a5137ebbdccb6d993666b0561adc0718cccd827a95d6885c0c555e7dc FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d3c3db04a712e1898
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 && \ apt install -y python3 python3-pip ruby ruby-dev git pipx libffi8 && \
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 && \