Skip to content

Commit 724a9cc

Browse files
committed
Update CHANGELOG and Bump Version
1 parent 0caaab0 commit 724a9cc

File tree

4 files changed

+67
-419
lines changed

4 files changed

+67
-419
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic
55
Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [4.19.1] - 2025-05-20
8+
9+
### Fixed
10+
11+
- Fix performance issue in `v4.19.0` by reverting the cleanup of unused imports.
12+
- Updated minimum required Go version to 1.23.
13+
- Updated dependencies to fix CVEs.
14+
715
## [4.19.0] - 2025-05-09
816

917
### Added

go.mod

Lines changed: 44 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/volatiletech/sqlboiler/v4
22

3-
go 1.16
3+
go 1.23.0
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.4.1
@@ -9,43 +9,71 @@ require (
99
github.com/ericlagergren/decimal v0.0.0-20190420051523-6335edbaa640
1010
github.com/friendsofgo/errors v0.9.2
1111
github.com/go-sql-driver/mysql v1.6.0
12+
github.com/google/go-cmp v0.6.0
13+
github.com/lib/pq v1.10.6
14+
github.com/microsoft/go-mssqldb v0.17.0
15+
github.com/spf13/cast v1.5.0
16+
github.com/spf13/cobra v1.5.0
17+
github.com/spf13/viper v1.12.0
18+
github.com/stretchr/testify v1.8.0
19+
github.com/volatiletech/null/v8 v8.1.2
20+
github.com/volatiletech/randomize v0.0.1
21+
github.com/volatiletech/strmangle v0.0.6
22+
modernc.org/sqlite v1.18.1
23+
)
24+
25+
require (
26+
github.com/Masterminds/goutils v1.1.1 // indirect
27+
github.com/Masterminds/semver/v3 v3.1.1 // indirect
28+
github.com/fsnotify/fsnotify v1.5.4 // indirect
1229
github.com/gofrs/uuid v4.2.0+incompatible // indirect
1330
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
14-
github.com/google/go-cmp v0.5.8
31+
github.com/golang-sql/sqlexp v0.1.0 // indirect
32+
github.com/google/uuid v1.3.0 // indirect
33+
github.com/hashicorp/hcl v1.0.0 // indirect
1534
github.com/huandu/xstrings v1.3.2 // indirect
1635
github.com/imdario/mergo v0.3.13 // indirect
1736
github.com/inconshreveable/mousetrap v1.0.1 // indirect
18-
github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
19-
github.com/lib/pq v1.10.6
20-
github.com/microsoft/go-mssqldb v0.17.0
37+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
38+
github.com/magiconair/properties v1.8.6 // indirect
39+
github.com/mattn/go-isatty v0.0.16 // indirect
2140
github.com/mitchellh/copystructure v1.2.0 // indirect
41+
github.com/mitchellh/mapstructure v1.5.0 // indirect
42+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
43+
github.com/pelletier/go-toml v1.9.5 // indirect
2244
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
45+
github.com/pmezard/go-difflib v1.0.0 // indirect
46+
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
2347
github.com/shopspring/decimal v1.3.1 // indirect
2448
github.com/spf13/afero v1.9.2 // indirect
25-
github.com/spf13/cast v1.5.0
26-
github.com/spf13/cobra v1.5.0
27-
github.com/spf13/viper v1.12.0
28-
github.com/stretchr/testify v1.8.0
49+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
50+
github.com/spf13/pflag v1.0.5 // indirect
2951
github.com/subosito/gotenv v1.4.1 // indirect
30-
github.com/volatiletech/null/v8 v8.1.2
31-
github.com/volatiletech/randomize v0.0.1
32-
github.com/volatiletech/strmangle v0.0.6
33-
golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d // indirect
34-
golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
35-
golang.org/x/tools v0.1.12 // indirect
52+
github.com/volatiletech/inflect v0.0.1 // indirect
53+
golang.org/x/crypto v0.38.0 // indirect
54+
golang.org/x/mod v0.17.0 // indirect
55+
golang.org/x/sync v0.14.0 // indirect
56+
golang.org/x/sys v0.33.0 // indirect
57+
golang.org/x/text v0.25.0 // indirect
58+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
3659
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
60+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
3761
gopkg.in/ini.v1 v1.67.0 // indirect
62+
gopkg.in/yaml.v2 v2.4.0 // indirect
63+
gopkg.in/yaml.v3 v3.0.1 // indirect
3864
lukechampine.com/uint128 v1.2.0 // indirect
3965
modernc.org/cc/v3 v3.36.3 // indirect
4066
modernc.org/ccgo/v3 v3.16.9 // indirect
4167
modernc.org/libc v1.17.1 // indirect
68+
modernc.org/mathutil v1.5.0 // indirect
69+
modernc.org/memory v1.2.1 // indirect
4270
modernc.org/opt v0.1.3 // indirect
43-
modernc.org/sqlite v1.18.1
4471
modernc.org/strutil v1.1.3 // indirect
4572
modernc.org/token v1.0.1 // indirect
4673
)
4774

4875
retract (
76+
v4.19.0 // Performance issue due to cleaning up unused imports in generated code
4977
v4.17.1 // Generates faulty code for DeleteAll if the table has multiple foreign keys
5078
v4.17.0 // Generates faulty code for DeleteAll if the table has multiple foreign keys
5179
v4.10.0 // Generated models are invalid due to a wrong assignment

0 commit comments

Comments
 (0)