Skip to content

Commit 3c95f5c

Browse files
authored
release: 2.44.0 (#1011)
1 parent 21c0244 commit 3c95f5c

8 files changed

Lines changed: 61 additions & 26 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## v2.44.0 - 2026-03-19
11+
12+
### Added
13+
14+
- linter: add require-enum-value-ordering rule (#992). Thanks @cabello!
15+
- linter: add cross-file validation for `NOT NULL` constraint pattern (#957). Thanks @reteps!
16+
- parser: support postgres 18 graph language (#1010)
17+
- parser: support new except table clause (#986)
18+
- parser: alter type ast improvements (#993)
19+
- playground: add code folding support (#1000)
20+
- ide: folding range support (#999)
21+
- ide: goto def window defs & over clauses (#994)
22+
- ide: goto def subquery compound selects (#988)
23+
24+
### Fixed
25+
26+
- server: handle errors from handlers by converting to a lsp err response (#1005)
27+
- parser: we weren't handling compound selects with extra parens (#989)
28+
29+
### Changed
30+
31+
- server: pull based diagnostics (#1006)
32+
33+
### Internal
34+
35+
- internal: replace lazy_static with std::sync::OnceLock (#1009)
36+
- internal: HashMap -> FxHashMap, FxHashSet (#1007)
37+
- server: refactor notification handling to embrace types (#1004)
38+
- server: refactor request handling to embrace types (#1003)
39+
- server: refactor lib.rs into separate files (#1002)
40+
- ide: add thread module from rust-analyzer (#1001)
41+
- parser: sync plpgsql test suite from postgres (#991)
42+
- ide/playground: salsa most of the server functions (#981)
43+
- ide: update sql stub codegen to include some extensions (#984)
44+
1045
## v2.43.0 - 2026-02-28
1146

1247
### Added

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 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.43.0"
6+
version = "2.44.0"
77
edition = "2024"
88
rust-version = "1.93"
99
authors = ["Squawk Team & Contributors"]
@@ -72,14 +72,14 @@ rustc-hash = "2.1.1"
7272

7373
# local
7474
# we have to make the versions explicit otherwise `cargo publish` won't work
75-
squawk-github = { path = "./crates/squawk_github", version = "2.43.0" }
76-
squawk-ide = { path = "./crates/squawk_ide", version = "2.43.0" }
77-
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.43.0" }
78-
squawk-parser = { path = "./crates/squawk_parser", version = "2.43.0" }
79-
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.43.0" }
80-
squawk-linter = { path = "./crates/squawk_linter", version = "2.43.0" }
81-
squawk-server = { path = "./crates/squawk_server", version = "2.43.0" }
82-
squawk-thread = { path = "./crates/squawk_thread", version = "2.43.0" }
75+
squawk-github = { path = "./crates/squawk_github", version = "2.44.0" }
76+
squawk-ide = { path = "./crates/squawk_ide", version = "2.44.0" }
77+
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.44.0" }
78+
squawk-parser = { path = "./crates/squawk_parser", version = "2.44.0" }
79+
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.44.0" }
80+
squawk-linter = { path = "./crates/squawk_linter", version = "2.44.0" }
81+
squawk-server = { path = "./crates/squawk_server", version = "2.44.0" }
82+
squawk-thread = { path = "./crates/squawk_thread", version = "2.44.0" }
8383

8484
[workspace.lints.clippy]
8585
collapsible_else_if = "allow"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ to your project's `.pre-commit-config.yaml`:
252252
```yaml
253253
repos:
254254
- repo: https://github.com/sbdchd/squawk
255-
rev: 2.43.0
255+
rev: 2.44.0
256256
hooks:
257257
- id: squawk
258258
files: path/to/postgres/migrations/written/in/sql

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.43.0";
14+
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.44.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.43.0";
21+
version = "2.44.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.43.0",
3+
"version": "2.44.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
@@ -12,7 +12,7 @@
1212
"icon": "icon.png",
1313
"author": "Squawk Team & Contributors",
1414
"license": "(Apache-2.0 OR MIT)",
15-
"version": "2.43.0",
15+
"version": "2.44.0",
1616
"engines": {
1717
"vscode": "^1.101.0"
1818
},

0 commit comments

Comments
 (0)