Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.24', '1.25.9']
go-version: ['1.24', '1.25.10']

steps:
- name: Checkout code
Expand Down Expand Up @@ -44,15 +44,15 @@ jobs:
continue-on-error: false

- name: Merge coverage files
if: matrix.go-version == '1.25.9'
if: matrix.go-version == '1.25.10'
run: |
# Merge coverage files using go tool cover
echo "mode: atomic" > coverage.txt
grep -h -v "^mode:" coverage-unit.txt coverage-integration-basic.txt >> coverage.txt || true
continue-on-error: false

- name: Verify coverage file exists
if: matrix.go-version == '1.25.9'
if: matrix.go-version == '1.25.10'
run: |
if [ ! -f coverage.txt ]; then
echo "Error: coverage.txt not found"
Expand All @@ -62,7 +62,7 @@ jobs:
head -5 coverage.txt

- name: Upload coverage artifact for merging
if: matrix.go-version == '1.25.9'
if: matrix.go-version == '1.25.10'
uses: actions/upload-artifact@v4
with:
name: coverage-unit-${{ github.run_id }}
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.9'
go-version: '1.25.10'
cache-dependency-path: go.sum

- name: Verify dependencies
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.9'
go-version: '1.25.10'
cache-dependency-path: go.sum

- name: Download unit test coverage artifact
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.9'
go-version: '1.25.10'
cache-dependency-path: go.sum

- name: Run linter
Expand All @@ -198,7 +198,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.9'
go-version: '1.25.10'
cache-dependency-path: go.sum

- name: Download dependencies
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.5] - 2026-05-19

### Security

- **Bumped Go to 1.25.10** — Resolves 4 Go standard library vulnerabilities reported by `govulncheck`:
- **GO-2026-4982** — XSS via meta content URL escape bypass in `html/template`
- **GO-2026-4980** — XSS via escaper bypass in `html/template`
- **GO-2026-4971** — Panic on NUL byte in `net.Dial` / `net.LookupPort` (Windows)
- **GO-2026-4918** — HTTP/2 infinite loop on bad `SETTINGS_MAX_FRAME_SIZE` in `net/http`
([#122](https://github.com/iamvirul/deepdiff-db/pull/122))

## [1.4.4] - 2026-05-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/iamvirul/deepdiff-db

go 1.25.9
go 1.25.10

require (
github.com/go-sql-driver/mysql v1.9.3
Expand Down
Loading