Skip to content

Commit 68d880b

Browse files
committed
announcement for 6.3.0
1 parent b41c878 commit 68d880b

File tree

4 files changed

+62
-20
lines changed

4 files changed

+62
-20
lines changed

_src/app/index.html

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

178178
<div class="col-sm-6 col-lg-6">
179-
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
180-
<p class="date">October 12, 2021</p>
179+
<h4 class="anchor" name="pgCodeKeeper-6.3.0" id="pgCodeKeeper-6.3.0">pgCodeKeeper 6.3.0</h4>
180+
<p class="date">November 17, 2021</p>
181181
<ul class="short-article">
182-
<li>Added support for SERVER and FOREIGN DATA WRAPPER objects.</li>
183-
<li>Added SQL code refactoring feature. Users can now rename objects in SQL code together with references to those objects. This feature is available in context menu of SQL editor or with a hotkey <i>Alt+Shift+R</i>.</li>
184-
<li>Added object references search feature for SQL code. Users can now search for all recognized references to the currently selected object in SQL editor. This feature is available in context menu of SQL editor or with a hotkey <i>Ctrl+Shift+G</i>.</li>
185-
<li>Added a quick fix for misplaced object errors. It is available in the error tooltip or in <i>Quick Fix</i> context menu in SQL editor. This quick fix moves the object's file to its expected location in the project.</li>
186-
<li>Added an option to autoformat object code when comparing them and saving them into projects.</li>
187-
<li>Fixed erroneous Java 11 requirement in CLI version.</li>
188-
<li>Fixed code generation when migrating data of tables containing IDENTITY columns.</li>
189-
<li>Improved tooltip rendering in SQL editor.</li>
182+
<li>
183+
Added <a href='https://www.postgresql.org/docs/14/release-14.html'>PostgreSQL 14</a> support:
184+
<ul>
185+
<li>parser support for new SQL and PL/pgSQL syntaxes</li>
186+
<li>support for SQL-standard function bodies, not wrapped as string literals</li>
187+
<li>support for COMPRESSION option in table columns</li>
188+
<li>support for MULTIRANGE and SUCSRIPT options in types</li>
189+
<li>support for keywords used as column names in SELECT without AS</li>
190+
<li>removed support of postfix unary operators</li>
191+
</ul>
192+
</li>
193+
<li>Fixed an error when parsing SELECT ... INTO in PL/pgSQL IF-statement.</li>
190194
</ul>
191195
</div>
192196

_src/app/news.html

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

45+
<h4 class="anchor" name="pgCodeKeeper-6.3.0" id="pgCodeKeeper-6.3.0">pgCodeKeeper 6.3.0</h4>
46+
<p class="date">November 17, 2021</p>
47+
<ul class="short-article">
48+
<li>
49+
Added <a href='https://www.postgresql.org/docs/14/release-14.html'>PostgreSQL 14</a> support:
50+
<ul>
51+
<li>parser support for new SQL and PL/pgSQL syntaxes</li>
52+
<li>support for SQL-standard function bodies, not wrapped as string literals</li>
53+
<li>support for COMPRESSION option in table columns</li>
54+
<li>support for MULTIRANGE and SUCSRIPT options in types</li>
55+
<li>support for keywords used as column names in SELECT without AS</li>
56+
<li>removed support of postfix unary operators</li>
57+
</ul>
58+
</li>
59+
<li>Fixed an error when parsing SELECT ... INTO in PL/pgSQL IF-statement.</li>
60+
</ul>
61+
4562
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
4663
<p class="date">October 12, 2021</p>
4764
<ul class="short-article">

index.html

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

239239
<div class="col-sm-6 col-lg-6">
240-
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
241-
<p class="date">October 12, 2021</p>
240+
<h4 class="anchor" name="pgCodeKeeper-6.3.0" id="pgCodeKeeper-6.3.0">pgCodeKeeper 6.3.0</h4>
241+
<p class="date">November 17, 2021</p>
242242
<ul class="short-article">
243-
<li>Added support for SERVER and FOREIGN DATA WRAPPER objects.</li>
244-
<li>Added SQL code refactoring feature. Users can now rename objects in SQL code together with references to those objects. This feature is available in context menu of SQL editor or with a hotkey <i>Alt+Shift+R</i>.</li>
245-
<li>Added object references search feature for SQL code. Users can now search for all recognized references to the currently selected object in SQL editor. This feature is available in context menu of SQL editor or with a hotkey <i>Ctrl+Shift+G</i>.</li>
246-
<li>Added a quick fix for misplaced object errors. It is available in the error tooltip or in <i>Quick Fix</i> context menu in SQL editor. This quick fix moves the object's file to its expected location in the project.</li>
247-
<li>Added an option to autoformat object code when comparing them and saving them into projects.</li>
248-
<li>Fixed erroneous Java 11 requirement in CLI version.</li>
249-
<li>Fixed code generation when migrating data of tables containing IDENTITY columns.</li>
250-
<li>Improved tooltip rendering in SQL editor.</li>
243+
<li>
244+
Added <a href='https://www.postgresql.org/docs/14/release-14.html'>PostgreSQL 14</a> support:
245+
<ul>
246+
<li>parser support for new SQL and PL/pgSQL syntaxes</li>
247+
<li>support for SQL-standard function bodies, not wrapped as string literals</li>
248+
<li>support for COMPRESSION option in table columns</li>
249+
<li>support for MULTIRANGE and SUCSRIPT options in types</li>
250+
<li>support for keywords used as column names in SELECT without AS</li>
251+
<li>removed support of postfix unary operators</li>
252+
</ul>
253+
</li>
254+
<li>Fixed an error when parsing SELECT ... INTO in PL/pgSQL IF-statement.</li>
251255
</ul>
252256
</div>
253257

news.html

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

85+
<h4 class="anchor" name="pgCodeKeeper-6.3.0" id="pgCodeKeeper-6.3.0">pgCodeKeeper 6.3.0</h4>
86+
<p class="date">November 17, 2021</p>
87+
<ul class="short-article">
88+
<li>
89+
Added <a href='https://www.postgresql.org/docs/14/release-14.html'>PostgreSQL 14</a> support:
90+
<ul>
91+
<li>parser support for new SQL and PL/pgSQL syntaxes</li>
92+
<li>support for SQL-standard function bodies, not wrapped as string literals</li>
93+
<li>support for COMPRESSION option in table columns</li>
94+
<li>support for MULTIRANGE and SUCSRIPT options in types</li>
95+
<li>support for keywords used as column names in SELECT without AS</li>
96+
<li>removed support of postfix unary operators</li>
97+
</ul>
98+
</li>
99+
<li>Fixed an error when parsing SELECT ... INTO in PL/pgSQL IF-statement.</li>
100+
</ul>
101+
85102
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
86103
<p class="date">October 12, 2021</p>
87104
<ul class="short-article">

0 commit comments

Comments
 (0)