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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump postgresql from 1.11.4 to 1.12.0 #500

Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps postgresql from 1.11.4 to 1.12.0.

Release notes

Sourced from postgresql's releases.

1.12.0

What's Changed

馃殌 Features

  • Add DB2 module (#1611) @鈥媋guibert

    As a result of our collaboration with @鈥媋guibert and @鈥媔rinadel from IBM, we're happy to bring DB2 support to Testcontainers 馃帀 It of course works with the JDBC URL support too! It means you can spin up a real instance of DB2 in your tests with one line: jdbc:tc:db2:///databasename.
    For more info, check the module's page: https://www.testcontainers.org/modules/databases/db2/

  • Implement dependsOn for cross-container dependencies (#1404) @鈥媌sideup

    Ever wanted to wait for container B before starting container A? We got you covered 馃槑

    With the new dependsOn method, it is now possible to model a graph of dependencies between your containers:

    @Rule
    KafkaContainer kafka = new KafkaContainer();
    
    @Rule
    SchemaRegistryContainer schemaRegistryContainer = new SchemaRegistryContainer("5.2.1")
            .withKafka(kafka)
            .dependsOn(kafka);
  • Improve pull handling (#1320) @鈥媟north

    Pulling images is sometimes a long running process. And, as with every long running process, having some sort of a visualization could help understanding what is going on!

    Before:

    11:15:50.598 INFO  馃惓 [ibmcom/db2express-c:latest] - Pulling docker image: ibmcom/db2express-c:latest. Please be patient; this may take some time but only needs to be done once.
    

    Oh yeah, it will take some time 馃槄

    After:

    19:34:25.198 INFO  馃惓 [ibmcom/db2express-c:latest] - Pulling image
    19:34:25.198 INFO  馃惓 [ibmcom/db2express-c:latest] - Pulling image layers:  0 pending,  0 downloaded,  0 extracted, (0 bytes/0 bytes)
    19:34:25.967 INFO  馃惓 [ibmcom/db2express-c:latest] - Pulling image layers: 12 pending,  1 downloaded,  0 extracted, (32 bytes/? MB)
    19:34:27.363 INFO  馃惓 [ibmcom/db2express-c:latest] - Pulling image layers: 11 pending,  2 downloaded,  0 extracted, (1 MB/? MB)
    19:34:58.519 ERROR 馃惓 [ibmcom/db2express-c:latest] - Docker image pull has not made progress in 30s - aborting pull
    19:34:58.564 ERROR 馃惓 [ibmcom/db2express-c:latest] - Failed to pull image: ibmcom/db2express-c:latest. Please check output of `docker pull ibmcom/db2express-c:latest`
    

    (Note that it detected a problem with pulling and reported it, hinting you how to debug it!)

  • Add RabbitMQ module (#1449) @鈥媘artingreber

    Hey, 馃惏 fans! How flexible do you think RabbitMQ can be? That flexible:

... (truncated)
Commits
  • 1010b89 Add "housekeeping" category to the release drafter config (#1652)
  • eb7d96b Bump mysql-connector-java from 8.0.16 to 8.0.17 in /modules/mysql (#1633)
  • 65f4ee7 Bump aws-java-sdk-sqs from 1.11.594 to 1.11.597 in /modules/localstack (#1654)
  • 505731a Bump junit-jupiter-api from 5.5.0 to 5.5.1 in /modules/junit-jupiter (#1638)
  • 1d0f022 Bump junit-jupiter-engine from 5.5.0 to 5.5.1 in /modules/junit-jupiter (#1642)
  • 365856d Bump neo4j from 3.5.7 to 3.5.8 in /modules/neo4j (#1640)
  • 195339b Bump docker-java from 3.1.0-rc-4 to 3.1.5 (#1649)
  • fcfff1a Improve splitting of SQL scripts into statements (#1627)
  • 64dcf7a use DigitalOcean for the build cache
  • 1d686a1 Implement dependsOn for cross-container dependencies (#1404)
  • 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 ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it
  • @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)

Finally, you can contact us by mentioning @dependabot.

@codecov
Copy link

codecov bot commented Jul 25, 2019

Codecov Report

Merging #500 into master will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##           master     #500   +/-   ##
=======================================
  Coverage   85.07%   85.07%           
=======================================
  Files          79       79           
  Lines        1916     1916           
  Branches      172      172           
=======================================
  Hits         1630     1630           
  Misses        206      206           
  Partials       80       80

@uweschaefer uweschaefer merged commit 3e985bb into master Jul 25, 2019
@uweschaefer uweschaefer deleted the dependabot/maven/org.testcontainers-postgresql-1.12.0 branch July 25, 2019 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant