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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v2.43.0 - 2026-02-28

### Added

- ide: quick action for `timestamp with out timezone` to `timestamptz` (#976)
- ide: goto def for create aggregate params (#972)
- ide: hover/goto def for subquery w/ alias (#970)
- ide: lateral joins, subqueries with table, hover aliases (#969)
- ide: support table alias with column list (#968)

### Fixed

- linter: fix ignore comment not working with trailing content (#975)
- ide: fix column name infer & related goto def (#977)
- syntax: update ast with missing `detach partition` fields (#978)
- ide: fix builtin aggregates being defined as functions (#971)
- ci: fix arm musl build (#966)

### Internal

- ide: refactor hover to use goto def (#967)

## v2.42.0 - 2026-02-25

### Changed
Expand Down
22 changes: 11 additions & 11 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.42.0"
version = "2.43.0"
edition = "2024"
rust-version = "1.93"
authors = ["Squawk Team & Contributors"]
Expand Down Expand Up @@ -66,13 +66,13 @@ etcetera = "0.11.0"

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

[workspace.lints.clippy]
collapsible_else_if = "allow"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ to your project's `.pre-commit-config.yaml`:
```yaml
repos:
- repo: https://github.com/sbdchd/squawk
rev: 2.42.0
rev: 2.43.0
hooks:
- id: squawk
files: path/to/postgres/migrations/written/in/sql
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.42.0";
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.43.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.42.0";
version = "2.43.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.42.0",
"version": "2.43.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 @@ -12,7 +12,7 @@
"icon": "icon.png",
"author": "Squawk Team & Contributors",
"license": "(Apache-2.0 OR MIT)",
"version": "2.42.0",
"version": "2.43.0",
"engines": {
"vscode": "^1.101.0"
},
Expand Down
Loading