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
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,34 @@ All notable changes to the "PostgreSQL Hacker Helper" extension will be document
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.14.0]
9
+
10
+
### Added
11
+
12
+
Support flexible array members as array members, so they are expanded as normal arrays.
13
+
14
+
Display `XLogRecPtr` in `File/Offset` hex form (like PG does), not integer.
15
+
16
+
Support for integer enums which elements defined using `#define` preprocessor.
17
+
18
+
Tests for formatter module.
19
+
20
+
### Fixed
21
+
22
+
Normalize function names passed to configuration files, so cppdbg and CodeLLDB notations do not conflict.
23
+
24
+
Some array members with scalar types are not displayed for CodeLLDB.
25
+
26
+
### Changed
27
+
28
+
Formatter module now works with `pgindent` instead of invoking `pg_bsd_indent` directly.
29
+
30
+
Array members now specified in `"arrays"` section in configuration, instead of `"specialMembers" -> "array"`.
31
+
32
+
Internal state initialization using knowledge of pg version using `server_version_num` GUC parameter. This is for initialization of internal runtime properties and acquiring enum members according to version.
33
+
34
+
Internal state reinitialized each debug session start with configuration file updates.
0 commit comments