Skip to content

Commit 59acb0c

Browse files
committed
v1.4.2
1 parent 6ad8c9d commit 59acb0c

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.4.2]
9+
10+
### Fixed
11+
12+
Fix `pg_bsd_indent Path` setting not handled due to code constants misuse. Relates to bug [#2](https://github.com/ashenBlade/postgres-dev-helper/issues/2).
13+
814
## [1.4.1]
915

1016
### Added

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,27 +202,30 @@ Also, extension will target latest VS Code version and try to use the full
202202
functionality of new versions. So, use latest VS Code versions to get new
203203
features earlier.
204204

205-
For using formatter minimal supported version is `10`.
205+
For using formatter minimal supported version Postgres is `10`.
206206

207207
## Known Issues
208208

209209
Known issues:
210210

211-
- Only tested on gdb debugger, UB for other debuggers (i.e. lldb)
212211
- If in pointer variable was garbage, extension will not detect it and expand
213-
this variable (may be garbage)
212+
this variable (may be garbage).
214213
- To get NodeTags extension reads all available NodeTag files (from settings),
215214
but these files may be not created (./configure or make not run). I assume by
216215
time of debugging start files will be created, so extension catch them and
217216
process.
218217
- Tested only with [ms-vscode.cpptools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
219-
extension
218+
extension. Currently, no support for other DAP adapters (i.e. Code LLDB)
220219
- Sometimes formatting can misbehave. This is due to `pg_bsd_indent` internal
221220
logic. If formatting is not applied try run command again. If file after
222221
formatting is a mess this can be due to errors in logic.
223222

224223
## Release Notes
225224

225+
### 1.4.2
226+
227+
Fix invalid handling of `pg_bsd_indentPath` setting. [#2](https://github.com/ashenBlade/postgres-dev-helper/issues/2)
228+
226229
### 1.4.1
227230

228231
Fix invalid struct detection in variables view: top level structs are not

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
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.4.1",
5+
"version": "1.4.2",
66
"engines": {
77
"vscode": "^1.30.0"
88
},
@@ -172,4 +172,4 @@
172172
"@vscode/test-cli": "^0.0.9",
173173
"@vscode/test-electron": "^2.4.0"
174174
}
175-
}
175+
}

0 commit comments

Comments
 (0)