Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.4</version>
<version>42.7.12</version>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SUGGESTION: The org.postgresql:postgresql dependency is declared with the same version in both the postgres profile (here) and the cockroachdb profile (line 188), so this bump had to update two lines. CockroachDB uses the PostgreSQL wire protocol, so these two versions must stay in sync. Centralizing the version into a property (e.g. add <postgresql.version>42.7.12</postgresql.version> to <properties> and reference <version>${postgresql.version}</version> in both profiles) would keep them aligned automatically and prevent version drift on future bumps.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -185,7 +185,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.4</version>
<version>42.7.12</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down