Skip to content

Commit 340cd72

Browse files
committed
docs: changes for v1.6.1
1 parent 9edd0fb commit 340cd72

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,32 @@ 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.6.1]
9+
10+
### Fix
11+
12+
Errors messages appearing in bottom right corner when making debugger steps too fast and 'PG Variables' view interrupted during step.
13+
814
## [1.6.0]
915

16+
### Added
17+
1018
Show text representation of expressions in variables (separate pseudo-member `$expr$`).
1119

1220
Show text representation of expressions contained in `TargetEntry`, `EquivalenceMember` and `RestrictInfo` in description field (old pointer value).
1321

1422
## [1.5.1]
1523

24+
### Added
25+
1626
Update configuration file contents created by command. Set version to 3 and `aliases` member with empty array.
1727

1828
## [1.5.0]
1929

2030
> Pre-release
2131
32+
### Added
33+
2234
Add `typedefs` setting to configuration file. This allows to set custom typedefs.list file for using by formatter. This is helpful when you working on patch which changes this file and you do not want to constantly modify global cached (by extension) typedefs file.
2335
This also updates version of configuration file to 3.
2436

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,16 @@ Known issues:
239239
- Sometimes formatting can misbehave. This is due to `pg_bsd_indent` internal
240240
logic. If formatting is not applied try run command again. If file after
241241
formatting is a mess this can be due to errors in logic.
242+
- Some operations require data to be allocated (usually, for function invocation).
243+
For this, `palloc` and `pfree` are used. So if you are debugging memory subsystem
244+
you may want to disable extension, because it may affect debugging process.
242245

243246
## Release Notes
244247

248+
### 1.6.1
249+
250+
Fix error message appeared when making debugger steps too fast.
251+
245252
### 1.6.0
246253

247254
Show expression representation of `Expr` nodes.

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.6.0",
5+
"version": "1.6.1",
66
"engines": {
77
"vscode": "^1.30.0"
88
},

0 commit comments

Comments
 (0)