-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
chore(engine): drop handling JPA entities as variables #3468
chore(engine): drop handling JPA entities as variables #3468
Conversation
2e81f59
to
ddb7f7e
Compare
The build failed after a Jenkins restart. I retriggered a new one: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Core removals of JPA look good to me. Since the CI looks pretty good so far as well, I think you're on a really good track here.
❓ Would you mind rebasing the PR to make it more focused? I believe some of the commits in here are already on the main branch (e.g. JDK 17 readiness).
3cf0dbb
to
3df5446
Compare
Branch rebased against master. Commits left "unsquashed" for now, to have history reference of the progress. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Looks really good to me still after a second run-through.
❓ I added some understanding questions along the way.
❓ I couldn't find an explanation for moving some engine-spring
classes to an impl
package (but I might have also just missed it), would you mind either quickly explaining or pointing me to an existing explanation? 🙂
...ration/src/test/java/org/camunda/bpm/qa/upgrade/scenarios7190/variables/JpaEntitiesTest.java
Outdated
Show resolved
Hide resolved
2a5bba0
to
e9a5455
Compare
Initially, we planned to restructure the module and introduce an implementation package to divide the private API from public API. After reconsidering this aspect again, we will save the users' effort to migrate their code and drop this refactoring for now. (e9a5455) |
This will make it easier for existing users, of course. 👍 Thanks for following up 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, nicely done 👍
#3447