Skip to content

Commit c4b1728

Browse files
committed
announcement for 6.2.0
1 parent c1d6f43 commit c4b1728

File tree

4 files changed

+46
-22
lines changed

4 files changed

+46
-22
lines changed

_src/app/index.html

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

178178
<div class="col-sm-6 col-lg-6">
179-
<h4 class="anchor" name="pgCodeKeeper-6.1.0" id="pgCodeKeeper-6.1.0">pgCodeKeeper 6.1.0</h4>
180-
<p class="date">August 16, 2021</p>
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>
181181
<ul class="short-article">
182-
<li>It is now possible to selectively load schemas when reading a project or a DB via JDBC. Skipping schemas accelerates DB or project loading. Objects in ignored schemas cannot be used when generation migration scripts. See <a href='https://pgcodekeeper.readthedocs.io/en/latest/white_black_list_schemas.html'>docs</a> for further info.</li>
183-
<li>Added developer documentation describing overall project structure and work process in <a href='https://github.com/pgcodekeeper/pgcodekeeper#readme'>README</a>.</li>
184-
<li>Improved function links in SQL editor, and also function dependencies.</li>
185-
<li>Fixed a false diff on functions with GRANT TO PUBLIC privileges.</li>
186-
<li>Added a DB type filter to the drop-down list in Project Editor.</li>
187-
<li>Fixed drop-down DB list rendering in Project Editor when running under KDE.</li>
188-
<li>Fixed an error in table data migration code generation.</li>
189-
<li>Fixed a parser error for ALTER TABLE SWITCH TO in MS SQL.</li>
190-
<li>Removed extraneous Show In menu in Project Explorer.</li>
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>
191190
</ul>
192191
</div>
193192

_src/app/news.html

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

45+
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
46+
<p class="date">October 12, 2021</p>
47+
<ul class="short-article">
48+
<li>Added support for SERVER and FOREIGN DATA WRAPPER objects.</li>
49+
<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>
50+
<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>
51+
<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>
52+
<li>Added an option to autoformat object code when comparing them and saving them into projects.</li>
53+
<li>Fixed erroneous Java 11 requirement in CLI version.</li>
54+
<li>Fixed code generation when migrating data of tables containing IDENTITY columns.</li>
55+
<li>Improved tooltip rendering in SQL editor.</li>
56+
</ul>
57+
4558
<h4 class="anchor" name="pgCodeKeeper-6.1.0" id="pgCodeKeeper-6.1.0">pgCodeKeeper 6.1.0</h4>
4659
<p class="date">August 16, 2021</p>
4760
<ul class="short-article">

index.html

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

239239
<div class="col-sm-6 col-lg-6">
240-
<h4 class="anchor" name="pgCodeKeeper-6.1.0" id="pgCodeKeeper-6.1.0">pgCodeKeeper 6.1.0</h4>
241-
<p class="date">August 16, 2021</p>
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>
242242
<ul class="short-article">
243-
<li>It is now possible to selectively load schemas when reading a project or a DB via JDBC. Skipping schemas accelerates DB or project loading. Objects in ignored schemas cannot be used when generation migration scripts. See <a href='https://pgcodekeeper.readthedocs.io/en/latest/white_black_list_schemas.html'>docs</a> for further info.</li>
244-
<li>Added developer documentation describing overall project structure and work process in <a href='https://github.com/pgcodekeeper/pgcodekeeper#readme'>README</a>.</li>
245-
<li>Improved function links in SQL editor, and also function dependencies.</li>
246-
<li>Fixed a false diff on functions with GRANT TO PUBLIC privileges.</li>
247-
<li>Added a DB type filter to the drop-down list in Project Editor.</li>
248-
<li>Fixed drop-down DB list rendering in Project Editor when running under KDE.</li>
249-
<li>Fixed an error in table data migration code generation.</li>
250-
<li>Fixed a parser error for ALTER TABLE SWITCH TO in MS SQL.</li>
251-
<li>Removed extraneous Show In menu in Project Explorer.</li>
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>
252251
</ul>
253252
</div>
254253

news.html

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

85+
<h4 class="anchor" name="pgCodeKeeper-6.2.0" id="pgCodeKeeper-6.2.0">pgCodeKeeper 6.2.0</h4>
86+
<p class="date">October 12, 2021</p>
87+
<ul class="short-article">
88+
<li>Added support for SERVER and FOREIGN DATA WRAPPER objects.</li>
89+
<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>
90+
<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>
91+
<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>
92+
<li>Added an option to autoformat object code when comparing them and saving them into projects.</li>
93+
<li>Fixed erroneous Java 11 requirement in CLI version.</li>
94+
<li>Fixed code generation when migrating data of tables containing IDENTITY columns.</li>
95+
<li>Improved tooltip rendering in SQL editor.</li>
96+
</ul>
97+
8598
<h4 class="anchor" name="pgCodeKeeper-6.1.0" id="pgCodeKeeper-6.1.0">pgCodeKeeper 6.1.0</h4>
8699
<p class="date">August 16, 2021</p>
87100
<ul class="short-article">

0 commit comments

Comments
 (0)