Skip to content

Commit a99a785

Browse files
committed
announcement for 6.5.0
1 parent a214d30 commit a99a785

File tree

4 files changed

+42
-10
lines changed

4 files changed

+42
-10
lines changed

_src/app/index.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,16 @@ <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.3" id="pgCodeKeeper-6.4.3">pgCodeKeeper 6.4.3</h4>
180-
<p class="date">April 21, 2022</p>
179+
<h4 class="anchor" name="pgCodeKeeper-6.5.0" id="pgCodeKeeper-6.5.0">pgCodeKeeper 6.5.0</h4>
180+
<p class="date">July 11, 2022</p>
181181
<ul class="short-article">
182-
<li>Fixed order of operations in migration scripts when deleting a column with its CONSTRAINT. Fixed errors when reading CONSTRAINTS objects.</li>
183-
<li>Creating a script only with selected objects (CLI <i>--selected-only</i>) no longer hides <i>refreshsqlmodule</i> MS SQL commands and doesn't move them to the end of the script.</li>
184-
<li>Changing SEQUENCE START value now generates ALTER ... START command instead of RESTART.</li>
182+
<li>It is now possible to group DB connections into user-defined groups. Groups are rendered as submenus to easily find required DB connection when choosing one.</li>
183+
<li>It is now possible to import/export DB connections list.</li>
184+
<li>It is now possible to generate DROP/CREATE commands with IF (NOT) EXISTS options, and also drop some objects immediately before creating them.</li>
185+
<li>Added support for USER MAPPING objects.</li>
186+
<li>Fixed a missing dependency in composite types.</li>
187+
<li>Fixed object creation order: indices are created before constraints.</li>
188+
<li>Fixed expression analysis and dependency search in SELECT ... LATERAL commands.</li>
185189
</ul>
186190
</div>
187191

_src/app/news.html

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

45+
<h4 class="anchor" name="pgCodeKeeper-6.5.0" id="pgCodeKeeper-6.5.0">pgCodeKeeper 6.5.0</h4>
46+
<p class="date">July 11, 2022</p>
47+
<ul class="short-article">
48+
<li>It is now possible to group DB connections into user-defined groups. Groups are rendered as submenus to easily find required DB connection when choosing one.</li>
49+
<li>It is now possible to import/export DB connections list.</li>
50+
<li>It is now possible to generate DROP/CREATE commands with IF (NOT) EXISTS options, and also drop some objects immediately before creating them.</li>
51+
<li>Added support for USER MAPPING objects.</li>
52+
<li>Fixed a missing dependency in composite types.</li>
53+
<li>Fixed object creation order: indices are created before constraints.</li>
54+
<li>Fixed expression analysis and dependency search in SELECT ... LATERAL commands.</li>
55+
</ul>
56+
4557
<h4 class="anchor" name="pgCodeKeeper-6.4.3" id="pgCodeKeeper-6.4.3">pgCodeKeeper 6.4.3</h4>
4658
<p class="date">April 21, 2022</p>
4759
<ul class="short-article">

index.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,16 @@ <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.3" id="pgCodeKeeper-6.4.3">pgCodeKeeper 6.4.3</h4>
241-
<p class="date">April 21, 2022</p>
240+
<h4 class="anchor" name="pgCodeKeeper-6.5.0" id="pgCodeKeeper-6.5.0">pgCodeKeeper 6.5.0</h4>
241+
<p class="date">July 11, 2022</p>
242242
<ul class="short-article">
243-
<li>Fixed order of operations in migration scripts when deleting a column with its CONSTRAINT. Fixed errors when reading CONSTRAINTS objects.</li>
244-
<li>Creating a script only with selected objects (CLI <i>--selected-only</i>) no longer hides <i>refreshsqlmodule</i> MS SQL commands and doesn't move them to the end of the script.</li>
245-
<li>Changing SEQUENCE START value now generates ALTER ... START command instead of RESTART.</li>
243+
<li>It is now possible to group DB connections into user-defined groups. Groups are rendered as submenus to easily find required DB connection when choosing one.</li>
244+
<li>It is now possible to import/export DB connections list.</li>
245+
<li>It is now possible to generate DROP/CREATE commands with IF (NOT) EXISTS options, and also drop some objects immediately before creating them.</li>
246+
<li>Added support for USER MAPPING objects.</li>
247+
<li>Fixed a missing dependency in composite types.</li>
248+
<li>Fixed object creation order: indices are created before constraints.</li>
249+
<li>Fixed expression analysis and dependency search in SELECT ... LATERAL commands.</li>
246250
</ul>
247251
</div>
248252

news.html

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

85+
<h4 class="anchor" name="pgCodeKeeper-6.5.0" id="pgCodeKeeper-6.5.0">pgCodeKeeper 6.5.0</h4>
86+
<p class="date">July 11, 2022</p>
87+
<ul class="short-article">
88+
<li>It is now possible to group DB connections into user-defined groups. Groups are rendered as submenus to easily find required DB connection when choosing one.</li>
89+
<li>It is now possible to import/export DB connections list.</li>
90+
<li>It is now possible to generate DROP/CREATE commands with IF (NOT) EXISTS options, and also drop some objects immediately before creating them.</li>
91+
<li>Added support for USER MAPPING objects.</li>
92+
<li>Fixed a missing dependency in composite types.</li>
93+
<li>Fixed object creation order: indices are created before constraints.</li>
94+
<li>Fixed expression analysis and dependency search in SELECT ... LATERAL commands.</li>
95+
</ul>
96+
8597
<h4 class="anchor" name="pgCodeKeeper-6.4.3" id="pgCodeKeeper-6.4.3">pgCodeKeeper 6.4.3</h4>
8698
<p class="date">April 21, 2022</p>
8799
<ul class="short-article">

0 commit comments

Comments
 (0)