Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump liquibase-core from 3.10.1 to 4.0.0 #257

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jul 14, 2020

Bumps liquibase-core from 3.10.1 to 4.0.0.

Release notes

Sourced from liquibase-core's releases.

v4.0.0 Beta 2

Improvements and Bugfixes

In this second beta for the new major version release, we

  • Updated of all of the extensions to take advantage of Liquibase 4.0
  • Included a compatibility layer for any pre-4.0 community extensions
  • Stopped including root filesystem in default CLI search paths
  • Fix for --logLevel=debug/fine

How to be a Beta Tester

Please check out https://liquibase.jira.com/wiki/spaces/LB/pages/1274904689/Liquibase+Beta for details on how to get involved with the Liquibase 4.0beta2 test plan. Testing database extensions is the focus for Beta 2.

The goal is to uncover, document, and share all the issues that keep you from working how you want to work with Liquibase. Please test your setup and document any problems as new GitHub Issues or GitHub Code Contributions.

v4.0.0 Beta 1

😎 Download Liquibase 4.0.0-beta1 in the Assets section at the bottom of this release note. 😎

Improvements and Bugfixes

In this major new version release, we have integrated dozens of community Pull Requests, addressing well over 100 bugs, in addition to the dozens of updates to the 3.8.x branches.

How to be a Beta Tester

Please check out https://liquibase.jira.com/wiki/spaces/LB/pages/1274904689/Liquibase+Beta for details on how to get involved with the Liquibase 4.0beta1 test plan, including code and integrations tested, not tested, and not ready for test, yet.

The underlying goal of Beta testing is to uncover, document, and share all the issues that keep you from working how you want to work with Liquibase. Please test your setup and document any problems as new GitHub Issues or GitHub Code Contributions.

What We Tested

This Major version Beta release comes with the risks of all Beta software! We have tested dozens of PRs across multiple environments interacting with multiple databases, but we cannot test all the wildly diverse ways the community uses Liquibase. But you can! In this Beta we are counting on valuable community members — like you — to put this Beta through your paces and then to file (and possibly fix) any issues which you encounter in your specific setup and use cases.

We covered the following broad categories:

  1. Where Liquibase Writes Output
  2. How Liquibase Finds Files
  3. How Liquibase Works in Integrations
  4. How Liquibase Interacts with the Database
  5. How Liquibase Pro interacts with the Database

Highlighted Changes and Bug Fixes

We made two major/breaking changes to the Liquibase Library API. These will affect anyone using extensions, but do NOT impact the main Liquibase functionality:

  • Extension classes are now loaded via the java.util.ServiceLoader system rather than the custom class finding logic we had before
  • Logging is now based on java.util.Logging with a cleaned up API

In addition to these two major changes, the following changes have been incorporated as well:

  • Fixes to ConstraintsConfig
Changelog

Sourced from liquibase-core's changelog.

Liquibase Core Changelog

Changes in version 4.0.0 Beta2 (2020.07.1)

  • Re-introduced deprecated versions of commonly used 3.x methods that had been removed for 4.0
  • Fix to handle --logLevel=debug/fine CLI argument
  • Do not include root filesystem in default CLI search paths

