Skip to content

Releases: arquillian/arquillian-core

1.9.1.Final

23 Jul 06:09
Compare
Choose a tag to compare

What's Changed

  • Fix the integration test build issue and ensure the versions get updated by @jamezp in #594
  • [Issue_597] Explain a bit about the 'testable=false' attribute in @de… by @bstansberry in #598
  • CI: add JDK 21 (LTS) to testing matrix. by @rhusar in #599
  • Add support for ArquillianResource param injection on @deployment methods by @starksm64 in #603
  • Replace ThreadLocal with a hashtable to support reliable cleanup by @WolfgangHG in #588
  • build(deps): Bump org.assertj:assertj-core from 3.24.2 to 3.26.3 by @dependabot in #595
  • build(deps): Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.4.0 by @dependabot in #573
  • build(deps): Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 by @dependabot in #586

New Contributors

Full Changelog: 1.9.0.Final...1.9.1.Final

1.9.0.Final

09 Jul 04:58
Compare
Choose a tag to compare

What's Changed

  • [ARQ-2230] Integrate the checkstyle plugin by @petrberan in #540
  • ARQ-2236 arquillian-bom manages non-existent versions of artifacts fr… by @rhusar in #574
  • Revert "Force cleanup of ThreadLocal" by @jamezp in #579
  • [576] Add back the afterAll and beforeEach callbacks. The TestRu… by @jamezp in #577
  • ARQ-2231 The JUnit 5 container does not work with manual mode tests by @rhusar in #583
  • Disable MultiThreadedBuilder by default. by @rhusar in #582
  • build(deps): Bump version.junit5 from 5.10.2 to 5.10.3 by @dependabot in #571
  • Correct the javadoc references to @OperateOnDeployment by @starksm64 in #589
  • [580] Create some integration tests. Create profiles for WildFly to r… by @jamezp in #581
  • ARQ-2235 arquillian-bom should not include Maven artifacts not produced by this project by @rhusar in #575
  • build(deps): Bump version.junit5.platform from 1.10.1 to 1.10.3 by @dependabot in #570
  • build(deps-dev): Bump org.testng:testng from 7.5 to 7.5.1 in /integration-tests/testng-tests by @dependabot in #590

Full Changelog: 1.8.1.Final...1.9.0.Final

The #574 issue changes how one must import arquillian-core, arquillian-jakarta and shrinkwrap dependencies. Since they are independent now, the following type of imports are required:

      <dependencyManagement>
            <dependency>
                <groupId>org.junit</groupId>
                <artifactId>junit-bom</artifactId>
                <version>5.10.1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.shrinkwrap.resolver</groupId>
                <artifactId>shrinkwrap-resolver-bom</artifactId>
                <version>${version.shrinkwrap}</version>
                <scope>test</scope>
                <type>pom</type>
            </dependency>
            <dependency>
                <groupId>org.jboss.shrinkwrap.resolver</groupId>
                <artifactId>shrinkwrap-resolver-depchain</artifactId>
                <version>${version.shrinkwrap}</version>
                <type>pom</type>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.arquillian</groupId>
                <artifactId>arquillian-bom</artifactId>
                <version>${version.arquillian_core}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.arquillian.jakarta</groupId>
                <artifactId>arquillian-jakarta-bom</artifactId>
                <version>${version.arquillian_jakarta}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
    </dependencyManagement>

1.8.1.Final

29 Jun 01:58
Compare
Choose a tag to compare

What's Changed

  • Add 9 new exceptional tests by @JiyangZhang in #541
  • preserve first exception in writeObject by @benjamin-confino in #538
  • [ARQ-2232] Migrate CI to Github Actions by @petrberan in #545
  • Add support for specifying a custom mapper implementation for a DeployableContainer. by @starksm64 in #553
  • build(deps-dev): Bump org.slf4j:slf4j-simple from 2.0.1 to 2.0.12 by @dependabot in #537
  • Enable access to the ProtocolConfiguration info from the TestDeployment. by @starksm64 in #555
  • Add --add-opens to surefire for running tests on Java SE 17+ by @starksm64 in #565
  • ARQ-2231 The JUnit 5 container does not work with manual mode tests by @rhusar in #546
  • build(deps): Bump org.jboss:jboss-parent from 41 to 46 by @dependabot in #556
  • CI: add JDK 17 testing; run CI on all branches; cleanup ci.yml. by @rhusar in #566
  • build(deps): Bump version.junit5 from 5.10.1 to 5.10.2 by @dependabot in #536
  • build(deps): Bump org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom from 3.2.1 to 3.3.0 by @dependabot in #530
  • build(deps-dev): Bump org.slf4j:slf4j-simple from 2.0.12 to 2.0.13 by @dependabot in #560

New Contributors

Full Changelog: 1.8.0.Final...1.8.1.Final

1.8.0.Final

18 Nov 03:33
Compare
Choose a tag to compare

What's Changed

  • Avoid file leak in RemoteExtensionLoader by @WolfgangHG in #502
  • build(deps): Bump takari-smart-builder from 0.6.2 to 0.6.3 by @dependabot in #487
  • build(deps): Bump version.junit5.platform from 1.9.3 to 1.10.0 by @dependabot in #494
  • build(deps): Bump version.junit5 from 5.9.3 to 5.10.1 by @dependabot in #511
  • build(deps): Bump version.junit5.platform from 1.10.0 to 1.10.1 by @dependabot in #509
  • Fix usages of deprecated junit methods (org.junit.internal.Assumption… by @chengfang in #480
  • Fix for the Jetty bypass vulnerability fixed in version 9.4.51.v20230217 by @starksm64 in #506
  • chore: replace deprecated junit.framework.Assert with org.junit.Assert by @chengfang in #476
  • chore: replace deprecated org.jboss.arquillian.container.test.spi.TestDeployment constructor by @chengfang in #477
  • chore: replace deprecated org.jboss.arquillian.test.spi.TestResult constructors by @chengfang in #478
  • chore: replace usages of deprecated methods in org.jboss.shrinkwrap.descriptor.api.DescriptorImporter by @chengfang in #479
  • build(deps): Bump shrinkwrap-resolver-bom from 3.1.4 to 3.2.1 by @dependabot in #493
  • build(deps): Bump io.takari.maven:takari-smart-builder from 0.6.3 to 0.6.4 by @dependabot in #508
  • Part 1 of the jakarta package dependency refactoring, #516 by @starksm64 in #517
  • build(deps): Bump org.jboss:jboss-parent from 39 to 41 by @dependabot in #512

New Contributors

Full Changelog: 1.7.2.Final...1.8.0.Final

1.7.2.Final

09 Nov 05:59
Compare
Choose a tag to compare

What's Changed

  • Failure of parameterized test is not reported as a failure by @TomasHofman in #505

New Contributors

Full Changelog: 1.7.1.Final...1.7.2.Final

1.7.1.Final

15 Aug 19:53
Compare
Choose a tag to compare

What's Changed

  • build(deps-dev): Bump version.resteasy from 6.2.3.Final to 6.2.4.Final by @dependabot in #481
  • Issue #488: Artifact arquillian-bom-1.7.0.Final Throws Checksum Validation Error in Maven 3.6.3 #488

Full Changelog: 1.7.0.Final...1.7.1.Final

1.7.0.Final

03 May 05:44
Compare
Choose a tag to compare

What's Changed

  • feat: introduces jakarta servlet 6.0 protocol module by @bvfalcon in #448
  • build(deps): Bump version.junit5.platform from 1.9.2 to 1.9.3 by @dependabot in #473
  • build(deps): Bump version.junit5 from 5.9.2 to 5.9.3 by @dependabot in #472
  • build(deps-dev): Bump jetty-server from 11.0.10 to 11.0.14 in /protocols/rest-jakarta by @dependabot in #469
  • build(deps-dev): Bump jetty-server from 11.0.10 to 11.0.14 in /protocols/servlet-jakarta by @dependabot in #468
  • build(deps-dev): Bump version.resteasy from 6.2.2.Final to 6.2.3.Final by @dependabot in #461
  • Fixed slf4j NoClassDefFoundError for TestNG 7.5+ Used in Target Container by @arieki in #465
  • build(deps): Bump takari-smart-builder from 0.6.1 to 0.6.2 by @dependabot in #462
  • build(deps): Bump animal-sniffer-maven-plugin from 1.22 to 1.23 by @dependabot in #464
  • [ARQ-1321] Support for HTTPS in URLs injected with @ArquillianResource by @starksm64 in #474

New Contributors

Full Changelog: 1.7.0.Alpha14...1.7.0.Final

1.7.0.Alpha14

04 Feb 01:31
Compare
Choose a tag to compare

What's Changed

  • fix: propagates failures with TestNG 7.6.1+ by @lprimak in #440
  • build(deps): Bump version.junit5.platform from 1.9.0 to 1.9.1 by @dependabot in #431
  • build(deps): Bump version.junit5 from 5.9.0 to 5.9.1 by @dependabot in #432
  • build(deps-dev): Bump version.resteasy from 6.1.0.Final to 6.2.0.Final by @dependabot in #433
  • fix(build): uses repo id into as property by @lprimak in #441
  • build(deps): Bump mockito-core from 4.8.0 to 4.9.0 by @dependabot in #443
  • build(deps-dev): Bump version.resteasy from 6.2.0.Final to 6.2.1.Final by @dependabot in #442
  • build(deps-dev): Bump version.resteasy from 6.2.1.Final to 6.2.2.Final by @dependabot in #446
  • build(deps): Bump mockito-core from 4.9.0 to 4.10.0 by @dependabot in #447
  • build(deps): Bump version.junit5 from 5.9.1 to 5.9.2 by @dependabot in #453
  • build(deps): Bump version.junit5.platform from 1.9.1 to 1.9.2 by @dependabot in #452
  • build(deps): Bump assertj-core from 3.23.1 to 3.24.2 by @dependabot in #456

Full Changelog: 1.7.0.Alpha13...1.7.0.Alpha14

1.7.0.Alpha13

14 Oct 03:18
Compare
Choose a tag to compare

What's Changed

  • feat: enables HTTPContext to indicate if HTTPS should be used by @jamezp in #423
  • build(deps): Bump animal-sniffer-maven-plugin from 1.21 to 1.22 by @dependabot in #424
  • build(deps): Bump mockito-core from 4.6.1 to 4.8.0 by @dependabot in #426
  • build(deps-dev): Bump resteasy from 6.0.3.Final to 6.1.0.Final by @dependabot in #420
  • build(deps): Bump slf4j-simple from 1.7.36 to 2.0.1 by @dependabot in #428
  • fix(protocols): Fix rest-jakarta protocol to not conflict with other REST Applications in war file by @jhanders34 in #437

New Contributors

Full Changelog: 1.7.0.Alpha12...1.7.0.Alpha13

1.7.0.Alpha12

02 Aug 21:27
Compare
Choose a tag to compare

What's Changed

  • fix (release): Update bom to include new protocol-rest-jakarta artifact by @jhanders34 in #419

Full Changelog: 1.7.0.Alpha11...1.7.0.Alpha12