Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aarondl/sqlboiler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.18.0
Choose a base ref
...
head repository: aarondl/sqlboiler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.19.0
Choose a head ref
  • 16 commits
  • 14 files changed
  • 6 contributors

Commits on Jan 20, 2025

  1. Configuration menu
    Copy the full SHA
    eb2cf6b View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2025

  1. Configuration menu
    Copy the full SHA
    b1ff72d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cdffad9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19d9999 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2025

  1. 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()
    ```
    parnic committed Feb 3, 2025
    Configuration menu
    Copy the full SHA
    abf0695 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2025

  1. Configuration menu
    Copy the full SHA
    a2ca927 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2025

  1. 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
    parnic committed Mar 1, 2025
    Configuration menu
    Copy the full SHA
    fc4dda5 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2025

  1. Merge pull request #1440 from sgr45/add-replace-flag-in-documentation

    add  replace flag in documentation
    stephenafamo authored Mar 28, 2025
    Configuration menu
    Copy the full SHA
    e6b3e29 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1437 from renom/master

    Fix count from subquery that was broken on postgresql prior to 16
    stephenafamo authored Mar 28, 2025
    Configuration menu
    Copy the full SHA
    f30b322 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1442 from parnic/add-global-and-panic-variants-of…

    …-query-exec-bind
    
    Add Query, Exec, and Bind helpers
    stephenafamo authored Mar 28, 2025
    Configuration menu
    Copy the full SHA
    4e7be9c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bd3128e View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2025

  1. Merge pull request #1438 from eklatzer/ek/unused-imports-issue-1279

    Add imports processing when formating source files to remove unused imports
    stephenafamo authored Apr 4, 2025
    Configuration menu
    Copy the full SHA
    0561d17 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1439 from parnic/add-relation-getters-on-base-struct

    Add relation getters on base model structs
    stephenafamo authored Apr 4, 2025
    Configuration menu
    Copy the full SHA
    ea56d78 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. 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.
    benevolent0505 committed Apr 24, 2025
    Configuration menu
    Copy the full SHA
    7a71858 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2025

  1. Merge pull request #1446 from benevolent0505/fix-insert-whitelist-test

    Fix InsertWhitelist test in composite primary key table
    stephenafamo authored May 5, 2025
    Configuration menu
    Copy the full SHA
    a84ea20 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. Configuration menu
    Copy the full SHA
    f1ea74b View commit details
    Browse the repository at this point in the history
Loading