Skip to content

Commit 1c1a32e

Browse files
committed
Release 17-6.1.0
1 parent 128aeab commit 1c1a32e

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All versions are tagged by the major Postgres version, plus an individual semver for this library itself.
44

5+
## 17-6.1.0 2025-04-02
6+
7+
* Update to Postgres 17.4, and add recent patches scheduled for Postgres 17.5 (not yet released)
8+
- Notably, this pulls in support for macOS 15.4 which defines strchrnul
9+
in its standard library, fixing builds on up-to-date macOS versions.
10+
- Deparser improvements
11+
- Add parenthesis around AT LOCAL / AT TIMEZONE if needed
12+
- Correctness improvements related to expressions and function calls
13+
514
## 17-6.0.0 2024-09-27
615

716
* Upgrade to Postgres 17

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PG_VERSION_NUM = 170004
1313
PG_BRANCH = REL_17_STABLE
1414
PROTOC_VERSION = 25.1
1515

16-
VERSION = 5.1.0
16+
VERSION = 6.1.0
1717
VERSION_MAJOR = $(call word-dot,$(VERSION),1)
1818
VERSION_MINOR = $(call word-dot,$(VERSION),2)
1919
VERSION_PATCH = $(call word-dot,$(VERSION),3)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This will output the parse tree (whitespace adjusted here for better readability
5757

5858
```json
5959
{
60-
"version": 170000,
60+
"version": 170004,
6161
"stmts": [
6262
{
6363
"stmt": {
@@ -130,7 +130,7 @@ int main() {
130130
This will output the following:
131131

132132
```
133-
version: 170000, tokens: 7, size: 77
133+
version: 170004, tokens: 7, size: 77
134134
"SELECT" = [ 0, 6, SELECT, RESERVED_KEYWORD ]
135135
"update" = [ 7, 13, UPDATE, UNRESERVED_KEYWORD ]
136136
"AS" = [ 14, 16, AS, RESERVED_KEYWORD ]
@@ -292,4 +292,4 @@ Portions Copyright (c) 1994, The Regents of the University of California
292292
293293
All other parts are licensed under the 3-clause BSD license, see LICENSE file for details.<br>
294294
Copyright (c) 2015, Lukas Fittl <[email protected]>
295-
Copyright (c) 2016-2024, Duboce Labs, Inc. (pganalyze) <[email protected]>
295+
Copyright (c) 2016-2025, Duboce Labs, Inc. (pganalyze) <[email protected]>

0 commit comments

Comments
 (0)