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

Upgrade to Spring Boot 3.1.X #612

Closed
arolfes opened this issue Oct 27, 2023 · 0 comments
Closed

Upgrade to Spring Boot 3.1.X #612

arolfes opened this issue Oct 27, 2023 · 0 comments

Comments

@arolfes
Copy link
Contributor

arolfes commented Oct 27, 2023

Spring Boot 2.7.X and Spring Boot 3.0.X will end of life at the end of November. See the End of Life page: https://endoflife.date/spring-boot

Camunda upgraded the 7er line to Spring Boot 3.1.X already.

Taskana is close to being migrated to Spring Boot 3.1.x see Taskana/taskana#2421

So we can and have to upgrade TaskanaAdapter.

Please try to update all dependencies to the latest version.
for example
this

    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
      <version>2.3.1</version>
    </dependency>

will be

    <dependency>
      <groupId>jakarta.xml.bind</groupId>
      <artifactId>jakarta.xml.bind-api</artifactId>
      <version>4.0.1</version>
    </dependency>
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 8, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 8, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 8, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 17, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 17, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 17, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 18, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 18, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 20, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 20, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 20, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 21, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 22, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 22, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 22, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 22, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 22, 2023
* added simple Integration Tests for
  * `camunda-outbox-example-boot`
  * `taskana-adapter-camunda-spring-boot-example`

 * added missing properties
   * `camunda.bpm.generic-properties.properties.historyTimeToLive`
   * `resteasy.jaxrs.app.registration`
   * `resteasy.jaxrs.app.classes`
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 23, 2023
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 23, 2023
* increases test coverage
* fixes codesmells from Java17 upgrade
* adding more useful ArchUnitTests
* changes related to new ArchUnitTest
* removes junit-vintage dependency
arolfes added a commit to arolfes/TaskanaAdapter that referenced this issue Nov 24, 2023
* increases test coverage
* fixes codesmells from Java17 upgrade
* adding more useful ArchUnitTests
* changes related to new ArchUnitTest
* removes junit-vintage dependency
arolfes added a commit that referenced this issue Nov 27, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit that referenced this issue Nov 27, 2023
arolfes added a commit that referenced this issue Nov 27, 2023
* added simple Integration Tests for
  * `camunda-outbox-example-boot`
  * `taskana-adapter-camunda-spring-boot-example`

 * added missing properties
   * `camunda.bpm.generic-properties.properties.historyTimeToLive`
   * `resteasy.jaxrs.app.registration`
   * `resteasy.jaxrs.app.classes`
arolfes added a commit that referenced this issue Nov 27, 2023
* increases test coverage
* fixes codesmells from Java17 upgrade
* adding more useful ArchUnitTests
* changes related to new ArchUnitTest
* removes junit-vintage dependency
arolfes added a commit that referenced this issue Nov 27, 2023
the default JdkHttpClient does not support all HTTP Methods for example PATCH
switching to OkHttpClient supports all HTTP Methods and is more performant

2 new properties
* `okhttp.connection-timeout` - time in milliseconds to establish a connection
* `okhttp.read-timeout` - time to wait for response
arolfes added a commit that referenced this issue Nov 27, 2023
arolfes added a commit that referenced this issue Nov 27, 2023
* added simple Integration Tests for
  * `camunda-outbox-example-boot`
  * `taskana-adapter-camunda-spring-boot-example`

 * added missing properties
   * `camunda.bpm.generic-properties.properties.historyTimeToLive`
   * `resteasy.jaxrs.app.registration`
   * `resteasy.jaxrs.app.classes`
arolfes added a commit that referenced this issue Nov 27, 2023
* increases test coverage
* fixes codesmells from Java17 upgrade
* adding more useful ArchUnitTests
* changes related to new ArchUnitTest
* removes junit-vintage dependency
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

No branches or pull requests

1 participant