Skip to content

firebird-testcontainers-java 2.0.0

Latest

Choose a tag to compare

@mrotteveel mrotteveel released this 22 Feb 10:50
· 3 commits to master since this release
v2.0.0
13763d9

What's changed

  • Updated to org.testcontainers:testcontainers-jdbc 2.0.3
    Testcontainers-java 2.0.x no longer supports JUnit 4 rules. You need to either:
    • switch to JUnit 5 and use the @Testcontainers and @Container annotations,
    • stay on firebird-testcontainers-java 1.6.1 and org.testcontainers:jdbc 1.21.4,
    • switch to using Testcontainers URLs instead of using @Rule or @ClassRule, or
    • write your own rule implementation to start and stop the container.
  • Removed self-referencing generic type parameter from FirebirdContainer.
    You need to replace occurrences of FirebirdContainer<?> and FirebirdContainer<> with FirebirdContainer.
  • Removed deprecated no-arg constructor from FirebirdContainer
  • Updated various test dependencies