You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## v2.2.0 - 2025-05-12
11
+
12
+
### Added
13
+
14
+
- Style guide for linter error messages
15
+
16
+
### Fixed
17
+
18
+
- Error messages for `prefer-robust-statements` to be less confusing. We were saying to add `if not exists` every time, even when the statement didn't have that option.
19
+
20
+
- Fixed parsing nested compound select that has parens (#464).
21
+
The following now parses:
22
+
23
+
```sql
24
+
SELECT (
25
+
(SELECT id FROM code_categories WHERE"language"= @language::char(4) ORDER BY"id"ASCLIMIT1)
26
+
UNION
27
+
(SELECT id FROM code_categories WHERE"language"='nl-NL'ORDER BY"id"ASCLIMIT1)
0 commit comments