-
Notifications
You must be signed in to change notification settings - Fork 315
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
deps: update exposed to v0.58.0 #9731
Conversation
f24d696
to
6fb3d56
Compare
@mnonnenmacher I have no idea how to deal with the @Deprecated(
"Execution of this function might lead to unpredictable state in the database if a failure occurs at any point. " +
"To prevent this, please use `MigrationUtils.statementsRequiredForDatabaseMigration` with a third-party migration tool (e.g., Flyway).",
ReplaceWith("MigrationUtils.statementsRequiredForDatabaseMigration"),
DeprecationLevel.WARNING
)
fun createMissingTablesAndColumns(vararg tables: Table, inBatch: Boolean = false, withLogs: Boolean = true) { Can you help? |
Yes, but probably not today. |
The `createMissingTablesAndColumns` function was deprecated, ignore this for now as finding a different solution requires more work.
6fb3d56
to
acaba28
Compare
@sschuberth I decided to just ignore the deprecation for now, I could not find a trivial alternative and don't have time to investigate further. |
@@ -66,6 +66,7 @@ | |||
withDataBaseLock { | |||
if (!tableExists(table.tableName)) { | |||
checkDatabaseEncoding() | |||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
@@ -125,6 +125,7 @@ | |||
withDataBaseLock { | |||
if (!tableExists(tableName)) { | |||
checkDatabaseEncoding() | |||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
@@ -57,6 +57,7 @@ | |||
withDataBaseLock { | |||
if (!tableExists(tableName)) { | |||
checkDatabaseEncoding() | |||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
@@ -59,6 +59,7 @@ | |||
withDataBaseLock { | |||
if (!tableExists(tableName)) { | |||
checkDatabaseEncoding() | |||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
@@ -78,6 +78,7 @@ | |||
if (!tableExists(TABLE_NAME)) { | |||
checkDatabaseEncoding() | |||
|
|||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
@@ -71,6 +71,7 @@ | |||
withDataBaseLock { | |||
if (!tableExists(tableName)) { | |||
checkDatabaseEncoding() | |||
@Suppress("DEPRECATION") |
Check warning
Code scanning / QDJVMC
Redundant diagnostic suppression Warning
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9731 +/- ##
=========================================
Coverage 68.08% 68.08%
Complexity 1293 1293
=========================================
Files 249 249
Lines 8845 8845
Branches 923 923
=========================================
Hits 6022 6022
Misses 2434 2434
Partials 389 389
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
This PR contains the following updates:
0.57.0
->0.58.0
0.57.0
->0.58.0
0.57.0
->0.58.0
0.57.0
->0.58.0
0.57.0
->0.58.0
Release Notes
JetBrains/Exposed (org.jetbrains.exposed:exposed-json)
v0.58.0
Compare Source
What's Changed
Breaking changes:
SchemaUtils.listTables()
returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.SchemaUtils.listTablesInAllSchemas()
could be used.Features:
Infrastructure:
Docs:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.