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: mattn/go-sqlite3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.42
Choose a base ref
...
head repository: mattn/go-sqlite3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.43
Choose a head ref
  • 9 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 8, 2026

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

Commits on Apr 10, 2026

  1. Revise SECURITY.md for version support and reporting

    Updated security policy to reflect supported versions and reporting guidelines.
    mattn authored Apr 10, 2026
    Configuration menu
    Copy the full SHA
    58e032d View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2026

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

Commits on Apr 14, 2026

  1. Configuration menu
    Copy the full SHA
    2badb4c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59e8e75 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6690238 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2026

  1. fix panic when querying input with no SQL (only comments/whitespace)

    sqlite3_prepare_v2 returns SQLITE_OK with a NULL statement handle when
    the input contains no SQL. exec() already handled this; query() forwarded
    the NULL handle to bind(), which crashed in sqlite3_clear_bindings(NULL).
    
    Make query() skip NULL statements like exec() does, and make SQLiteRows
    safe against a nil underlying statement so the empty-rows return value
    does not crash.
    
    Closes #1390
    mattn committed Apr 29, 2026
    Configuration menu
    Copy the full SHA
    869e516 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1392 from mattn/fix-issue-1390-query-comment-panic

    Fix panic when querying input with no SQL (only comments/whitespace)
    mattn authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    c719e20 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1388 from mattn/stmt-cache-lru

    evict least-recently-used stmt when cache is full
    mattn authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    1aa7317 View commit details
    Browse the repository at this point in the history
Loading