Skip to content

Commit d3acbbe

Browse files
authored
release: 2.14.0 (#547)
1 parent 74a8794 commit d3acbbe

File tree

5 files changed

+27
-6
lines changed

5 files changed

+27
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## v2.14.0 - 2025-06-17
11+
12+
### Added
13+
14+
- The npm install script now checks an env var (`SQUAWK_LOCAL_CDNURL`), that
15+
defaults to `https://github.com/sbdchd/squawk/releases/download`, for
16+
downloading binaries. This should help when you want to use a cache or in case
17+
GitHub is down.
18+
19+
### Fixed
20+
21+
- The last of the pg regression suite errors. (#543), (#542)
22+
23+
- Precendence when parsing compound select statements. (#544)
24+
25+
```sql
26+
SELECT foo UNION SELECT bar ORDER BY baz;
27+
-- equal to:
28+
(SELECT foo UNION SELECT bar) ORDER BY baz;
29+
```
30+
1031
## v2.13.0 - 2025-06-15
1132

1233
### Fixed
1334

14-
- parsing compound select statements & their trailing clauses, i.e.
35+
- parsing compound select statements & their trailing clauses, i.e. (#539)
1536

1637
```sql
1738
(select 1) limit 1;
@@ -23,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2344
);
2445
```
2546

26-
- join parsing to be more error resilent:
47+
- join parsing to be more error resilent: (#538)
2748

2849
```
2950
error[syntax-error]: Join missing condition.

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.13.0"
3+
version = "2.14.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.13.0";
21+
version = "2.14.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.13.0",
3+
"version": "2.14.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Squawk Team & Contributors",

0 commit comments

Comments
 (0)