Changes in version 3.10.1 (2020.7.2)

  • GH PR#913 - [CORE-3471] Fixed NPE in LiquibaseUtil when MANIFEST.MF doesn't contain Bundle-Version or Build-Time
  • GH PR#917 - [Core 3463] Fix for validateX attributes of constraintsConfig
  • GH PR#919 - Fixed issued with bundling in shaded jars
  • GH PR#941 - [CORE-3520] Add support for ALWAYS generation type with PostgreSQL auto-increment column.
  • GH PR#946 - [CORE-3524] Prevent auto-increment column silently failing on Oracle.
  • GH PR#949 - [CORE-3526] TABLE is a reserved keyword in H2database since 1.4.197
  • GH PR#963 - [CORE-3556] No default values for changes' properties
  • GH PR#965 - [CORE-3558] Unique constraint name is ignored when using the addColumn change
  • GH PR#970 - Fix Java 1.9+ versions require jaxb as separate dependency
  • GH PR#971 - Add Class-Path entry to the manifest file to simplify command line execution
  • GH PR#975 - NULL date value in prepared statement requires type in MSSQL
  • GH PR#986 - XMLSerializer: Correct Map value serialization
  • GH PR#993 - Improve ChangeFactory initialization time
  • GH Issue#1035 - Change how Liquibase produces debug logs
  • GH Issue#1051 - Update liquibase-core.jar to exclude ServiceLoader files
  • GH PR#1053 - Update liquibase_autocomplete.shape
  • GH PR#1059 - Allow multiple column unique constraints on table creation.
  • GH Issue#1069 - Patch Liquibase Runner plugin for Jenkins
  • GH Issue#1070 - Enable --help without databse connection
  • GH PR#1082 - Correct include bash script
  • GH PR#1096 - Fix sequence statement generation for PostgreSQL <= 9.4
  • GH Issue#1104 - Fix maven-liquibase offline diff to prevent errors
  • GH Issue#1113 - Fix schema name using "--defaultSchemaName" on a non-default schema
  • GH PR#1120 - LiquibaseServletListener.contextInitialized() improved with Embedded Derby
  • GH Issue#1220 - Fix how JAVA_HOME env variable is handled

Changes in version 3.10.0 (2020.6.12)

  • [Pro] Built-in runWith="sqlplus"
  • New "runWith" changeSet extension point
  • Added liquibase_autocomplete_mac.bash completion script

Changes in version 3.9.0 (2020.5.13)

  • [Pro] New ""--format=json" argument for diff command

Changes in version 4.0.0 Beta1 (2020.4.20)

  • MAJOR CHANGE: Replaced old custom classpath scanner with java.util.ServiceLoader for finding extensions
  • MAJOR CHANGE: Refactored logging system to clean up API and use java.util.Logging
  • Fixes to ConstraintsConfig liquibase/liquibase#954
  • ignoreLines command in formatted sql log liquibase/liquibase#877
  • postgresql >= 10: use identity columns for autoincrement liquibase/liquibase#874
Commits
  • 8891a80 Improved XSD comment
  • c390f8c Added changeLogId attribute to 4.0 xsd
  • 9912872 Added 4.0.0 GA release notes
  • 0f09ada Merged 3.10.x to 4.0.x
  • a170194 Incremented version to 4.0.0 non-beta
  • 1dc1718 Incremented version to 3.10.2
  • 6a147bf Merged 3.10 xsd changes into 4.0
  • 281efc6 Update sample changelogs to use version 3.10 XSDs
  • 6c23f3b Merge remote-tracking branch 'origin/4.0.x' into 4.0.x
  • c8c7e51 Added changelog for 4.0.0 beta2
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [liquibase-core](https://github.com/liquibase/liquibase) from 3.10.1 to 4.0.0.
- [Release notes](https://github.com/liquibase/liquibase/releases)
- [Changelog](https://github.com/liquibase/liquibase/blob/master/changelog.txt)
- [Commits](liquibase/liquibase@v3.10.1...v4.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jul 14, 2020
@r2-lf
Copy link
Contributor

r2-lf commented Jul 14, 2020

Hi, @nvoxland ! Can you look at this failed PR build? Thanks!

@r2-lf
Copy link
Contributor

r2-lf commented Jul 17, 2020

@dependabot recreate

@dependabot-preview
Copy link
Contributor Author

Looks like org.liquibase:liquibase-core is up-to-date now, so this is no longer needed.

@dependabot-preview dependabot-preview bot deleted the dependabot/maven/org.liquibase-liquibase-core-4.0.0 branch July 17, 2020 14:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants