Skip to content

Update exposed to v0.61.0#38

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/exposed
Open

Update exposed to v0.61.0#38
renovate[bot] wants to merge 1 commit intomainfrom
renovate/exposed

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 28, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
org.jetbrains.exposed:exposed-kotlin-datetime 0.41.10.61.0 age confidence
org.jetbrains.exposed:exposed-jdbc 0.41.10.61.0 age confidence
org.jetbrains.exposed:exposed-dao 0.41.10.61.0 age confidence
org.jetbrains.exposed:exposed-core 0.41.10.61.0 age confidence

Release Notes

JetBrains/Exposed (org.jetbrains.exposed:exposed-kotlin-datetime)

v0.61.0

Compare Source

What's Changed

Infrastructure:

  • Spring Framework 6.2.5
  • junit-bom 5.12.1
  • Spring Boot 3.4.4
  • moneta 1.4.5
  • Joda Time 2.14.0
  • Kotlinx Serialization 1.8.1
  • logcaptor 2.10.2

Features:

  • feat: EXPOSED-733 Detect column type change for migrations in H2 by @​joc-a in #​2419

Bug fixes:

  • fix: EXPOSED-739 support actively cached null values in entity-local cache by @​bystam in #​2424
  • fix: EXPOSED-761 Forward ColumnWithTransform.readObject to delegate by @​Maxr1998 in #​2455

Docs:

v0.60.0

Compare Source

Infrastructure:

  • Joda Time 2.13.1
  • SQLite driver 3.49.1.0
  • Kotlinx Datetime JVM 0.6.2
  • Spring Framework 6.2.3
  • Spring Boot 3.4.3
  • detekt 1.23.8
  • junit-bom 5.12.0

Breaking changes:

  • chore!: EXPOSED-727 Change timestamp column type for H2 from "DATETIME(9)" to "TIMESTAMP(9)" by @​joc-a in #​2401
  • chore!: EXPOSED-741 Fix inconsistent CHECK constraint names for UShort and UInt columns by @​joc-a in #​2426
  • feat!: EXPOSED-740 Add support for modes (SKIP LOCKED or NOWAIT) with ForUpdate and ForShare Option for MySQL by @​mfazalul in #​2421

Features:

  • feat: EXPOSED-729 [Oracle] Allow setting limit with DELETE by @​bog-walk in #​2403
  • feat: EXPOSED-742 Allow customizing the CHECK constraint name of long() column by @​joc-a in #​2428

Bug fixes:

  • fix: EXPOSED-723 Reading databaseGenerated value from entity fails and does not trigger flush cache by @​obabichevjb in #​2391
  • fix: EXPOSED-719 H2 upsert operation converts arrays to string by @​obabichevjb in #​2395
  • fix: EXPOSED-737 Timestamp column broken for MySQL 8.0 by @​joc-a in #​2410
  • fix: EXPOSED-736 Unnecessary ALTER statement generated for binary column in PostgreSQL by @​joc-a in #​2408
  • fix: EXPOSED-593 Rollback ExposedSQLException when use SpringTransactionManager by @​FullOfOrange in #​2398

Docs:

Refactors:

  • refactor: EXPOSED-728 [SQLite] Remove ENABLE_UPDATE_DELETE_LIMIT metadata check from core function provider by @​bog-walk in #​2402

v0.59.0

Compare Source

Infrastructure:

  • Spring Framework 6.2.2
  • PostgreSQL driver 42.7.5
  • SQLite driver 3.48.0.0
  • Spring Boot 3.4.2

Breaking changes:

  • fix!: EXPOSED-691 [PostgreSQL] Restrict dropping unmapped sequences to related tables only by @​bog-walk in #​2357
  • chore!: Change H2 Oracle longType and longAutoincType from NUMBER(19) to BIGINT and add CHECK constraint in Oracle by @​joc-a in #​2273
  • chore!: EXPOSED-693 Change timestamp column type for MariaDB from "DATETIME" to "TIMESTAMP" by @​joc-a in #​2389
  • More details at Breaking Changes

Deprecations:

Features:

  • feat: Add support for creating sequence in MariaDB by @​devgor88 in #​2324
  • feat: EXPOSED-697 Add lessSubQuery, lessEqSubQuery, greaterSubQuery, and greaterEqSubQuery operators by @​joc-a in #​2373

Bug fixes:

  • EXPOSED-689 warmUpLinkedReferences() should not return all the values from cache by @​obabichevjb in #​2355
  • fix: EXPOSED-695 DDL for unnamed check constraints fails when table has schema name by @​bog-walk in #​2368
  • fix: EXPOSED-680 Less & greater infix ops cannot compile with 2 EntityID expressions by @​bog-walk in #​2367
  • fix: EXPOSED-696 [PostgreSQL] Drop of auto-increment sequence fails after column modified without dropping default by @​bog-walk in #​2369
  • fix: EXPOSED-669 transform() broken for entities instantiated via wrapRow through an alias by @​obabichevjb in #​2370
  • fix: EXPOSED-714 [exposed-spring-boot-starter] Fix NPE from DatabaseInitializer when non-object Table is defined by @​PeraSite in #​2382
  • fix: EXPOSED-694 Entities insertion could fail if batches have different column sets by @​obabichevjb in #​2365
  • fix: EXPOSED-706 Handle MariaDB sequence max value for versions earlier than 11.5 by @​joc-a in #​2375
  • fix: EXPOSED-707 Handle MariaDB fractional seconds support since version 5.3 by @​joc-a in #​2378
  • fix: EXPOSED-718 Fix timestamp column not storing values in UTC time zone by @​joc-a in #​2386
  • fix: EXPOSED-704 ClassCastException when referencing an eager-loaded backReferencedOn with keepLoadedReferencesOutOfTransaction = true by @​bystam in #​2374
  • fix: EXPOSED-701 [Oracle] Insert into table using only database default values fails by @​bog-walk in #​2371

Docs:

  • docs: EXPOSED-668 Update the Modules topic and extract code examples to snippets by @​vnikolova in #​2361
  • docs: EXPOSED-699 Fix API Docs generation by @​e5l in #​2376
  • docs: EXPOSED-672 Update the DAO's Relationships topic and add a new example project by @​vnikolova in #​2377
  • docs: EXPOSED-715 Fix broken custom function examples & move to example project by @​bog-walk in #​2383
  • docs: EXPOSED-684 Add documentation for exec() and move transaction docs to new element by @​bog-walk in #​2385
  • docs: EXPOSED-705 Clarify optionalBackReferencedOn() usage in KDocs by @​bog-walk in #​2387

Refactors:

  • refactor: EXPOSED-708 Remove JDBC DatabaseMetaData from exposed-core module by @​bog-walk in #​2379
  • refactor: EXPOSED-709 Remove plain SQL execution from core DatabaseDialect by @​bog-walk in #​2381
  • refactor: EXPOSED-722 Refactor MariaDB code to reduce checks in MySQL code and make it neater by @​joc-a in #​2388
  • refactor: EXPOSED-710 Move plain SQL for retrieving foreign keys from MysqlDialect by @​bog-walk in #​2380

v0.58.0

Compare Source

Breaking changes:

  • fix: EXPOSED-662 SchemaUtils.listTables() returns empty list & closes db connection by @​joc-a in #​2331
    • SchemaUtils.listTables() returns only the tables from the current schema. The behaviour was returned to the 0.56.0 version.
    • To get tables from all the schemas the method SchemaUtils.listTablesInAllSchemas() could be used.

Features:

  • feat: [MariaDB] Support RETURNING clause by @​devgor88 in #​2330
  • feat: EXPOSED-654 Allow customizing the check constraint names of columns with check constraints by @​joc-a in #​2340

Infrastructure:

  • springFramework 6.2.1
  • log4j2 2.24.3
  • org.junit:junit-bom 5.11.4
  • org.jetbrains.dokka 2.0.0
  • springBoot 3.4.1
  • kotlinCoroutines 1.10.0
  • kotlinCoroutines 1.10.1
  • org.xerial:sqlite-jdbc from 3.47.2.0
  • org.jetbrains.kotlinx.binary-compatibility-validator 0.17.0
  • org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.0

Docs:

v0.57.0

Compare Source

Infrastructure:

  • io.github.hakky54:logcaptor 2.10.0
  • Spring Boot 3.4.0
  • Spring Framework 6.2.0
  • log4j2 2.24.2
  • SQLite driver 3.47.1.0
  • Foojay Toolchains Plugin 0.9.0

Breaking changes:

Features:

Bug fixes:

  • fix: EXPOSED-623 Offset not applied in COUNT query by @​obabichevjb in #​2288
  • fix: EXPOSED-621 IllegalStateException on accessing autoincrement column after insert using Entity by @​joc-a in #​2291
  • fix: EXPOSED-583 alias from inner query missing from outer select by @​obabichevjb in #​2281
  • fix: EXPOSED-629 aliased array throws java.lang.ClassCastException: o… by @​obabichevjb in #​2296
  • fix: EXPOSED-625 SchemaUtils.listTables() retrieves tables for the default schema only by @​joc-a in #​2301
  • fix: EXPOSED-641 Byte, Short, Int, Long, UInt, ULong falsely generate database migration statements when they have a default (PostgreSQL and SQL Server) by @​joc-a in #​2307
  • fix: Make using Java's ServiceLoader optional on Database.connect() by @​makeevrserg in #​2293
  • fix: EXPOSED-646 count() voids distinctOn call on query by @​obabichevjb in #​2311
  • fix: EXPOSED-651 Try to close connection in ThreadLocalTransactionManager#connectionLazy if setup fails by @​m-burst in #​2320

Docs:

v0.56.0

Compare Source

Infrastructure:

  • junit-bom 5.11.3
  • SQLite driver 3.47.0.0
  • log4j2 2.24.1
  • Oracle driver 19.24.0.0
  • Spring Framework 6.1.14
  • Spring Boot 3.3.5

Breaking changes:

  • fix!: EXPOSED-569 groupConcat uses wrong SQLite syntax & ignores DISTINCT in Oracle & SQL Server by @​bog-walk in #​2257
  • chore!: Change Oracle and H2 Oracle uintegerType and uintegerAutoincType from NUMBER(13) to NUMBER(10) by @​joc-a in #​2268
  • chore!: Change Oracle and H2 Oracle ushortType from NUMBER(6) to NUMBER(5) by @​joc-a in #​2268
  • chore!: Change Oracle and H2 Oracle ubyteType from NUMBER(4) to NUMBER(3) by @​joc-a in #​2268
  • chore!: Change Oracle and H2 Oracle integerType and integerAutoincType from NUMBER(12) to NUMBER(10) and INTEGER respectively and add CHECK constraint in SQLite by @​joc-a in #​2270
  • feat!: EXPOSED-359 Add support for multidimensional arrays by @​obabichevjb in #​2250
  • feat!: EXPOSED-577 Allow Entity and EntityID parameters to not be Comparable by @​bog-walk in #​2277
  • More details at Breaking changes

Features:

Bug fixes:

  • fix: EXPOSED-565 Subquery alias with id fails to use correct alias with eq by @​bog-walk in #​2258
  • fix: EXPOSED-278 Invalid Oracle statement when adding a new column that is used in a primary key by @​joc-a in #​2259
  • fix: EXPOSED-576 DAO Entity.new() fails if there is column with default value and transformation by @​obabichevjb in #​2263
  • fix: EXPOSED-580 MigrationsUtils.statementsRequiredForDatabaseMigration throws an error when a table is passed that does not already exist in the database by @​joc-a in #​2271
  • fix: EXPOSED-588 Foreign key error when table has dot in its name by @​joc-a in #​2276
  • fix: EXPOSED-602 Column name that includes table name is aliased with upserts by @​bog-walk in #​2287

Docs:

v0.55.0

Compare Source

Infrastructure:

  • Spring Framework 6.1.13
  • Spring Boot 3.3.4
  • log4j2 2.24.0
  • detekt 1.23.7
  • joda-time:joda-time 2.13.0
  • kotlinCoroutines 1.9.0

Breaking changes:

Deprecations:

Features:

  • feat: EXPOSED-498 Handle auto-increment status change on a column by @​joc-a in #​2216
  • feat: EXPOSED-552 Include DROP statements for unmapped columns for migration by @​joc-a in #​2249

