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 localstack.version from 1.7.2 to 1.12.0 #40

Closed

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Aug 6, 2019

Bumps localstack.version from 1.7.2 to 1.12.0.

Updates testcontainers from 1.7.2 to 1.12.0

Release notes

Sourced from testcontainers'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)
Changelog

Sourced from testcontainers's changelog.

Change Log

All notable changes to this project will be documented in this file.

MOVED

After version 1.8.3 all future releases will only be documented in the Releases section of the GitHub repository. This changelog file will eventually be removed.

[1.8.3] - 2018-08-05

Fixed

[1.8.2] - 2018-07-31

Fixed

  • Add support for transparently using local images with docker-compose (#798, fixes #674)
  • Fix bug with Dockerfile image creation with Docker for Mac 18.06-ce (#808, fixes #680)

Changed

  • Update Visible Assertions to 2.1.1 (#779).
  • KafkaContainer optimization (group.initial.rebalance.delay.ms=0) (#782).

[1.8.1] - 2018-07-10

Fixed

  • Linux/Mac: Added support for docker credential helpers so that images may be pulled from private registries. See #729, #647 and #567.
  • Ensure that the COMPOSE_FILE environment variable is populated with all relevant compose file names when running docker-compose in local mode #755.
  • Fixed issue whereby specified command in MariaDB image was not being applied. (#534)
  • Changed Oracle thin URL to support both Oracle 11 and 12 XE (#769)
  • Ensure that full JDBC URL query string is passed to JdbcDatabaseDelegate during initscript invocation (#741; fixes #727)
  • Ensure that necessary transitive dependency inclusions are applied to generated project POMs (#772; fixes #753 and #652)

Changed

  • Update Apache Pulsar module to 2.0.1 #760.
  • Make JdbcDatabaseContainer#getDriverClassName public #743.
  • enable copyFileToContainer feature during container startup #742.
  • avoid using file mounting in KafkaContainer #775.
  • Added Apache Cassandra module #776.

[1.8.0] - 2018-06-14

Fixed

  • Fixed JDBC URL Regex Pattern to ensure all supported Database URL's are accepted (#596)
  • Filtered out TestContainer parameters (TC_*) from query string before passing to database (#345)
  • Use latest tag as default image tag (#676)
... (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

Updates localstack from 1.7.2 to 1.12.0

Release notes

Sourced from localstack'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)
Changelog

Sourced from localstack's changelog.

Change Log

All notable changes to this project will be documented in this file.

MOVED

After version 1.8.3 all future releases will only be documented in the Releases section of the GitHub repository. This changelog file will eventually be removed.

[1.8.3] - 2018-08-05

Fixed

[1.8.2] - 2018-07-31

Fixed

  • Add support for transparently using local images with docker-compose (#798, fixes #674)
  • Fix bug with Dockerfile image creation with Docker for Mac 18.06-ce (#808, fixes #680)

Changed

  • Update Visible Assertions to 2.1.1 (#779).
  • KafkaContainer optimization (group.initial.rebalance.delay.ms=0) (#782).

[1.8.1] - 2018-07-10

Fixed

  • Linux/Mac: Added support for docker credential helpers so that images may be pulled from private registries. See #729, #647 and #567.
  • Ensure that the COMPOSE_FILE environment variable is populated with all relevant compose file names when running docker-compose in local mode #755.
  • Fixed issue whereby specified command in MariaDB image was not being applied. (#534)
  • Changed Oracle thin URL to support both Oracle 11 and 12 XE (#769)
  • Ensure that full JDBC URL query string is passed to JdbcDatabaseDelegate during initscript invocation (#741; fixes #727)
  • Ensure that necessary transitive dependency inclusions are applied to generated project POMs (#772; fixes #753 and #652)

Changed

  • Update Apache Pulsar module to 2.0.1 #760.
  • Make JdbcDatabaseContainer#getDriverClassName public #743.
  • enable copyFileToContainer feature during container startup #742.
  • avoid using file mounting in KafkaContainer #775.
  • Added Apache Cassandra module #776.

[1.8.0] - 2018-06-14

Fixed

  • Fixed JDBC URL Regex Pattern to ensure all supported Database URL's are accepted (#596)
  • Filtered out TestContainer parameters (TC_*) from query string before passing to database (#345)
  • Use latest tag as default image tag (#676)
... (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 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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 ['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 specific 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.

@dependabot-preview dependabot-preview bot requested a review from a team August 6, 2019 13:19
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 6, 2019
@dependabot-preview dependabot-preview bot force-pushed the dependabot/maven/localstack.version-1.12.0 branch from 5ebed8a to 0f08805 Compare August 13, 2019 12:53
Bumps `localstack.version` from 1.7.2 to 1.12.0.

Updates `testcontainers` from 1.7.2 to 1.12.0
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.7.2...1.12.0)

Updates `localstack` from 1.7.2 to 1.12.0
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.7.2...1.12.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/maven/localstack.version-1.12.0 branch from 0f08805 to 8e1a7c7 Compare August 13, 2019 13:57
@janolaveide
Copy link
Contributor

breaks tests

@dependabot-preview
Copy link
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot-preview dependabot-preview bot deleted the dependabot/maven/localstack.version-1.12.0 branch August 22, 2019 07:09
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

1 participant