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: supabase-community/postgres-language-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.10.0
Choose a base ref
...
head repository: supabase-community/postgres-language-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 7 commits
  • 140 files changed
  • 2 contributors

Commits on Jul 18, 2025

  1. fix: splitter crash (#464)

    fixes a crash in the splitter when the last char is a closing
    parentheses.
    psteinroe authored Jul 18, 2025
    Configuration menu
    Copy the full SHA
    c0567ec View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2025

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

Commits on Jul 22, 2025

  1. docs: fix links to rules (#467)

    we'll have to deploy to see if this actually works – using `mike serve`
    apparently doesn't deploy the local `docs/` directory, but uses a git
    branch.
    juleswritescode authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    be2cd02 View commit details
    Browse the repository at this point in the history
  2. refactor: extract completions context into pgt_treesitter crate (#466)

    I wanted to extract the treesitter-context that's used in completions,
    so it can also be used for the on-hover feature.
    
    I've also tried to clean up the APIs, detangled completion-context and
    sanitization, and extracted the general test helpers into the
    `pgt_test_utils` crate.
    juleswritescode authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    51abce1 View commit details
    Browse the repository at this point in the history
  3. chore: add custom libpg_query binding (#465)

    brings home the custom binding that was experimented in pg_parse.
    
    no functional changes, just different imports and a bit of cleanup.
    
    also removes the libpg_query submodule - we are now cloning the repo
    "live" in the build script.
    
    closes #453
    psteinroe authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    e745328 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

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

Commits on Aug 1, 2025

  1. feat: plpgsql check (#469)

    adds support for plpgsql_check. the approach is even simpler as
    described in the issue: if we encounter a create function statement, we
    start a transaction, run the statement, then run plpgsql_check on it,
    and then rollback the transaction.
    
    the remaining code is just about translating the location information we
    get from the extension into a good range.
    
    todo:
    - [x] integrate into workspace api
    - [x] to get span, move from the first word / occurrence in the line to
    the next semicolon
    - [x] handle return trigger by checking for all variations
    - [x] make sure we do not report create fn syntax errors if
    plpgsql_check is enabled
    - [x] check why "not a known variable" is not getting the right span
    
    closes #190
    psteinroe authored Aug 1, 2025
    Configuration menu
    Copy the full SHA
    bb686b9 View commit details
    Browse the repository at this point in the history
Loading