Skip to content

Commit bbce361

Browse files
authored
release: 2.36.0 (#827)
1 parent a8f1aee commit bbce361

File tree

7 files changed

+51
-22
lines changed

7 files changed

+51
-22
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v2.36.0 - 2026-01-06
11+
12+
### Added
13+
14+
- ide: goto def support for merge (#826),(#825)
15+
- ide: goto def truncate, lock, vacuum, alter table column, refresh (#823)
16+
- ide: document symbol support for create view (#807)
17+
- ide: goto def create/alter/drop server (#821)
18+
- ide: goto def foreign tables (#820)
19+
- ide: use previous token in more cases of punctuation (#819)
20+
- ide: support hover with `*` in queries (#818)
21+
- ide: goto def support for references column constraints & `select t.* from t;` (#817)
22+
- ide: support find references for join using clause (#816)
23+
- ide: goto def using clause in join (#815)
24+
- ide: goto def for tablespace (#814)
25+
- ide: better goto def with create table (#813)
26+
- ide: mat view goto def/hover, agg/procedure/mat view doc symbols (#812)
27+
- ide: better goto def support for types (#811)
28+
- ide: composite field goto def & hover (#810)
29+
- ide: document symbol support for CTEs (#806)
30+
- ide: hover for views (#804)
31+
- ide: goto def with create view (#802)
32+
- vscode: restart server command (#808)
33+
34+
### Fixed
35+
36+
- ide: fix column name for special cased functions (#824)
37+
- playground: fix dupe hover results in editor (#805)
38+
1039
## v2.35.0 - 2026-01-02
1140

1241
### Added

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "2.35.0"
6+
version = "2.36.0"
77
edition = "2024"
88
rust-version = "1.90.0"
99
authors = ["Squawk Team & Contributors"]
@@ -61,13 +61,13 @@ smallvec = "1.13.2"
6161

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

7272
[workspace.lints.clippy]
7373
collapsible_else_if = "allow"

crates/squawk_github/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use serde_json::Value;
1111
use std::time::Duration;
1212
use std::time::{SystemTime, UNIX_EPOCH};
1313

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

1616
#[derive(Debug, Serialize)]
1717
struct CommentBody {

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
squawk = final.rustPlatform.buildRustPackage {
2020
pname = "squawk";
21-
version = "2.35.0";
21+
version = "2.36.0";
2222

2323
cargoLock = {
2424
lockFile = ./Cargo.lock;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "2.35.0",
3+
"version": "2.36.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "git@github.com:sbdchd/squawk.git",
66
"author": "Squawk Team & Contributors",

squawk-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"icon": "icon.png",
1010
"author": "Squawk Team & Contributors",
1111
"license": "(Apache-2.0 OR MIT)",
12-
"version": "2.35.0",
12+
"version": "2.36.0",
1313
"engines": {
1414
"vscode": "^1.101.0"
1515
},

0 commit comments

Comments
 (0)