Bug fixes:

  • fix: EXPOSED-513 DROP SEQUENCE fails when there is a dot in the sequence name by @​joc-a in #​2220
  • fix: EXPOSED-496 reference() idColumn equality check with referree's id is insufficient by @​bog-walk in #​2222
  • fix: EXPOSED-528 Escape parameter placeholder '?' by double question mark '??' by @​JajaComp in #​2227
  • fix: EXPOSED-509 Upsert with escaped multiline string fails in prepared statement by @​bog-walk in #​2224
  • fix: EXPOSED-495 Unable to create new Entity when server-side default valu… by @​obabichevjb in #​2240
  • fix: EXPOSED-547 idParam() registers composite id value with a single placeholder by @​bog-walk in #​2242
  • fix: EXPOSED-527 BUG: mergeFrom(...) using a query with const-condition do… by @​obabichevjb in #​2236
  • fix: EXPOSED-551 [SQL Server] Update from join with limit throws syntax exception by @​bog-walk in #​2244
  • fix: EXPOSED-558 Entity cache for upsertReturning statements results in stale return values by @​rasharab in #​2248
  • fix: EXPOSED-373 Close ResultSet before closing Statement to suppress Agroal leak warning by @​ivan-gomes in #​2247
  • fix: EXPOSED-562 Any caught exception from inner transaction triggers full rollback by @​bog-walk in #​2251

Docs:

  • docs: EXPOSED-515 How to identify composite key columns that use reference() by @​bog-walk in #​2225

v0.54.0

Compare Source

Infrastructure:

  • Kotlin 2.0.0
  • Kotlinx Serialization Json 1.7.1
  • Spring Framework 6.1.12
  • junit-bom 5.11.0
  • SQLite driver 3.46.1.0
  • Kotlinx Datetime JVM 0.6.1
  • Spring Boot 3.3.3
  • PostgreSQL driver 42.7.4

Breaking changes:

  • feat!: EXPOSED-476 Update Kotlin to 2.0.0 by @​bog-walk in #​2188
  • refactor!: Move statementsRequiredForDatabaseMigration function from SchemaUtils to MigrationUtils by @​joc-a in #​2195
  • feat!: EXPOSED-436 Allow using insert values on update with upsert() by @​bog-walk in #​2172
  • fix!: EXPOSED-439 Outer transaction commits rows from failed inner transaction by @​bog-walk in #​2186

Deprecations:

Features:

Bug fixes:

  • fix: EXPOSED-464 CurrentTimestampWithTimeZone expression does not work as a default by @​joc-a in #​2180
  • fix: EXPOSED-474 Unexpected value of type when using a ColumnTransfor… by @​obabichevjb in #​2191
  • fix: EXPOSED-472 Alias IdTable fails with isNull and eq ops by @​bog-walk in #​2189
  • fix: EXPOSED-467 Decimal type precision and scale not checked by SchemaUtils by @​bog-walk in #​2192
  • EXPOSED-203 Lightweight DAO insert with encryptedVarchar attemtps to … by @​obabichevjb in #​2194
  • fix: EXPOSED-481 Bug with batch-flushing of CompositeID entities by @​bystam in #​2196
  • fix: EXPOSED-492 Eq/Neq op with partial CompositeID unwrapped value fails by @​bog-walk in #​2205
  • fix: EXPOSED-485 ClassCastException when eager loading referrersOn with uuid().references() by @​bog-walk in #​2198
  • fix: EXPOSED-493 Update with join query throws if WHERE clause present by @​bog-walk in #​2207
  • fix: EXPOSED-501 Column.transform() ignores custom setParameter() logic by @​bog-walk in #​2214

Docs:

v0.53.0

Compare Source

Infrastructure:

  • SQLite driver 3.46.0.1
  • Spring Framework 6.1.11
  • Spring Boot 3.3.2
  • junit-bom 5.10.3

Breaking changes:

Features:

Bug fixes:

  • fix: EXPOSED-424 ClassCastException exception when using fetchBatchedResults with alias by @​joc-a in #​2140
  • fix: EXPOSED-407 compositeMoney() nullability definition issues by @​bog-walk in #​2137
  • fix: EXPOSED-415 SchemaUtils incorrectly generates ALTER statements for existing nullable columns by @​obabichevjb in #​2136
  • fix: EXPOSED-363 LocalTime and literal(LocalTime) are not the same by @​joc-a in #​2152
  • fix: EXPOSED-432 CurrentDate default is generated as null in MariaDB by @​joc-a in #​2149
  • fix: Allow column reference in default expressions for MySQL and MariaDB by @​joc-a in #​2159
  • fix: EXPOSED-430 Insert and BatchInsert do not return default values by @​obabichevjb in #​2158
  • fix: EXPOSED-452 Flaky H2_Oracle test testTimestampWithTimeZoneDefaults by @​joc-a in #​2169
  • EXPOSED-457 The column default value always compares unequal by @​obabichevjb in #​2170
  • EXPOSED-409 Custom primary key. Access to the primary key fails with ClassCastException by @​obabichevjb in #​2151
  • fix: EXPOSED-447 Eager loading does not work with composite PK entity by @​bog-walk in #​2177

Docs:

v0.52.0

Compare Source

Breaking changes:

Features:

Bug fixes:

Infrastructure:

  • Spring Boot 3.3.1
  • io.github.hakky54:logcaptor 2.9.3
  • Spring Framework 6.1.10
  • org.junit:junit-bom 5.10.2
  • chore: Fix TC Docker version is obsolete by @​bog-walk in #​2111
  • test: EXPOSED-249 Add MySQL8 to tests for AllAnyFromBaseOp feature by @​bog-walk in #​2123
  • chore: Add migration module and move generateMigrationScript function to it by @​joc-a in #​2128
  • Add workflow to build documentation website by @​e5l in #​2134

v0.51.1

Compare Source

Bug fixes:

  • fix: EXPOSED-389 Coalesce operator returning nullable value by @​joc-a in #​2107

v0.51.0

Compare Source

Infrastructure:

  • Spring Boot 3.3.0
  • Kotlin Coroutines 1.8.1
  • Spring Framework 6.1.8
  • SQLite driver 3.46.0.0
  • Kotlinx Datetime JVM 0.6.0

Breaking changes:

  • build!: EXPOSED-315 Use the slimmer spring-boot-starter-jdbc instead of spring-boot-starter-data-jdbc by @​bystam
    in #​2055
  • fix!: EXPOSED-360 Storing ULong.MAX_VALUE in ulong column not working by @​joc-a in #​2068
  • More details at Breaking changes

Features:

  • feat: Add support for variable-length binary columns in H2 by @​rnett in #​2100

Bug fixes:

Docs:

v0.50.1

Compare Source

Bug fixes:

  • fix: EXPOSED-366 inList with EntityID column causes type mismatch error by @​bog-walk in #​2070
  • fix: EXPOSED-371 Fix incorrect table reference passed to EntityID instance when using value-based utility functions by @​dzikoysk in #​2074

Docs:

v0.50.0

Compare Source

Infrastructure:

  • Spring Framework 6.1.6

Breaking changes:

Deprecations:

Features:

Bug fixes:

Docs:

Tests:

v0.49.0

Compare Source

Infrastructure:

  • log4j2 2.23.1
  • SQLite driver 3.45.2.0
  • Spring Framework 6.1.5
  • PostgreSQL driver 42.7.3
  • Detekt 1.23.6

Breaking changes:

Features:

  • feat: EXPOSED-238 Support EXPLAIN statements by @​bog-walk in #​2022
  • feat: Include DROP statements for unmapped indices in list of statements returned by statementsRequiredForDatabaseMigration function by @​joc-a
    in #​2023
  • feat: EXPOSED-310 Add support for ULongIdTable and ULongEntity by [@​joc-a](

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update exposed to v0.42.0 Update exposed to v0.42.1 Aug 21, 2023
@renovate renovate bot force-pushed the renovate/exposed branch from 944f0a4 to ffc83f0 Compare August 21, 2023 11:45
@renovate renovate bot changed the title Update exposed to v0.42.1 Update exposed Aug 28, 2023
@renovate renovate bot force-pushed the renovate/exposed branch from ffc83f0 to 44811d6 Compare August 28, 2023 16:13
@renovate renovate bot changed the title Update exposed Update exposed to v0.43.0 Aug 29, 2023
@renovate renovate bot changed the title Update exposed to v0.43.0 Update exposed to v0.44.0 Sep 25, 2023
@renovate renovate bot force-pushed the renovate/exposed branch from 44811d6 to 5107870 Compare September 25, 2023 16:28
@renovate renovate bot force-pushed the renovate/exposed branch from 5107870 to 327a36b Compare October 26, 2023 16:19
@renovate renovate bot changed the title Update exposed to v0.44.0 Update exposed to v0.44.1 Oct 26, 2023
@renovate renovate bot changed the title Update exposed to v0.44.1 Update exposed to v0.45.0 Nov 28, 2023
@renovate renovate bot force-pushed the renovate/exposed branch from 327a36b to 8662950 Compare November 28, 2023 21:14
@renovate renovate bot force-pushed the renovate/exposed branch from 8662950 to 4060810 Compare January 5, 2024 15:51
@renovate renovate bot changed the title Update exposed to v0.45.0 Update exposed to v0.46.0 Jan 5, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 4060810 to e352b04 Compare January 31, 2024 02:17
@renovate renovate bot changed the title Update exposed to v0.46.0 Update exposed to v0.47.0 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from e352b04 to 444713a Compare February 27, 2024 18:56
@renovate renovate bot changed the title Update exposed to v0.47.0 Update exposed to v0.48.0 Feb 27, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 444713a to 7bd580c Compare March 27, 2024 17:04
@renovate renovate bot changed the title Update exposed to v0.48.0 Update exposed Mar 27, 2024
@renovate renovate bot changed the title Update exposed Update exposed to v0.49.0 Mar 27, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 7bd580c to 99dd1df Compare April 29, 2024 22:49
@renovate renovate bot changed the title Update exposed to v0.49.0 Update exposed to v0.50.0 Apr 29, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 99dd1df to 078df8f Compare May 9, 2024 00:30
@renovate renovate bot changed the title Update exposed to v0.50.0 Update exposed to v0.50.1 May 9, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 078df8f to 5d6cf9e Compare May 31, 2024 01:51
@renovate renovate bot changed the title Update exposed to v0.50.1 Update exposed to v0.51.0 May 31, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 5d6cf9e to b25a863 Compare June 4, 2024 00:59
@renovate renovate bot changed the title Update exposed to v0.51.0 Update exposed to v0.51.1 Jun 4, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from b25a863 to 6bf434b Compare June 26, 2024 13:26
@renovate renovate bot changed the title Update exposed to v0.51.1 Update exposed to v0.52.0 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 6bf434b to 0962310 Compare July 30, 2024 22:40
@renovate renovate bot changed the title Update exposed to v0.52.0 Update exposed to v0.53.0 Jul 30, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 0962310 to a00ad26 Compare August 30, 2024 14:15
@renovate renovate bot changed the title Update exposed to v0.53.0 Update exposed to v0.54.0 Aug 30, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from a00ad26 to 5d57a1a Compare September 25, 2024 19:43
@renovate renovate bot changed the title Update exposed to v0.54.0 Update exposed to v0.55.0 Sep 25, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 5d57a1a to ac266fc Compare October 30, 2024 17:45
@renovate renovate bot changed the title Update exposed to v0.55.0 Update exposed to v0.56.0 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from ac266fc to 1c18ffd Compare December 5, 2024 20:24
@renovate renovate bot changed the title Update exposed to v0.56.0 Update exposed Dec 5, 2024
@renovate renovate bot changed the title Update exposed Update exposed to v0.57.0 Dec 5, 2024
@renovate renovate bot force-pushed the renovate/exposed branch from 1c18ffd to 7006399 Compare January 13, 2025 14:37
@renovate renovate bot changed the title Update exposed to v0.57.0 Update exposed to v0.58.0 Jan 13, 2025
@renovate renovate bot force-pushed the renovate/exposed branch from 7006399 to 343ee2c Compare February 4, 2025 15:00
@renovate renovate bot changed the title Update exposed to v0.58.0 Update exposed to v0.59.0 Feb 4, 2025
@renovate renovate bot force-pushed the renovate/exposed branch from 343ee2c to 180785d Compare March 3, 2025 15:03
@renovate renovate bot changed the title Update exposed to v0.59.0 Update exposed to v0.60.0 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/exposed branch from 180785d to 21108f8 Compare April 9, 2025 14:34
@renovate renovate bot changed the title Update exposed to v0.60.0 Update exposed to v0.61.0 Apr 9, 2025
@coderabbitai
Copy link

coderabbitai bot commented Apr 9, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

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

Successfully merging this pull request may close these issues.

0 participants