Skip to content

Commit

Permalink
deps: update exposed to v0.58.0
Browse files Browse the repository at this point in the history
The `createMissingTablesAndColumns` function was deprecated, ignore this
for now as finding a different solution requires more work.
  • Loading branch information
renovate[bot] authored and mnonnenmacher committed Jan 15, 2025
1 parent 1b63f86 commit acaba28
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cyclonedx = "10.1.0"
diffUtils = "4.15"
discoClient = "21.0.1"
diskLruCache = "2.0.2"
exposed = "0.57.0"
exposed = "0.58.0"
flexmark = "0.64.8"
freemarker = "2.3.34"
greenmail = "2.1.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class PostgresProvenanceFileStorage(
withDataBaseLock {
if (!tableExists(table.tableName)) {
checkDatabaseEncoding()
@Suppress("DEPRECATION")

Check warning on line 69 in model/src/main/kotlin/utils/PostgresProvenanceFileStorage.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
createMissingTablesAndColumns(table)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class UploadResultToPostgresCommand(
withDataBaseLock {
if (!tableExists(tableName)) {
checkDatabaseEncoding()
@Suppress("DEPRECATION")

Check warning on line 128 in plugins/commands/upload-result-to-postgres/src/main/kotlin/UploadResultToPostgresCommand.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
SchemaUtils.createMissingTablesAndColumns(table)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class PostgresNestedProvenanceStorage(
withDataBaseLock {
if (!tableExists(tableName)) {
checkDatabaseEncoding()
@Suppress("DEPRECATION")

Check warning on line 60 in scanner/src/main/kotlin/provenance/PostgresNestedProvenanceStorage.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
SchemaUtils.createMissingTablesAndColumns(table)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class PostgresPackageProvenanceStorage(
withDataBaseLock {
if (!tableExists(tableName)) {
checkDatabaseEncoding()
@Suppress("DEPRECATION")

Check warning on line 62 in scanner/src/main/kotlin/provenance/PostgresPackageProvenanceStorage.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
SchemaUtils.createMissingTablesAndColumns(table)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class PackageBasedPostgresStorage(
if (!tableExists(TABLE_NAME)) {
checkDatabaseEncoding()

@Suppress("DEPRECATION")

Check warning on line 81 in scanner/src/main/kotlin/storages/PackageBasedPostgresStorage.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
createMissingTablesAndColumns(ScanResults)

createIdentifierAndScannerVersionIndex()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class ProvenanceBasedPostgresStorage(
withDataBaseLock {
if (!tableExists(tableName)) {
checkDatabaseEncoding()
@Suppress("DEPRECATION")

Check warning on line 74 in scanner/src/main/kotlin/storages/ProvenanceBasedPostgresStorage.kt

View workflow job for this annotation

GitHub Actions / qodana-scan

Redundant diagnostic suppression

Redundant suppression

Check warning

Code scanning / QDJVMC

Redundant diagnostic suppression Warning

Redundant suppression
SchemaUtils.createMissingTablesAndColumns(table)
}
}
Expand Down

0 comments on commit acaba28

Please sign in to comment.