Skip to content

Commit d993079

Browse files
committed
announcement for 6.4.2
1 parent 67cbafa commit d993079

File tree

4 files changed

+34
-28
lines changed

4 files changed

+34
-28
lines changed

_src/app/index.html

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -176,21 +176,14 @@ <h1>News</h1>
176176
<div class="row">
177177

178178
<div class="col-sm-6 col-lg-6">
179-
<h4 class="anchor" name="pgCodeKeeper-6.4.0" id="pgCodeKeeper-6.4.0">pgCodeKeeper 6.4.0</h4>
180-
<p class="date">March 24, 2022</p>
179+
<h4 class="anchor" name="pgCodeKeeper-6.4.2" id="pgCodeKeeper-6.4.2">pgCodeKeeper 6.4.2</h4>
180+
<p class="date">April 11, 2022</p>
181181
<ul class="short-article">
182-
<li>It is now possible to recursively load pgCodeKeeper libraries, which are referenced by other libraries added to the project. Library must be in a project (or project archive) format to have its own dependences, which must be listed in its <i>.dependencies</i> file.<br>
183-
This option is disabled by default so that behaviour of existing projects doesn't change. Users can enable this new mechanism in project settings.<br>
184-
In a general case, for library dependencies to be loaded, container of that library must have its <i>loadNested</i> flag set in <i>.dependencies</i> file. For instance, in this dependency chain: <i>project → lib1 → lib2 → lib3</i>, <i>lib2</i> will be loaded if <i>project</i> has the option enabled, and <i>lib3</i> will be loaded if the option is set in both <i>project</i> and <i>lib1</i>.</li>
185-
<li>Added a tree view of referenced libraries and their structure in Project Explorer.</li>
186-
<li>Added an option to save DB passwords in plain text in Eclipse workspace instead of Eclipse secure storage for cases where latter was unstable. Users can also use passwords stored in <i>.pgpass</i> file.</li>
187-
<li>Added an option to limit number of rows returned by executed SELECT statements.</li>
188-
<li>Non-relocatable extensions are now re-created when necessary.</li>
189-
<li>Improved SQL code formatter, fixed errors.</li>
190-
<li>Fixed an error where a newline was lost at the beginning of some expressions.</li>
191-
<li>Fixed reading SQL-standard function bodies via JDBC. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.1'>6.3.1</a>)</li>
192-
<li>Fixed installation on Eclipse 2021-12. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.2'>6.3.2</a>)</li>
193-
<li>Fixed data loss in data migration when column type or attributes change. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.3'>6.3.3</a>)</li>
182+
<li>Updated all library dependencies of the core program.<br>
183+
New mssql-jdbc driver (10.2) enables <a href='https://github.com/microsoft/mssql-jdbc/releases/tag/v10.1.0'>encryption by default</a>. To preserve old behavior now we set property <i>trustServerCertificate=true</i> for MSSQL connections by default. To enable server certificate validation set <i>trustServerCertificate=false</i> in connection properties or connection string.</li>
184+
<li>Fixed an error in code generated when changing a function into a procedure and vice versa.</li>
185+
<li>Fixed an error when opening a temporary SQL editor on Windows.</li>
186+
<li>Fixed an error when parsing certain <i>foreign</i> options and other object options. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.4.1'>6.4.1</a>)</li>
194187
</ul>
195188
</div>
196189

_src/app/news.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@
4242
<div id="release-block" class="container">
4343
<h1>Releases</h1>
4444

45+
<h4 class="anchor" name="pgCodeKeeper-6.4.2" id="pgCodeKeeper-6.4.2">pgCodeKeeper 6.4.2</h4>
46+
<p class="date">April 11, 2022</p>
47+
<ul class="short-article">
48+
<li>Updated all library dependencies of the core program.<br>
49+
New mssql-jdbc driver (10.2) enables <a href='https://github.com/microsoft/mssql-jdbc/releases/tag/v10.1.0'>encryption by default</a>. To preserve old behavior now we set property <i>trustServerCertificate=true</i> for MSSQL connections by default. To enable server certificate validation set <i>trustServerCertificate=false</i> in connection properties or connection string.</li>
50+
<li>Fixed an error in code generated when changing a function into a procedure and vice versa.</li>
51+
<li>Fixed an error when opening a temporary SQL editor on Windows.</li>
52+
<li>Fixed an error when parsing certain <i>foreign</i> options and other object options. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.4.1'>6.4.1</a>)</li>
53+
</ul>
54+
4555
<h4 class="anchor" name="pgCodeKeeper-6.4.0" id="pgCodeKeeper-6.4.0">pgCodeKeeper 6.4.0</h4>
4656
<p class="date">March 24, 2022</p>
4757
<ul class="short-article">

