Skip to content

Commit c341672

Browse files
committed
Update changelog and bump version
1 parent fd34a6f commit c341672

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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+
## [v4.12.0] - 2022-07-26
8+
9+
### Added
10+
11+
- Fetch column and table info in parallel (thanks @pavel-krush)
12+
- Generate IN/NIN methods for enum type query helpers (thanks @optiman)
13+
- Improve psql performance by isolating uniqueness query (thanks @peterldowns)
14+
- Support for psql materialized view (thanks @severedsea)
15+
- Support loading model relationships when binding to a struct with embedded model (thanks @optiman)
16+
17+
### Fixes
18+
19+
- Fix panic when missing primary key in table (thanks @zapo)
20+
- Fix some SQLite tests by enabling shared cache (thanks @gabe565)
21+
- Fix(sqlite3): narrows `column.AutoGenerated` to columns with INT PKs (thanks @pbedat)
22+
- Fix `auto-columns.deleted` not replace the default `deleted_at` column name (thanks @shivaluma)
23+
- Trim whitespace for column comments (thanks @arp242)
24+
725
## [v4.11.0] - 2022-04-25
826

927
### Added

main.go

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

18-
const sqlBoilerVersion = "4.11.0"
18+
const sqlBoilerVersion = "4.12.0"
1919

2020
var (
2121
flagConfigFile string

0 commit comments

Comments
 (0)