From 22109b1817c57d582902ca21d5ff51c57a01499a Mon Sep 17 00:00:00 2001 From: suryaaki2 Date: Wed, 3 Aug 2022 14:53:50 -0500 Subject: [PATCH 1/3] Update changelog txt --- changelog.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/changelog.txt b/changelog.txt index d42f8a57e9b..8a4d3bfba8c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,38 @@ Liquibase Core Changelog =========================================== +Changes in version 4.15.0 (2022.08.04) + +## Notable Changes +* liquibase flow and new flow-file (DAT-10419) by in #2946 + This is currently a Liquibase Labs restricted capability, so please contact mario@liquibase.com to request a license key. + Learn more at http://docs.liquibase.com/flow + +## Enhancements +* searchPath - explain concisely +* duplicateFileMode - explain concisely + +## Fixes +* Fix maven plugin pro commands for local developer install by @StevenMassaro in #3101 +* Update Derby reserved words by @andrewhj in #1971 +* Output "may lose settings" warning on mysql/mariadb for more impacted change types by @nvoxland in #3045 +* Improved "include" fix performance: optimized normalizePath method by @lzxgyh in #3063 +* Removed DatabaseInfoAttributes in XSD by @kazz62 in #2239 +* Do not split SQL on delimiters within BEGIN/END blocks by @nvoxland in #1589 +* Set max fractional timestamp digits to 12 for all DB2 editions (fix #2880) by @ctgnz in #2892 +* Fix query for snapshotting views on DB2/Z by @michaelmatthiaskern in #2712 +* Fix for bug 2711: Error when calling a procedure with parameters on DB2Z by @michaelmatthiaskern in #2765 +* Improve CLI error messages by @nvoxland in #3078 +* Liquibase flow command (DAT-10419) by @StevenMassaro in #2946 +* support setting searchPath in CommandTests (DAT-11055) by @StevenMassaro in #3129 +* Improved handling of endDelimiter="/" by @nvoxland in #3118 +* Upgrade installer to ship with jdk 17.0.4+8 by @nvoxland in #3104 +* Improve failure message of RowCountPrecondition to preserve expected row count by @martinspielmann in #3093 +* Changed what sequence attributes are included in diff/generate changelog for Snowflake by @yodzhubeiskyi in #3121 +* Fix columnNames snapshot attribute of uniqueConstraints for Snowflake by @yodzhubeiskyi in #3123 +* Added duplicateFileMode setting for maven plugin by @nvoxland in #3119 + + Changes in version 4.14.0 (2022.07.26) ## Notable Changes From dd764b025341bdede98248e97bd5b06f6307a1c1 Mon Sep 17 00:00:00 2001 From: suryaaki2 Date: Wed, 3 Aug 2022 15:10:26 -0500 Subject: [PATCH 2/3] updated the descriptions for searchPath and duplicateFileMode --- changelog.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 8a4d3bfba8c..9aab3d5d61a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -9,8 +9,8 @@ Changes in version 4.15.0 (2022.08.04) Learn more at http://docs.liquibase.com/flow ## Enhancements -* searchPath - explain concisely -* duplicateFileMode - explain concisely +* searchPath - Adds new searchPath configuration to the CLI, maven, and Ant integrations. While we will still search the classpath for files, searchPath is the new, better place to configure additional locations to look for changelog files. +* duplicateFileMode - Adds a new liquibase.duplicateFileMode global setting which defaults to "ERROR" but can also be set to "WARN" ## Fixes * Fix maven plugin pro commands for local developer install by @StevenMassaro in #3101 From 01940fbf8ce9366a2611e57461e4b891f15e861a Mon Sep 17 00:00:00 2001 From: suryaaki2 Date: Wed, 3 Aug 2022 15:23:58 -0500 Subject: [PATCH 3/3] Updated changelog --- changelog.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9aab3d5d61a..53c83f3d835 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,10 +8,6 @@ Changes in version 4.15.0 (2022.08.04) This is currently a Liquibase Labs restricted capability, so please contact mario@liquibase.com to request a license key. Learn more at http://docs.liquibase.com/flow -## Enhancements -* searchPath - Adds new searchPath configuration to the CLI, maven, and Ant integrations. While we will still search the classpath for files, searchPath is the new, better place to configure additional locations to look for changelog files. -* duplicateFileMode - Adds a new liquibase.duplicateFileMode global setting which defaults to "ERROR" but can also be set to "WARN" - ## Fixes * Fix maven plugin pro commands for local developer install by @StevenMassaro in #3101 * Update Derby reserved words by @andrewhj in #1971 @@ -24,7 +20,6 @@ Changes in version 4.15.0 (2022.08.04) * Fix for bug 2711: Error when calling a procedure with parameters on DB2Z by @michaelmatthiaskern in #2765 * Improve CLI error messages by @nvoxland in #3078 * Liquibase flow command (DAT-10419) by @StevenMassaro in #2946 -* support setting searchPath in CommandTests (DAT-11055) by @StevenMassaro in #3129 * Improved handling of endDelimiter="/" by @nvoxland in #3118 * Upgrade installer to ship with jdk 17.0.4+8 by @nvoxland in #3104 * Improve failure message of RowCountPrecondition to preserve expected row count by @martinspielmann in #3093