Skip to content

Commit 018affd

Browse files
authored
release: 2.25.0 (#641)
1 parent b95e6f0 commit 018affd

File tree

6 files changed

+29
-5
lines changed

6 files changed

+29
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## v2.25.0 - 2025-09-02
11+
12+
## Added
13+
14+
- linter: `--no-error-on-unmatched-pattern` argument to not exit with an error if no files are matched (default: false) (#639). Thanks @PascalFrenz!
15+
- linter: gitlab reporter (#624). Thanks @benedikt-bartscher!
16+
17+
## Fixed
18+
19+
- linter: adding-field-with-default now checks that the postgres version is `<= 11` before reporting an error for non-volatile defaults (#637). Thanks @ermakov-oleg!
20+
21+
- linter: github commenting truncates when too large (#605). Thanks @ienugr!
22+
23+
- parser: parsing path's named `operator` now works (#640).
24+
25+
Previously the following would error:
26+
27+
```sql
28+
create table operator();
29+
```
30+
31+
- squawk_syntax: `ast::BinExpr` `lhs` & `rhs` properties now work correctly (#634).
32+
- internal: bumped a bunch of outdated JS & Rust dependencies (#630), (#631), (#632), (#633).
33+
1034
## v2.24.0 - 2025-08-24
1135

1236
## Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/squawk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "2.24.0"
3+
version = "2.25.0"
44
default-run = "squawk"
55

66
authors.workspace = true

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.24.0";
21+
version = "2.25.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.24.0",
3+
"version": "2.25.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]: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
@@ -9,7 +9,7 @@
99
"icon": "icon.png",
1010
"author": "Squawk Team & Contributors",
1111
"license": "(Apache-2.0 OR MIT)",
12-
"version": "2.24.0",
12+
"version": "2.25.0",
1313
"engines": {
1414
"vscode": "^1.101.0"
1515
},

0 commit comments

Comments
 (0)