index.html

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -237,21 +237,14 @@ <h1>News</h1>
237237
<div class="row">
238238

239239
<div class="col-sm-6 col-lg-6">
240-
<h4 class="anchor" name="pgCodeKeeper-6.4.0" id="pgCodeKeeper-6.4.0">pgCodeKeeper 6.4.0</h4>
241-
<p class="date">March 24, 2022</p>
240+
<h4 class="anchor" name="pgCodeKeeper-6.4.2" id="pgCodeKeeper-6.4.2">pgCodeKeeper 6.4.2</h4>
241+
<p class="date">April 11, 2022</p>
242242
<ul class="short-article">
243-
<li>It is now possible to recursively load pgCodeKeeper libraries, which are referenced by other libraries added to the project. Library must be in a project (or project archive) format to have its own dependences, which must be listed in its <i>.dependencies</i> file.<br>
244-
This option is disabled by default so that behaviour of existing projects doesn't change. Users can enable this new mechanism in project settings.<br>
245-
In a general case, for library dependencies to be loaded, container of that library must have its <i>loadNested</i> flag set in <i>.dependencies</i> file. For instance, in this dependency chain: <i>project → lib1 → lib2 → lib3</i>, <i>lib2</i> will be loaded if <i>project</i> has the option enabled, and <i>lib3</i> will be loaded if the option is set in both <i>project</i> and <i>lib1</i>.</li>
246-
<li>Added a tree view of referenced libraries and their structure in Project Explorer.</li>
247-
<li>Added an option to save DB passwords in plain text in Eclipse workspace instead of Eclipse secure storage for cases where latter was unstable. Users can also use passwords stored in <i>.pgpass</i> file.</li>
248-
<li>Added an option to limit number of rows returned by executed SELECT statements.</li>
249-
<li>Non-relocatable extensions are now re-created when necessary.</li>
250-
<li>Improved SQL code formatter, fixed errors.</li>
251-
<li>Fixed an error where a newline was lost at the beginning of some expressions.</li>
252-
<li>Fixed reading SQL-standard function bodies via JDBC. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.1'>6.3.1</a>)</li>
253-
<li>Fixed installation on Eclipse 2021-12. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.2'>6.3.2</a>)</li>
254-
<li>Fixed data loss in data migration when column type or attributes change. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.3.3'>6.3.3</a>)</li>
243+
<li>Updated all library dependencies of the core program.<br>
244+
New mssql-jdbc driver (10.2) enables <a href='https://github.com/microsoft/mssql-jdbc/releases/tag/v10.1.0'>encryption by default</a>. To preserve old behavior now we set property <i>trustServerCertificate=true</i> for MSSQL connections by default. To enable server certificate validation set <i>trustServerCertificate=false</i> in connection properties or connection string.</li>
245+
<li>Fixed an error in code generated when changing a function into a procedure and vice versa.</li>
246+
<li>Fixed an error when opening a temporary SQL editor on Windows.</li>
247+
<li>Fixed an error when parsing certain <i>foreign</i> options and other object options. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.4.1'>6.4.1</a>)</li>
255248
</ul>
256249
</div>
257250

news.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,16 @@
8282
<div id="release-block" class="container">
8383
<h1>Releases</h1>
8484

85+
<h4 class="anchor" name="pgCodeKeeper-6.4.2" id="pgCodeKeeper-6.4.2">pgCodeKeeper 6.4.2</h4>
86+
<p class="date">April 11, 2022</p>
87+
<ul class="short-article">
88+
<li>Updated all library dependencies of the core program.<br>
89+
New mssql-jdbc driver (10.2) enables <a href='https://github.com/microsoft/mssql-jdbc/releases/tag/v10.1.0'>encryption by default</a>. To preserve old behavior now we set property <i>trustServerCertificate=true</i> for MSSQL connections by default. To enable server certificate validation set <i>trustServerCertificate=false</i> in connection properties or connection string.</li>
90+
<li>Fixed an error in code generated when changing a function into a procedure and vice versa.</li>
91+
<li>Fixed an error when opening a temporary SQL editor on Windows.</li>
92+
<li>Fixed an error when parsing certain <i>foreign</i> options and other object options. (<a href='https://github.com/pgcodekeeper/pgcodekeeper/releases/tag/v6.4.1'>6.4.1</a>)</li>
93+
</ul>
94+
8595
<h4 class="anchor" name="pgCodeKeeper-6.4.0" id="pgCodeKeeper-6.4.0">pgCodeKeeper 6.4.0</h4>
8696
<p class="date">March 24, 2022</p>
8797
<ul class="short-article">

0 commit comments

Comments
 (0)