From 497372322453302463ab408ce92d38d8ddcf5f50 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Fri, 3 Oct 2025 23:37:14 -0400 Subject: [PATCH] release: 2.28.1 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- crates/squawk_github/src/app.rs | 2 +- flake.nix | 2 +- package.json | 2 +- squawk-vscode/package.json | 2 +- 7 files changed, 26 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e9cfaf4..5ff99eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.28.1 - 2025-10-03 + +## Added + +- lsp server: expand selection support. (#674) + +## Fixed + +- linter: fix require-timeout-settings false positives with `create table` + statements that do not have foreign keys. (#675) + ## v2.28.0 - 2025-10-02 ## Added diff --git a/Cargo.lock b/Cargo.lock index 10263060..301f5b09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1831,7 +1831,7 @@ dependencies = [ [[package]] name = "squawk" -version = "2.28.0" +version = "2.28.1" dependencies = [ "annotate-snippets", "anyhow", @@ -1860,7 +1860,7 @@ dependencies = [ [[package]] name = "squawk-github" -version = "2.28.0" +version = "2.28.1" dependencies = [ "jsonwebtoken", "log", @@ -1871,7 +1871,7 @@ dependencies = [ [[package]] name = "squawk-ide" -version = "2.28.0" +version = "2.28.1" dependencies = [ "annotate-snippets", "insta", @@ -1883,14 +1883,14 @@ dependencies = [ [[package]] name = "squawk-lexer" -version = "2.28.0" +version = "2.28.1" dependencies = [ "insta", ] [[package]] name = "squawk-linter" -version = "2.28.0" +version = "2.28.1" dependencies = [ "enum-iterator", "insta", @@ -1904,7 +1904,7 @@ dependencies = [ [[package]] name = "squawk-parser" -version = "2.28.0" +version = "2.28.1" dependencies = [ "camino", "dir-test", @@ -1917,7 +1917,7 @@ dependencies = [ [[package]] name = "squawk-server" -version = "2.28.0" +version = "2.28.1" dependencies = [ "anyhow", "insta", @@ -1937,7 +1937,7 @@ dependencies = [ [[package]] name = "squawk-syntax" -version = "2.28.0" +version = "2.28.1" dependencies = [ "camino", "dir-test", @@ -1949,7 +1949,7 @@ dependencies = [ [[package]] name = "squawk-wasm" -version = "2.28.0" +version = "2.28.1" dependencies = [ "console_error_panic_hook", "console_log", @@ -2766,7 +2766,7 @@ checksum = "32ac00cd3f8ec9c1d33fb3e7958a82df6989c42d747bd326c822b1d625283547" [[package]] name = "xtask" -version = "2.28.0" +version = "2.28.1" dependencies = [ "anyhow", "camino", diff --git a/Cargo.toml b/Cargo.toml index 23a08017..f29e8f6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "2.28.0" +version = "2.28.1" edition = "2024" rust-version = "1.90.0" authors = ["Squawk Team & Contributors"] diff --git a/crates/squawk_github/src/app.rs b/crates/squawk_github/src/app.rs index e78ff9ac..813ab0d3 100644 --- a/crates/squawk_github/src/app.rs +++ b/crates/squawk_github/src/app.rs @@ -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.28.0"; +pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.28.1"; #[derive(Debug, Serialize)] struct CommentBody { diff --git a/flake.nix b/flake.nix index b4d0fb8f..6dc2fe5d 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.28.0"; + version = "2.28.1"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 915d4ac7..8c1584f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.28.0", + "version": "2.28.1", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Squawk Team & Contributors", diff --git a/squawk-vscode/package.json b/squawk-vscode/package.json index a320746c..b7d9d643 100644 --- a/squawk-vscode/package.json +++ b/squawk-vscode/package.json @@ -9,7 +9,7 @@ "icon": "icon.png", "author": "Squawk Team & Contributors", "license": "(Apache-2.0 OR MIT)", - "version": "2.28.0", + "version": "2.28.1", "engines": { "vscode": "^1.101.0" },