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

Update Renovate Dependency Scan #62

Merged
merged 2 commits into from
Oct 30, 2021
Merged

Update Renovate Dependency Scan #62

merged 2 commits into from
Oct 30, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 4, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.testcontainers:rabbitmq (source) 1.16.0 -> 1.16.2 age adoption passing confidence
org.testcontainers:mysql (source) 1.16.0 -> 1.16.2 age adoption passing confidence
org.testcontainers:junit-jupiter (source) 1.16.0 -> 1.16.2 age adoption passing confidence
org.testcontainers:testcontainers (source) 1.16.0 -> 1.16.2 age adoption passing confidence
org.junit.jupiter:junit-jupiter-engine (source) 5.7.2 -> 5.8.1 age adoption passing confidence
org.projectlombok:lombok (source) 1.18.20 -> 1.18.22 age adoption passing confidence
org.pitest:pitest-maven (source) 1.7.0 -> 1.7.2 age adoption passing confidence
io.reactivex.rxjava3:rxjava 3.1.1 -> 3.1.2 age adoption passing confidence
org.springframework:spring-context 5.3.10 -> 5.3.12 age adoption passing confidence
org.immutables:value (source) 2.8.2 -> 2.8.9-ea-1 age adoption passing confidence
org.mockito:mockito-core 3.12.4 -> 4.0.0 age adoption passing confidence
org.springframework:spring-beans 5.3.10 -> 5.3.12 age adoption passing confidence
com.fasterxml.jackson.core:jackson-databind 2.12.4 -> 2.13.0 age adoption passing confidence
org.webjars:bootstrap (source) 5.1.1 -> 5.1.3 age adoption passing confidence
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.12.4 -> 2.13.0 age adoption passing confidence
com.fasterxml.jackson.core:jackson-databind 2.12.5 -> 2.13.0 age adoption passing confidence
org.openjfx:javafx-controls (source) 17.0.0.1 -> 17.0.1 age adoption passing confidence
org.springframework.boot:spring-boot-starter-parent (source) 2.5.5 -> 2.5.6 age adoption passing confidence

Release Notes

testcontainers/testcontainers-java

v1.16.2

Compare Source

What's Changed

1.16.2 fixes a race condition that was inadvertently added in 1.16.1. This bug can potentially cause unstable builds in some environments, manifesting as port wait timeouts at container startup.

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

v1.16.1

Compare Source

What's Changed

1.16.1 inadvertently introduced a race condition. This bug can potentially cause unstable builds in some environments, manifesting as port wait timeouts at container startup. We recommend upgrading to 1.16.2 or higher.

Testcontainers 1.16.1 has been released! 🎉

This release brings a lot of eagerly awaited new features and fixes, such as:

🔮 Better Oracle Database support

Thanks to the engagement of the community and @​gvenzl's new Docker images for Oracle Database Express Edition we were able to update our OracleContainer module to ensure its compatibility with a wide range of Oracle XE versions.

And at the same time, thanks to the new images, we were able to re-integrate the Oracle module into our CI. This means we can verify compatibility for using Testcontainers with Oracle Database going forward.

☁️ New Azure Cosmos DB module

With the new Azure Comos DB module we finally added Azure to our list of cloud service testing facilities.
It is based on Microsoft's Azure Cosmos DB-Emulator and provides you with a way to do your integration testing without the need for an actual Azure service.

public CosmosDBEmulatorContainer emulator = new CosmosDBEmulatorContainer(
        DockerImageName.parse("mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest")
);

Please check out the module docs to learn how to use it for your integration testing needs.

⛴ Host port access for containers

For further improving the developer experience of our users, we added a new API to make hosts ports accessible to containers:

container.withAccessToHost(true)

You still need to use exposeHostPorts, as per the docs, but this can now be done after the container has started, thereby allowing new usage patterns in your tests.

🌪 Faster Cassandra startup

By making clever use of the configuration settings available in Cassandra, CassandraContainer will now start up to 3 times faster.
It is now also configured to be less resource hungry out of the box.

✨ Better startup performance for all containers

We found a couple of ways to improve the container startup performance for our users, no matter the Testcontainers module you use.
This comes through some internal changes with regards to how Testcontainers checks for open ports during container startup and will shave up to a couple of seconds from your test suite.


We are grateful for the ongoing support of our community and users and thank each of our awesome contributors!

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...
projectlombok/lombok

v1.18.22

Compare Source

hcoles/pitest

v1.7.2

Compare Source

  • #​943 Change default mutators - replace negate conditional with remove conditional
  • #​946 Mutate stream returns to empty stream instead of null

v1.7.1

Compare Source

  • #​932 Improve switch mutation descriptions
  • #​934 Configure console output verbosity
  • #​940 Hide internal features
  • #​942 Fix for 3rd party mutation operators not added to client classpath
  • #​939 Improve caching of bytecode retrieval
ReactiveX/RxJava

v3.1.2

Compare Source

Maven
JavaDocs

Compatibility
  • Add full Java 9 module descriptor. (#​7241)
Bugfixes
  • Fix missing nullability on Single.subscribe(BiConsumer). (#​7331)
Documentation
  • Fix javadoc wording of {Publish|Behavior}Processor::offer(). (#​7328)
  • Indicate takeUntil stops on completion of other. (#​7341)
Other
  • Update assert messages format to be compliant with GradleRunner and JUnitRunner. (#​7345)
spring-projects/spring-framework

v5.3.12

Compare Source

🐞 Bug Fixes
  • Update warn log message for empty static resource locations #​27575
  • Default content type of response changed in v5.3.11 #​27573
  • Fix assertion failure messages in DefaultDataBuffer.checkIndex() #​27567
📔 Documentation
  • Incorrect Javadoc in [NamedParameter]JdbcOperations.queryForObject methods regarding exceptions #​27559
❤️ Contributors

We'd like to thank all the contributors who worked on this release!

v5.3.11

Compare Source

⭐ New Features
  • Enhance DefaultResponseErrorHandler to allow logging complete error response body #​27552
  • Include correct keyword in CookieAssertions failure messages #​27550
  • Use Arrays.hashCode() in ByteArrayResource.hashCode() #​27544
  • Allow default CacheAwareContextLoaderDelegate configuration via a system property #​27540
  • Invoke bean-derived (Auto)Closeable.close() method directly #​27504
  • Defensive reference to JNDI API for JDK 9+ (optional java.naming module) #​27483
  • DefaultMessageListenerContainer does not log an error/warning when consumer tasks have been rejected #​27451
  • Provide accessor on externallyManaged RootBeanDefinition attributes #​27449
  • Allow to avoid class validation in `Cgl

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 1dcb5e3 to 89a5c94 Compare October 12, 2021 18:19
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from a4c1501 to 5f94b12 Compare October 21, 2021 07:49
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 9b89902 to 76dc4a6 Compare October 22, 2021 16:48
@saurabhpro saurabhpro merged commit 64669a0 into master Oct 30, 2021
@saurabhpro saurabhpro deleted the renovate/all branch October 30, 2021 10:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants