Skip to content

Commit a2fda7a

Browse files
committed
docs: v1.7.1
1 parent ee1b2f6 commit a2fda7a

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to the "PostgreSQL Hacker Helper" extension will be document
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.1]
9+
10+
### Fix
11+
12+
Binary features info was cached only for current debug session and invalidated on debugger step.
13+
Now it used the same for whole debug session.
14+
15+
Typedef logic not worked correctly for `Node` variables. Specifically, `MemoryContext` - it was shown as `MemoryContext` even if it's `type` is `AllocSetContext`.
16+
17+
### Changed
18+
19+
Do not show `List` as expandable in PG Variables, if it is empty (`NIL`).
20+
21+
Do not show `words` member for `Bitmapset`.
22+
23+
Add more validity checking for `Bitmapset`: check `NodeTag` (for 16+ version) and pointer validity (for older versions).
24+
825
## [1.7.0]
926

1027
### Added

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,18 @@ Known issues:
263263

264264
## Release Notes
265265

266+
### 1.7.1
267+
268+
Do not show `List` as expandable if it is `NIL`.
269+
270+
Add more checks for `Bitmapset` before search elements to prevent SEGFAULT and backend crash.
271+
272+
Do not show `words` member for `Bitmapset`.
273+
274+
Binary features info is cached for current debug session, not for current step.
275+
276+
Typedef logic not worked correctly for Node variables. Specifically, `MemoryContext` did not show valid struct, i.e. not `AllocSetContext`.
277+
266278
### 1.7.0
267279

268280
Add support for custom pointer types in `List *` elements. Earlier, all `void *` were casted to `Node *`. Users also can specify their own custom `List` types in configuration file.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "postgresql-hacker-helper",
33
"displayName": "PostgreSQL Hacker Helper",
44
"description": "Extension to assist Postgres hackers - source code developers",
5-
"version": "1.7.0",
5+
"version": "1.7.1",
66
"engines": {
77
"vscode": "^1.30.0"
88
},

0 commit comments

Comments
 (0)