Skip to content

Commit aac20b5

Browse files
chore(deps): bump maven-site-plugin from 3.12.0 to 3.12.1 (#395)
* chore(deps): bump maven-site-plugin from 3.12.0 to 3.12.1 Bumps [maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.12.0 to 3.12.1. - [Release notes](https://github.com/apache/maven-site-plugin/releases) - [Commits](apache/maven-site-plugin@maven-site-plugin-3.12.0...maven-site-plugin-3.12.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-site-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * docs: update CHANGELOG.md * fix: nightly tests Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jakub Bednář <[email protected]>
1 parent 77572ef commit aac20b5

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Update dependencies:
2020

2121
#### Maven Plugin:
2222
- [#391](https://github.com/influxdata/influxdb-client-java/pull/391): `maven-bundle-plugin` to `5.1.8`
23+
- [#395](https://github.com/influxdata/influxdb-client-java/pull/395): `maven-site-plugin` to `3.12.1`
2324

2425
## 6.4.0 [2022-07-29]
2526

client/src/test/java/com/influxdb/client/ITInfluxQLQueryApi.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,17 @@
3232
import com.influxdb.client.service.DbrPsService;
3333
import com.influxdb.client.write.Point;
3434
import com.influxdb.query.InfluxQLQueryResult;
35+
3536
import org.assertj.core.api.Assertions;
3637
import org.assertj.core.api.ListAssert;
3738
import org.junit.jupiter.api.BeforeEach;
3839
import org.junit.jupiter.api.Test;
3940
import org.junit.platform.runner.JUnitPlatform;
4041
import org.junit.runner.RunWith;
4142

42-
import static org.assertj.core.api.InstanceOfAssertFactories.*;
43+
import static org.assertj.core.api.InstanceOfAssertFactories.BIG_DECIMAL;
44+
import static org.assertj.core.api.InstanceOfAssertFactories.INSTANT;
45+
import static org.assertj.core.api.InstanceOfAssertFactories.list;
4346

4447
@RunWith(JUnitPlatform.class)
4548
class ITInfluxQLQueryApi extends AbstractITClientTest {
@@ -76,10 +79,9 @@ void setUp() throws IOException {
7679
void testShowDatabases() {
7780
InfluxQLQueryResult result = influxQLQueryApi.query(new InfluxQLQuery("SHOW DATABASES", DATABASE_NAME));
7881
assertSingleSeriesRecords(result)
79-
.hasSize(1)
80-
.first()
81-
.extracting(record -> record.getValueByKey("name"))
82-
.isEqualTo(DATABASE_NAME);
82+
.map(record -> record.getValueByKey("name"))
83+
// internal buckets are also available by DBRP mapping
84+
.contains(DATABASE_NAME);
8385
}
8486

8587

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<plugin.javadoc.version>3.4.0</plugin.javadoc.version>
119119
<plugin.checkstyle.version>3.1.2</plugin.checkstyle.version>
120120
<plugin.jacoco.version>0.8.8</plugin.jacoco.version>
121-
<plugin.site.version>3.12.0</plugin.site.version>
121+
<plugin.site.version>3.12.1</plugin.site.version>
122122
<plugin.scala.version>4.7.1</plugin.scala.version>
123123

124124
<kotlin.version>1.7.10</kotlin.version>

0 commit comments

Comments
 (0)