Skip to content

Commit ceec598

Browse files
committed
docs: release notes for v1.11.0
1 parent f2cad65 commit ceec598

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.11.0]
9+
10+
### Added
11+
12+
Dump node objects into text file/document (not log file using `pprint`). Menu option is available for variables.
13+
14+
Support CodeLLDB for 'Dump node to stdout' command.
15+
816
## [1.10.0]
917

1018
### Added

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,17 @@ A quick glance will make it clear what's inside!
7474
> Also, for displaying representation it's required to have range table.
7575
> In such cases placeholder is displayed.
7676
77-
### Dump `Node *` state to log
77+
### Dump `Node *`
7878

7979
In PostgreSQL there is `pprint(Node *)` which dumps passed Node variable to
8080
stdout with pretty printing it. Using 'Dump Node to log' option in variable
8181
context menu you also will be able to do so.
8282

8383
![call pprint](resources/dump.gif)
8484

85+
Also, you can dump `Node *` into newly created document and work with it as text file.
86+
There is `Dump Node to document` option in variable context menu.
87+
8588
### Formatting
8689

8790
Extension uses `pgindent` for formatting C code. It integrates with VS Code

package-lock.json

Lines changed: 1 addition & 1 deletion
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.10.0",
5+
"version": "1.11.0",
66
"engines": {
77
"vscode": "^1.30.0"
88
},
@@ -44,7 +44,7 @@
4444
},
4545
{
4646
"command": "postgresql-hacker-helper.dumpNodeToDoc",
47-
"title": "Dump Node to new document",
47+
"title": "Dump Node to document",
4848
"shortTitle": "Dump Node to document",
4949
"category": "PgSQL"
5050
},

0 commit comments

Comments
 (0)