8000 Combine several dependabot updates to a single PR by bpkroth · Pull Request #291 · cmu-db/benchbase · GitHub
[go: up one dir, main page]

Skip to content

Combine several dependabot updates to a single PR #291

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

Merged
merged 4 commits into from
Apr 4, 2023
Merged
Changes from 1 commit
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
Next Next commit
Combine several dependabot updates to a single PR
Closes #285
Closes #286
Closes #287
Closes #288
Closes #289
  • Loading branch information
bpkroth committed Apr 4, 2023
commit a01ca0f37b8b4cafedd269b4ec5341c78558bbf6
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.4.0</version>
<version>42.6.0</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -84,7 +84,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.29</version>
<version>8.0.30</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -110,7 +110,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-jdbc</artifactId>
<version>2.9.9</version>
<version>2.9.11</version>
</dependency>
</dependencies>
</profile>
Expand Down Expand Up @@ -149,7 +149,7 @@
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>11.2.0.jre17</version>
<version>11.2.3.jre17</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -159,19 +159,19 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.7</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>1.7.36</version>
<version>2.0.7</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -213,7 +213,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
<version>20230227</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -249,7 +249,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
Expand Down Expand Up @@ -308,7 +308,7 @@
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>3.0.0</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<tagNameFormat>v@{version}</tagNameFormat>
Expand Down
0