Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v2.36.0 - 2026-01-06

### Added

- ide: goto def support for merge (#826),(#825)
- ide: goto def truncate, lock, vacuum, alter table column, refresh (#823)
- ide: document symbol support for create view (#807)
- ide: goto def create/alter/drop server (#821)
- ide: goto def foreign tables (#820)
- ide: use previous token in more cases of punctuation (#819)
- ide: support hover with `*` in queries (#818)
- ide: goto def support for references column constraints & `select t.* from t;` (#817)
- ide: support find references for join using clause (#816)
- ide: goto def using clause in join (#815)
- ide: goto def for tablespace (#814)
- ide: better goto def with create table (#813)
- ide: mat view goto def/hover, agg/procedure/mat view doc symbols (#812)
- ide: better goto def support for types (#811)
- ide: composite field goto def & hover (#810)
- ide: document symbol support for CTEs (#806)
- ide: hover for views (#804)
- ide: goto def with create view (#802)
- vscode: restart server command (#808)

### Fixed

- ide: fix column name for special cased functions (#824)
- playground: fix dupe hover results in editor (#805)

## v2.35.0 - 2026-01-02

### Added
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "2.35.0"
version = "2.36.0"
edition = "2024"
rust-version = "1.90.0"
authors = ["Squawk Team & Contributors"]
Expand Down Expand Up @@ -61,13 +61,13 @@ smallvec = "1.13.2"

# local
# we have to make the versions explicit otherwise `cargo publish` won't work
squawk-github = { path = "./crates/squawk_github", version = "2.35.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.35.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.35.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.35.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.35.0" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.35.0" }
squawk-server = { path = "./crates/squawk_server", version = "2.35.0" }
squawk-github = { path = "./crates/squawk_github", version = "2.36.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.36.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.36.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.36.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.36.0" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.36.0" }
squawk-server = { path = "./crates/squawk_server", version = "2.36.0" }

[workspace.lints.clippy]
collapsible_else_if = "allow"
Expand Down
2 changes: 1 addition & 1 deletion crates/squawk_github/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use serde_json::Value;
use std::time::Duration;
use std::time::{SystemTime, UNIX_EPOCH};

pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.35.0";
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.36.0";

#[derive(Debug, Serialize)]
struct CommentBody {
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
squawk = final.rustPlatform.buildRustPackage {
pname = "squawk";
version = "2.35.0";
version = "2.36.0";

cargoLock = {
lockFile = ./Cargo.lock;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squawk-cli",
"version": "2.35.0",
"version": "2.36.0",
"description": "linter for PostgreSQL, focused on migrations",
"repository": "git@github.com:sbdchd/squawk.git",
"author": "Squawk Team & Contributors",
Expand Down
2 changes: 1 addition & 1 deletion squawk-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"icon": "icon.png",
"author": "Squawk Team & Contributors",
"license": "(Apache-2.0 OR MIT)",
"version": "2.35.0",
"version": "2.36.0",
"engines": {
"vscode": "^1.101.0"
},
Expand Down
Loading