All Versions
48
Latest Version
Avg Release Cycle
34 days
Latest Release
402 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.13.0 Changes
August 28, 2022โ Added
- Generate IN/NIN whereHelpers for nullable types (thanks @fdegiuli)
๐ Fixed
- ๐ Fixed concurrent map writes in psql driver (thanks @pavel-krush)
- ๐ฎ Force title case for enum null prefix (thanks @optiman)
-
v4.12.0 Changes
July 26, 2022โ Added
- Fetch column and table info in parallel (thanks @pavel-krush)
- Generate IN/NIN methods for enum type query helpers (thanks @optiman)
- ๐ Improve psql performance by isolating uniqueness query (thanks @peterldowns)
- ๐ Support for psql materialized view (thanks @severedsea)
- ๐ Support loading model relationships when binding to a struct with embedded model (thanks @optiman)
๐ Fixes
- ๐ Fix panic when missing primary key in table (thanks @zapo)
- ๐ Fix some SQLite tests by enabling shared cache (thanks @gabe565)
- ๐ Fix(sqlite3): narrows
column.AutoGenerated
to columns with INT PKs (thanks @pbedat) - ๐ Fix
auto-columns.deleted
not replace the defaultdeleted_at
column name (thanks @shivaluma) - Trim whitespace for column comments (thanks @arp242)
-
v4.11.0 Changes
April 25, 2022โ Added
- โ Add getter methods to relationship structs (thanks @fsaintjacques)
๐ Changed
- When title casing UPPER_SNAKE_CASE strings, underscores are not removed for readablity.
๐ Fixes
- ๐ Fix panic when a column referrring a foreign key is ignored (thanks @zapo)
- ๐ Fix one single point in paths and polygons (thanks @saulortega)
-
v4.10.2 Changes
April 15, 2022๐ Fixes
- ๐ Fix performance issue when scanning pgeo point (thanks @ivokanchev)
-
v4.10.1 Changes
April 15, 2022๐ Fixes
- Properly assign new query object in models.Pural()
-
v4.10.0 Changes
April 15, 2022โ Added
- โ Add config options to allow user defined rules for inflections
๐ Fixes
- โ Don't generate test suites for views
- Properly assign new query object in models.Pural()
- ๐ Fix false negatives for enum values
- Strip non alphanumeric characters when title casing.
-
v4.9.2 Changes
April 11, 2022๐ Fixes
- ๐ Use correct column alias during soft delete
- 0๏ธโฃ Use a default "table.*" for model queries
-
v4.9.1 Changes
April 08, 2022๐ Fixes
- ๐ Fixes issue with column name quotinc in many-to-many eager load
- Properly honor
--no-back-referencing
in relationship setops - Retract
v4.9.0
due to issues with the commit tagging and the generated code showingv4.8.6
-
v4.9.0 Changes
April 04, 2022โ Added
- โ Add
AllEnum()
function to retrieve a slice of all valid values of an enum type - โ Add
DefaultTemplates
toboilingcore.Config
to change the base template files to use for generation - โ Add
CustomTemplateFuncs
toboilingcore.Config
to supply additional functions that can be used in templates (thanks @ccakes)
๐ Fixes
- ๐ Fixes issues with detecting enum values that contain uppercases
- Properly wrap column names in quotes when loading many-to-many relationships (thanks @bryanmcgrane)
- โ Removes duplicated
deleted_at IS NULL
clause in relationship queries (thanks @ktakenaka)
- โ Add
-
v4.8.6 Changes
January 29, 2022โ Added
- โ Add missing function
func (modelQuery) DeleteAllGP(...)
(thanks @parnic)
๐ Fixes
- ๐ Fixed issue with generation of both nullable and non-nullable enum types (thanks @optiman)
- โ Add missing function