Skip to content

Commit f1ea74b

Browse files
committed
Update CHANGELOG and Bump Version
1 parent a84ea20 commit f1ea74b

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ 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.0] - 2025-05-09
8+
9+
### Added
10+
11+
- Add relation getters on base model structs. (thanks @parnic)
12+
- Added `--no-relation-getters` option to prevent generation relation getters on the main structs. (thanks @parnic)
13+
- Add Query, Exec, and Bind helpers to the global executor. (thanks @parnic)
14+
- BindGP
15+
- QueryRowG
16+
- QueryRowContextG
17+
- ExecG
18+
- ExecGP
19+
- QueryG
20+
- QueryGP
21+
- ExecContextG
22+
- ExecContextP
23+
- ExecContextGP
24+
- QueryContextG
25+
- QueryContextP
26+
- QueryContextGP
27+
28+
### Fixed
29+
30+
- Fix count from subquery on postgresql. (thanks @renom)
31+
- Cleanup unused imports after code generation. (thanks @eklatzer)
32+
- Fix InsertWhitelist test in composite primary key table. (thanks @benevolent0505)
33+
734
## [4.18.0] - 2025-01-03
835

936
### Added

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/volatiletech/sqlboiler/v4/importers"
1717
)
1818

19-
const sqlBoilerVersion = "4.18.0"
19+
const sqlBoilerVersion = "4.19.0"
2020

2121
var (
2222
flagConfigFile string

0 commit comments

Comments
 (0)