Skip to content

Commit f940bc8

Browse files
committed
Merge branch 'version_15_1' into 'master'
version 15.1.0 See merge request codekeeper/pgcodekeeper-cli!58
2 parents 962ba32 + 78ecd5b commit f940bc8

3 files changed

Lines changed: 43 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1313

1414
### Fixed
1515

16+
## [15.1.0] - 2026-07-30
17+
18+
### Added
19+
20+
- Added support for changing table and column compression settings via `ALTER TABLE` commands instead of recreating objects when the Greenplum 7 syntax is enabled.
21+
22+
### Changed
23+
24+
- Disabled dependency analysis for objects that could not be parsed correctly, reducing the number of irrelevant errors displayed to the user.
25+
26+
### Fixed
27+
28+
- Fixed a parsing error for the `ALTER SEQUENCE ... SET LOGGED/UNLOGGED` command for regular sequences in PostgreSQL.
29+
- Fixed an error in the order of PostgreSQL `ALTER TABLE ... OWNER TO` and `ALTER SEQUENCE ... OWNER TO` commands by moving the latter to the end of the migration script.
30+
31+
### Security
32+
33+
- Increased version of lz4-java library due to CVE-2026-59949.
34+
1635
## [15.0.0] - 2026-07-14
1736

1837
### Changed
@@ -231,7 +250,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
231250
- Fixed a bug with the settings when saving objects to a project.
232251
- Fixed false differences when ignoring table column order.
233252

234-
[Unreleased]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.0.0...HEAD
253+
[Unreleased]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.1.0...HEAD
254+
[15.1.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.0.0...v15.1.0
235255
[15.0.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.7.0...v15.0.0
236256
[14.7.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.6.0...v14.7.0
237257
[14.6.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.5.0...v14.6.0

CHANGELOG.ru.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@
1313

1414
### Исправлено
1515

16+
## [15.1.0] - 2026-07-30
17+
18+
### Добавлено
19+
20+
- Добавлено изменение настроек сжатия таблиц и колонок командами `ALTER TABLE` вместо пересоздания объектов при включенном синтаксисе Greenplum 7.
21+
22+
### Изменено
23+
24+
- Отключен анализ зависимостей объектов, которые не получилось правильно распарсить, что уменьшило количество нерелевантных ошибок, отображаемых пользователю.
25+
26+
### Исправлено
27+
28+
- Исправлена ошибка парсинга команды `ALTER SEQUENCE ... SET LOGGED/UNLOGGED` для классических последовательностей в PostgreSQL.
29+
- Исправлена ошибка в последовательности команд PostgreSQL `ALTER TABLE ... OWNER TO` и `ALTER SEQUENCE ... OWNER TO` путем перемещения последней в конец скрипта миграции.
30+
31+
### Безопасность
32+
33+
- Повышена версия библиотеки lz4-java из-за CVE-2026-59949.
34+
1635
## [15.0.0] - 2026-07-14
1736

1837
### Изменено
@@ -227,7 +246,8 @@
227246
- Исправлена ошибка с работой настроек при сохранении объектов в проект.
228247
- Исправлены ложные различия при игнорировании порядка колонок таблицы.
229248

230-
[Новое]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.0.0...HEAD
249+
[Новое]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.1.0...HEAD
250+
[15.1.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v15.0.0...v15.1.0
231251
[15.0.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.7.0...v15.0.0
232252
[14.7.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.6.0...v14.7.0
233253
[14.6.0]: https://github.com/pgcodekeeper/pgcodekeeper-cli/compare/v14.5.0...v14.6.0

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</developers>
2828

2929
<properties>
30-
<codekeeper.version>15.0.0</codekeeper.version>
30+
<codekeeper.version>15.1.0</codekeeper.version>
3131

3232
<java.version>17</java.version>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)