Skip to content

Commit c1f6c7c

Browse files
authored
release: 2.43.0 (#979)
1 parent fd2dac5 commit c1f6c7c

8 files changed

Lines changed: 46 additions & 24 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## v2.43.0 - 2026-02-28
11+
12+
### Added
13+
14+
- ide: quick action for `timestamp with out timezone` to `timestamptz` (#976)
15+
- ide: goto def for create aggregate params (#972)
16+
- ide: hover/goto def for subquery w/ alias (#970)
17+
- ide: lateral joins, subqueries with table, hover aliases (#969)
18+
- ide: support table alias with column list (#968)
19+
20+
### Fixed
21+
22+
- linter: fix ignore comment not working with trailing content (#975)
23+
- ide: fix column name infer & related goto def (#977)
24+
- syntax: update ast with missing `detach partition` fields (#978)
25+
- ide: fix builtin aggregates being defined as functions (#971)
26+
- ci: fix arm musl build (#966)
27+
28+
### Internal
29+
30+
- ide: refactor hover to use goto def (#967)
31+
1032
## v2.42.0 - 2026-02-25
1133

1234
### Changed

Cargo.lock

Lines changed: 11 additions & 11 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.42.0"
6+
version = "2.43.0"
77
edition = "2024"
88
rust-version = "1.93"
99
authors = ["Squawk Team & Contributors"]
@@ -66,13 +66,13 @@ etcetera = "0.11.0"
6666

6767
# local
6868
# we have to make the versions explicit otherwise `cargo publish` won't work
69-
squawk-github = { path = "./crates/squawk_github", version = "2.42.0" }
70-
squawk-ide = { path = "./crates/squawk_ide", version = "2.42.0" }
71-
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.42.0" }
72-
squawk-parser = { path = "./crates/squawk_parser", version = "2.42.0" }
73-
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.42.0" }
74-
squawk-linter = { path = "./crates/squawk_linter", version = "2.42.0" }
75-
squawk-server = { path = "./crates/squawk_server", version = "2.42.0" }
69+
squawk-github = { path = "./crates/squawk_github", version = "2.43.0" }
70+
squawk-ide = { path = "./crates/squawk_ide", version = "2.43.0" }
71+
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.43.0" }
72+
squawk-parser = { path = "./crates/squawk_parser", version = "2.43.0" }
73+
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.43.0" }
74+
squawk-linter = { path = "./crates/squawk_linter", version = "2.43.0" }
75+
squawk-server = { path = "./crates/squawk_server", version = "2.43.0" }
7676

7777
[workspace.lints.clippy]
7878
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.42.0
255+
rev: 2.43.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.42.0";
14+
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.43.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.42.0";
21+
version = "2.43.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.42.0",
3+
"version": "2.43.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.42.0",
15+
"version": "2.43.0",
1616
"engines": {
1717
"vscode": "^1.101.0"
1818
},

0 commit comments

Comments
 (0)