Skip to content

Commit

Permalink
Added the 'author' argument to generateChangeLog, moved some constant…
Browse files Browse the repository at this point in the history
…s around
  • Loading branch information
stevesaliman committed Oct 1, 2023
1 parent a0799fd commit a25162d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changes for 2.2.1
=================
- Added support for the `author` argument of the `diffChangeLog` and `generateChangeLog` commands
with thanks to @EggOxygen.

Changes for 2.2.0
=================
- Removed the old `liquibase` id from the plugin. The plugin must be applied with its new standard
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# What version of the Liquibase Gradle Plugin are we building?
liquibaseGradlePluginVersion=2.2.1
liquibaseGradlePluginVersion=2.2.1-SNAPSHOT

# When we download a maven dependency, should we also get source files?
downloadSources=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ abstract class LiquibaseCommand {
* argument to the {@code collectArguments} methods of the Liquibase CommandSteps.
*/
static final POST_COMMAND_ARGUMENTS = [
AUTHOR,
DATA_OUTPUT_DIRECTORY,
EXCLUDE_OBJECTS,
INCLUDE_OBJECTS,
SQL,
SQL_FILE,
VERBOSE,
AUTHOR
]

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class DiffChangelogCommand extends LiquibaseCommand {
USERNAME,
PASSWORD,
URL_ARG,
AUTHOR,
DEFAULT_CATALOG_NAME,
DEFAULT_SCHEMA_NAME,
CHANGELOG_FILE,
Expand All @@ -48,8 +49,7 @@ class DiffChangelogCommand extends LiquibaseCommand {
INCLUDE_CATALOG,
DIFF_TYPES,
DRIVER,
DRIVER_PROPERTIES_FILE,
AUTHOR
DRIVER_PROPERTIES_FILE
]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class GenerateChangelogCommand extends LiquibaseCommand {
USERNAME,
PASSWORD,
URL_ARG,
AUTHOR,
CHANGELOG_FILE,
DATA_OUTPUT_DIRECTORY,
EXCLUDE_OBJECTS,
Expand Down

0 comments on commit a25162d

Please sign in to comment.