chore(backend): update exposed 0.56 -> 1.1.1#1127
Open
fengelniederhammer wants to merge 1 commit intomainfrom
Open
chore(backend): update exposed 0.56 -> 1.1.1#1127fengelniederhammer wants to merge 1 commit intomainfrom
fengelniederhammer wants to merge 1 commit intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the backend’s JetBrains Exposed dependency from 0.56.0 to 1.1.1 and adapts the codebase to Exposed’s new org.jetbrains.exposed.v1.* package layout.
Changes:
- Bump Exposed dependencies to
1.1.1(and addexposed-jdbc). - Update DAO/table and DSL imports to the new
org.jetbrains.exposed.v1.*namespaces. - Update Spring Boot Exposed autoconfiguration and JDBC
Databaseimports to the new package locations.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/subscription/SubscriptionTable.kt | Migrates DAO/table imports (UUID entities/tables) to Exposed v1 packages. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/subscription/SubscriptionModel.kt | Updates DSL operator import (eq) to Exposed v1 core. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/subscription/JacksonSerializableJsonb.kt | Updates Table and jsonb imports to Exposed v1 core/json packages. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/collection/VariantTable.kt | Migrates DAO/table and ReferenceOption imports to Exposed v1 packages. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/collection/CollectionTable.kt | Migrates DAO/table imports to Exposed v1 packages. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/model/collection/CollectionModel.kt | Updates Exposed DSL + deleteWhere imports to Exposed v1 core/jdbc packages. |
| backend/src/main/kotlin/org/genspectrum/dashboardsbackend/config/BackendSpringConfig.kt | Updates Exposed Spring Boot autoconfiguration and JDBC Database imports to Exposed v1 packages. |
| backend/build.gradle.kts | Bumps Exposed artifacts to 1.1.1 and adds exposed-jdbc. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
part of #1118
Summary
https://www.jetbrains.com/help/exposed/breaking-changes.html
I threw Claude at it, seems to have worked.
Screenshot
PR Checklist
- [ ] All necessary documentation has been adapted.