-
Notifications
You must be signed in to change notification settings - Fork 562
Comparing changes
Open a pull request
base repository: aarondl/sqlboiler
base: v4.18.0
head repository: aarondl/sqlboiler
compare: v4.19.0
- 16 commits
- 14 files changed
- 6 contributors
Commits on Jan 20, 2025
-
Configuration menu - View commit details
-
Copy full SHA for eb2cf6b - Browse repository at this point
Copy the full SHA eb2cf6bView commit details
Commits on Feb 2, 2025
-
Configuration menu - View commit details
-
Copy full SHA for b1ff72d - Browse repository at this point
Copy the full SHA b1ff72dView commit details -
Configuration menu - View commit details
-
Copy full SHA for cdffad9 - Browse repository at this point
Copy the full SHA cdffad9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19d9999 - Browse repository at this point
Copy the full SHA 19d9999View commit details
Commits on Feb 3, 2025
-
Add relation getters on base model structs
This prevents having to check the pointer before accessing a relation. It was already safe to access a nil R's Get() method, but this removes some of the extra typing and nil checks as a convenience. Previously: ```go var office *models.Office if employee != nil { office = employee.R.GetOffice() } ``` With this helper: ```go office := employee.GetOffice() ```Configuration menu - View commit details
-
Copy full SHA for abf0695 - Browse repository at this point
Copy the full SHA abf0695View commit details
Commits on Feb 17, 2025
-
Configuration menu - View commit details
-
Copy full SHA for a2ca927 - Browse repository at this point
Copy the full SHA a2ca927View commit details
Commits on Mar 1, 2025
-
Add Query, Exec, and Bind helpers
This adds variants of each of the global Query, Exec, and Bind variants to use the global executer, panic on error, or both where they were missing. Specifically: * BindGP * QueryRowG * QueryRowContextG * ExecG * ExecGP * QueryG * QueryGP * ExecContextG * ExecContextP * ExecContextGP * QueryContextG * QueryContextP * QueryContextGP
Configuration menu - View commit details
-
Copy full SHA for fc4dda5 - Browse repository at this point
Copy the full SHA fc4dda5View commit details
Commits on Mar 28, 2025
-
Merge pull request #1440 from sgr45/add-replace-flag-in-documentation
add replace flag in documentation
Configuration menu - View commit details
-
Copy full SHA for e6b3e29 - Browse repository at this point
Copy the full SHA e6b3e29View commit details -
Merge pull request #1437 from renom/master
Fix count from subquery that was broken on postgresql prior to 16
Configuration menu - View commit details
-
Copy full SHA for f30b322 - Browse repository at this point
Copy the full SHA f30b322View commit details -
Merge pull request #1442 from parnic/add-global-and-panic-variants-of…
…-query-exec-bind Add Query, Exec, and Bind helpers
Configuration menu - View commit details
-
Copy full SHA for 4e7be9c - Browse repository at this point
Copy the full SHA 4e7be9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd3128e - Browse repository at this point
Copy the full SHA bd3128eView commit details
Commits on Apr 4, 2025
-
Merge pull request #1438 from eklatzer/ek/unused-imports-issue-1279
Add imports processing when formating source files to remove unused imports
Configuration menu - View commit details
-
Copy full SHA for 0561d17 - Browse repository at this point
Copy the full SHA 0561d17View commit details -
Merge pull request #1439 from parnic/add-relation-getters-on-base-struct
Add relation getters on base model structs
Configuration menu - View commit details
-
Copy full SHA for ea56d78 - Browse repository at this point
Copy the full SHA ea56d78View commit details
Commits on Apr 24, 2025
-
Fix InsertWhitelist test in composite primary key table
- The table has a composite primary key with columns that have default values and columns that don't. - ColumnsWithoutDefault columns don't guarantee unique records.
Configuration menu - View commit details
-
Copy full SHA for 7a71858 - Browse repository at this point
Copy the full SHA 7a71858View commit details
Commits on May 5, 2025
-
Merge pull request #1446 from benevolent0505/fix-insert-whitelist-test
Fix InsertWhitelist test in composite primary key table
Configuration menu - View commit details
-
Copy full SHA for a84ea20 - Browse repository at this point
Copy the full SHA a84ea20View commit details
Commits on May 9, 2025
-
Configuration menu - View commit details
-
Copy full SHA for f1ea74b - Browse repository at this point
Copy the full SHA f1ea74bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v4.18.0...v4.19.0