Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## 1.10.0 [unreleased]

### Dependencies

1. [#124](https://github.com/influxdata/influxdb-client-java/pull/124): Update dependencies: akka: 2.6.6, commons-io: 2.7, spring: 5.2.7.RELEASE, retrofit: 2.9.0, okhttp3: 4.7.2
1. [#124](https://github.com/influxdata/influxdb-client-java/pull/124): Update plugins: maven-project-info-reports-plugin: 3.1.0, dokka-maven-plugin: 0.10.1, scoverage-maven-plugin: 1.4.1

## 1.9.0 [2020-06-19]

### Features
Expand Down
12 changes: 6 additions & 6 deletions client-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>0.9.17</version>
<version>0.10.1</version>
<executions>
<execution>
<id>dokka-pre-site</id>
Expand All @@ -123,16 +123,16 @@
<goal>dokka</goal>
<goal>javadoc</goal>
<goal>javadocJar</goal>
</goals> </execution>
</goals>
</execution>
</executions>
<configuration>
<skip>${maven.dokka.skip}</skip>
<sourceLinks>
<link>
<dir>${project.basedir}</dir>
<url>https://github.com/influxdata/influxdb-client-java/tree/master/client-kotlin
</url>
<urlSuffix>#L</urlSuffix>
<path>${project.basedir}</path>
<url>https://github.com/influxdata/influxdb-client-java/tree/master/client-kotlin</url>
<lineSuffix>#L</lineSuffix>
</link>
</sourceLinks>
</configuration>
Expand Down
6 changes: 3 additions & 3 deletions client-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
</scm>

<properties>
<scoverage-maven-plugin.version>1.3.0</scoverage-maven-plugin.version>
<akka.version>2.6.5</akka.version>
<scoverage-maven-plugin.version>1.4.1</scoverage-maven-plugin.version>
<akka.version>2.6.6</akka.version>
</properties>

<build>
Expand Down Expand Up @@ -230,7 +230,7 @@
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.13</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
<version>2.7</version>
</dependency>
</dependencies>

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<dependency.retrofit.version>2.8.1</dependency.retrofit.version>
<dependency.okhttp3.version>4.6.0</dependency.okhttp3.version>
<dependency.retrofit.version>2.9.0</dependency.retrofit.version>
<dependency.okhttp3.version>4.7.2</dependency.okhttp3.version>

<plugin.surefire.version>2.22.2</plugin.surefire.version>
<plugin.javadoc.version>3.2.0</plugin.javadoc.version>
Expand Down Expand Up @@ -377,7 +377,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<configuration>
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
</configuration>
Expand Down Expand Up @@ -547,7 +547,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20190722</version>
<version>20200518</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -589,7 +589,7 @@
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.3.6</version>
<version>1.3.7</version>
</dependency>

</dependencies>
Expand Down
1 change: 1 addition & 0 deletions scripts/maven-version-rules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<ignoreVersion type="regex">(?i).*CR(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*M(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*SNAP(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">.*[-_\.](alpha|Alpha|ALPHA|beta|Beta|BETA|rc|‌​RC)[-_\.]?.*</ignoreVersion>
</ignoreVersions>
<rules>
</rules>
Expand Down
2 changes: 1 addition & 1 deletion spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<properties>
<micrometer.version>1.2.0-bonitoo-SNAPSHOT</micrometer.version>
<spring-boot.version>2.2.7.RELEASE</spring-boot.version>
<spring.version>5.2.6.RELEASE</spring.version>
<spring.version>5.2.7.RELEASE</spring.version>
<mockito.version>2.25.1</mockito.version>
</properties>

Expand Down