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 testcontainers.version from 1.16.2 to 1.16.3 #2972

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2022

Bumps testcontainers.version from 1.16.2 to 1.16.3.
Updates testcontainers from 1.16.2 to 1.16.3

Release notes

Sourced from testcontainers's releases.

1.16.3

What's Changed

Highlights

Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

k3s module (#4582) @​rnorth, @​kiview

We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
k3s.start();
String kubeConfigYaml = k3s.getKubeConfigYaml();
ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));
// now use client to talk to your cluster!

Check out the docs to find out more!

Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

... (truncated)

Commits
  • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
  • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
  • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
  • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
  • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
  • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
  • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
  • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
  • 8186795 Basic K3S module (#4582)
  • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
  • Additional commits viewable in compare view

Updates elasticsearch from 1.16.2 to 1.16.3

Release notes

Sourced from elasticsearch's releases.

1.16.3

What's Changed

Highlights

Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

k3s module (#4582) @​rnorth, @​kiview

We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
k3s.start();
String kubeConfigYaml = k3s.getKubeConfigYaml();
ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));
// now use client to talk to your cluster!

Check out the docs to find out more!

Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

... (truncated)

Commits
  • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
  • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
  • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
  • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
  • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
  • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
  • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
  • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
  • 8186795 Basic K3S module (#4582)
  • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
  • Additional commits viewable in compare view

Updates cassandra from 1.16.2 to 1.16.3

Release notes

Sourced from cassandra's releases.

1.16.3

What's Changed

Highlights

Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

k3s module (#4582) @​rnorth, @​kiview

We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
k3s.start();
String kubeConfigYaml = k3s.getKubeConfigYaml();
ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));
// now use client to talk to your cluster!

Check out the docs to find out more!

Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

... (truncated)

Commits
  • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
  • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
  • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
  • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
  • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
  • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
  • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
  • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
  • 8186795 Basic K3S module (#4582)
  • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
  • Additional commits viewable in compare view

Updates solr from 1.16.2 to 1.16.3

Release notes

Sourced from solr's releases.

1.16.3

What's Changed

Highlights

Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

k3s module (#4582) @​rnorth, @​kiview

We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
k3s.start();
String kubeConfigYaml = k3s.getKubeConfigYaml();
ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));
// now use client to talk to your cluster!

Check out the docs to find out more!

Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

... (truncated)

Commits
  • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
  • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
  • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
  • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
  • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
  • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
  • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
  • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
  • 8186795 Basic K3S module (#4582)
  • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
  • Additional commits viewable in compare view

Updates junit-jupiter from 1.16.2 to 1.16.3

Release notes

Sourced from junit-jupiter's releases.

1.16.3

What's Changed

Highlights

Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

k3s module (#4582) @​rnorth, @​kiview

We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
k3s.start();
String kubeConfigYaml = k3s.getKubeConfigYaml();
ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));
// now use client to talk to your cluster!

Check out the docs to find out more!

Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

... (truncated)

Commits
  • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
  • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
  • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
  • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
  • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
  • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
  • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
  • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
  • 8186795 Basic K3S module (#4582)
  • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
  • 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.


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 dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 3, 2022
@janusgraph-bot janusgraph-bot added the cla: external Externally-managed CLA label Feb 3, 2022
@FlorianHockmann
Copy link
Member

@dependabot recreate

Bumps `testcontainers.version` from 1.16.2 to 1.16.3.

Updates `testcontainers` from 1.16.2 to 1.16.3
- [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.16.2...1.16.3)

Updates `elasticsearch` from 1.16.2 to 1.16.3
- [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.16.2...1.16.3)

Updates `cassandra` from 1.16.2 to 1.16.3
- [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.16.2...1.16.3)

Updates `solr` from 1.16.2 to 1.16.3
- [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.16.2...1.16.3)

Updates `junit-jupiter` from 1.16.2 to 1.16.3
- [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.16.2...1.16.3)

---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.testcontainers:elasticsearch
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.testcontainers:cassandra
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.testcontainers:solr
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.testcontainers:junit-jupiter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/testcontainers.version-1.16.3 branch from cc5ff5b to 4921c0e Compare April 6, 2022 13:46
FlorianHockmann added a commit to FlorianHockmann/janusgraph that referenced this pull request Jun 22, 2022
This updates JUnit, TestContainers and Lombok together as it wasn't
possible to only update TestContainers alone since it also depends
on JUnit, see PR JanusGraph#2972.

Signed-off-by: Florian Hockmann <fh@florian-hockmann.de>
@FlorianHockmann FlorianHockmann mentioned this pull request Jun 22, 2022
9 tasks
@FlorianHockmann
Copy link
Member

Superseded by #3090.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 22, 2022

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

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

@dependabot dependabot bot deleted the dependabot/maven/testcontainers.version-1.16.3 branch June 22, 2022 12:51
FlorianHockmann added a commit to FlorianHockmann/janusgraph that referenced this pull request Jun 22, 2022
This updates JUnit, TestContainers, Lombok, and Mockito together as it
wasn't possible to only update TestContainers alone since it also
depends on JUnit, see PR JanusGraph#2972.
The same applies to Mockito.

These changes were necessary to update Mockito to v4:

Import of `org.mockito.Matchers` needed to be changed to
`org.mockito.ArgumentMatchers`. `Matchers` was already only an alias
for `ArgumentMatchers` before as described in the release notes:
https://github.com/mockito/mockito/releases/tag/v4.0.0

`any()` is the replacement for `anyObject()`:
mockito/mockito#1931

Signed-off-by: Florian Hockmann <fh@florian-hockmann.de>
FlorianHockmann added a commit to FlorianHockmann/janusgraph that referenced this pull request Jun 29, 2022
This updates JUnit, TestContainers, Lombok, and Mockito together as it
wasn't possible to only update TestContainers alone since it also
depends on JUnit, see PR JanusGraph#2972.
The same applies to Mockito.

These changes were necessary to update Mockito to v4:

Import of `org.mockito.Matchers` needed to be changed to
`org.mockito.ArgumentMatchers`. `Matchers` was already only an alias
for `ArgumentMatchers` before as described in the release notes:
https://github.com/mockito/mockito/releases/tag/v4.0.0

`any()` is the replacement for `anyObject()`:
mockito/mockito#1931

Calling `property()` on a mocked `StandardVertex` resulted in a
`NullPointer` exception, but we can also simply use a `DetachedProperty`
as all accesses to that property on the vertex are also already mocked.

Signed-off-by: Florian Hockmann <fh@florian-hockmann.de>
FlorianHockmann added a commit that referenced this pull request Jun 30, 2022
This updates JUnit, TestContainers, Lombok, and Mockito together as it
wasn't possible to only update TestContainers alone since it also
depends on JUnit, see PR #2972.
The same applies to Mockito.

These changes were necessary to update Mockito to v4:

Import of `org.mockito.Matchers` needed to be changed to
`org.mockito.ArgumentMatchers`. `Matchers` was already only an alias
for `ArgumentMatchers` before as described in the release notes:
https://github.com/mockito/mockito/releases/tag/v4.0.0

`any()` is the replacement for `anyObject()`:
mockito/mockito#1931

Calling `property()` on a mocked `StandardVertex` resulted in a
`NullPointer` exception, but we can also simply use a `DetachedProperty`
as all accesses to that property on the vertex are also already mocked.

Signed-off-by: Florian Hockmann <fh@florian-hockmann.de>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: external Externally-managed CLA dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants