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

## [Unreleased]

## v2.63.0 - 2026-08-19

### Added

- syntax: add validation for empty tuple & overlaps (#1292)
- syntax: add validation for in/not in (#1287)

- ide: goto def for prepared transactions (#1291)
- ide: goto def for savepoints (#1290)
- ide: goto def for builtins like extract/substring/position (#1289)

- ide: code actions for builtins -> pg functions (#1288)
- ide: code actions unnest <-> rows from (#1284)

- parser: split AliasColumnList into ColumnList & ColumnDefList (#1282)
- parser: add more enums to ast (#1281, #1280, #1277, #1276)

### Changed

- linter: update ban-duplicate-column-assignment to check more queries (#1274)

### Fixed

- playground: fix code actions (#1286)
- parser: fix select parsing & add more node detail (#1279)

## v2.62.0 - 2026-08-06

### Added
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

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

18 changes: 9 additions & 9 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.62.0"
version = "2.63.0"
edition = "2024"
rust-version = "1.94"
authors = ["Squawk Team & Contributors"]
Expand Down Expand Up @@ -83,15 +83,15 @@ rustc-hash = "2.1.1"

# local
# we have to make the versions explicit otherwise `cargo publish` won't work
squawk-github = { path = "./crates/squawk_github", version = "2.62.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.62.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.62.0" }
squawk-github = { path = "./crates/squawk_github", version = "2.63.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.63.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.63.0" }
squawk-line-index = { path = "./crates/squawk_line_index", version = "2.61.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.62.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.62.0" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.62.0" }
squawk-server = { path = "./crates/squawk_server", version = "2.62.0" }
squawk-thread = { path = "./crates/squawk_thread", version = "2.62.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.63.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.63.0" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.63.0" }
squawk-server = { path = "./crates/squawk_server", version = "2.63.0" }
squawk-thread = { path = "./crates/squawk_thread", version = "2.63.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 @@ -265,7 +265,7 @@ to your project's `.pre-commit-config.yaml`:
```yaml
repos:
- repo: https://github.com/sbdchd/squawk
rev: v2.62.0
rev: v2.63.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.62.0";
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.63.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.62.0";
version = "2.63.0";

cargoLock = {
lockFile = ./Cargo.lock;
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squawk-cli/darwin-arm64",
"version": "2.62.0",
"version": "2.63.0",
"description": "squawk-cli binary for darwin-arm64",
"repository": "git@github.com:sbdchd/squawk.git",
"license": "(Apache-2.0 OR MIT)",
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squawk-cli/darwin-x64",
"version": "2.62.0",
"version": "2.63.0",
"description": "squawk-cli binary for darwin-x64",
"repository": "git@github.com:sbdchd/squawk.git",
"license": "(Apache-2.0 OR MIT)",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squawk-cli/linux-arm64",
"version": "2.62.0",
"version": "2.63.0",
"description": "squawk-cli binary for linux-arm64",
"repository": "git@github.com:sbdchd/squawk.git",
"license": "(Apache-2.0 OR MIT)",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squawk-cli/linux-x64",
"version": "2.62.0",
"version": "2.63.0",
"description": "squawk-cli binary for linux-x64",
"repository": "git@github.com:sbdchd/squawk.git",
"license": "(Apache-2.0 OR MIT)",
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squawk-cli/win32-x64",
"version": "2.62.0",
"version": "2.63.0",
"description": "squawk-cli binary for win32-x64",
"repository": "git@github.com:sbdchd/squawk.git",
"license": "(Apache-2.0 OR MIT)",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squawk-cli",
"version": "2.62.0",
"version": "2.63.0",
"description": "linter for PostgreSQL, focused on migrations",
"repository": "git@github.com:sbdchd/squawk.git",
"author": "Squawk Team & Contributors",
Expand Down Expand Up @@ -29,11 +29,11 @@
"typescript": "^3.9.5"
},
"optionalDependencies": {
"@squawk-cli/darwin-arm64": "2.62.0",
"@squawk-cli/darwin-x64": "2.62.0",
"@squawk-cli/linux-arm64": "2.62.0",
"@squawk-cli/linux-x64": "2.62.0",
"@squawk-cli/win32-x64": "2.62.0"
"@squawk-cli/darwin-arm64": "2.63.0",
"@squawk-cli/darwin-x64": "2.63.0",
"@squawk-cli/linux-arm64": "2.63.0",
"@squawk-cli/linux-x64": "2.63.0",
"@squawk-cli/win32-x64": "2.63.0"
},
"volta": {
"node": "20.19.0",
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.62.0",
"version": "2.63.0",
"engines": {
"vscode": "^1.101.0"
},
Expand Down
Loading