Skip to content

Commit 95e3f2f

Browse files
authored
4.17.0 release documentation updates (apache#1681)
1 parent 41991c8 commit 95e3f2f

File tree

98 files changed

+442
-433
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+442
-433
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*If you're reading this on github.com, please note that this is the readme for the development
66
version and that some features described here might not yet have been released. You can find the
77
documentation for latest version through [DataStax Docs] or via the release tags, e.g.
8-
[4.16.0](https://github.com/datastax/java-driver/tree/4.16.0).*
8+
[4.17.0](https://github.com/datastax/java-driver/tree/4.17.0).*
99

1010
A modern, feature-rich and highly tunable Java client library for [Apache Cassandra®] \(2.1+) and
1111
[DataStax Enterprise] \(4.7+), and [DataStax Astra], using exclusively Cassandra's binary protocol
@@ -86,7 +86,7 @@ See the [Cassandra error handling done right blog](https://www.datastax.com/blog
8686
* [Changelog]
8787
* [FAQ]
8888

89-
[API docs]: https://docs.datastax.com/en/drivers/java/4.14
89+
[API docs]: https://docs.datastax.com/en/drivers/java/4.17
9090
[JIRA]: https://datastax-oss.atlassian.net/browse/JAVA
9191
[Mailing list]: https://groups.google.com/a/lists.datastax.com/forum/#!forum/java-driver-user
9292
[@dsJavaDriver]: https://twitter.com/dsJavaDriver

bom/pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.datastax.oss</groupId>
2323
<artifactId>java-driver-parent</artifactId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-bom</artifactId>
2727
<packaging>pom</packaging>
@@ -31,42 +31,42 @@
3131
<dependency>
3232
<groupId>com.datastax.oss</groupId>
3333
<artifactId>java-driver-core</artifactId>
34-
<version>4.16.1-SNAPSHOT</version>
34+
<version>4.17.0-SNAPSHOT</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>com.datastax.oss</groupId>
3838
<artifactId>java-driver-core-shaded</artifactId>
39-
<version>4.16.1-SNAPSHOT</version>
39+
<version>4.17.0-SNAPSHOT</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>com.datastax.oss</groupId>
4343
<artifactId>java-driver-mapper-processor</artifactId>
44-
<version>4.16.1-SNAPSHOT</version>
44+
<version>4.17.0-SNAPSHOT</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.datastax.oss</groupId>
4848
<artifactId>java-driver-mapper-runtime</artifactId>
49-
<version>4.16.1-SNAPSHOT</version>
49+
<version>4.17.0-SNAPSHOT</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.datastax.oss</groupId>
5353
<artifactId>java-driver-query-builder</artifactId>
54-
<version>4.16.1-SNAPSHOT</version>
54+
<version>4.17.0-SNAPSHOT</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.datastax.oss</groupId>
5858
<artifactId>java-driver-test-infra</artifactId>
59-
<version>4.16.1-SNAPSHOT</version>
59+
<version>4.17.0-SNAPSHOT</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>com.datastax.oss</groupId>
6363
<artifactId>java-driver-metrics-micrometer</artifactId>
64-
<version>4.16.1-SNAPSHOT</version>
64+
<version>4.17.0-SNAPSHOT</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>com.datastax.oss</groupId>
6868
<artifactId>java-driver-metrics-microprofile</artifactId>
69-
<version>4.16.1-SNAPSHOT</version>
69+
<version>4.17.0-SNAPSHOT</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>com.datastax.oss</groupId>

changelog/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- Note: contrary to 3.x, insert new entries *first* in their section -->
44

5+
### 4.17.0
6+
7+
- [improvement] JAVA-3070: Make CqlVector and CqlDuration serializable
8+
- [improvement] JAVA-3085: Initialize c.d.o.d.i.core.util.Dependency at Graal native image build-time
9+
- [improvement] JAVA-3061: CqlVector API improvements, add support for accessing vectors directly as float arrays
10+
- [improvement] JAVA-3042: Enable automated testing for Java17
11+
- [improvement] JAVA-3050: Upgrade Netty to 4.1.94
12+
513
### 4.16.0
614

715
- [improvement] JAVA-3058: Clear prepared statement cache on UDT type change event

core-shaded/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.datastax.oss</groupId>
2323
<artifactId>java-driver-parent</artifactId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-core-shaded</artifactId>
2727
<name>DataStax Java driver for Apache Cassandra(R) - core with shaded deps</name>

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.datastax.oss</groupId>
2323
<artifactId>java-driver-parent</artifactId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-core</artifactId>
2727
<packaging>bundle</packaging>

distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.datastax.oss</groupId>
2323
<artifactId>java-driver-parent</artifactId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-distribution</artifactId>
2727
<!-- Should be pom but Javadoc generation requires a "classpath-capable" package -->

examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>java-driver-parent</artifactId>
2323
<groupId>com.datastax.oss</groupId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-examples</artifactId>
2727
<name>DataStax Java driver for Apache Cassandra(R) - examples.</name>

integration-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.datastax.oss</groupId>
2323
<artifactId>java-driver-parent</artifactId>
24-
<version>4.16.1-SNAPSHOT</version>
24+
<version>4.17.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>java-driver-integration-tests</artifactId>
2727
<packaging>jar</packaging>

manual/case_sensitivity/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ For "consuming" methods, string overloads are also provided for convenience, for
106106
* in other cases, the string is always assumed to be in CQL form, and converted on the fly with
107107
`CqlIdentifier.fromCql`.
108108

109-
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/CqlIdentifier.html
110-
[Row]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/cql/Row.html
111-
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/UdtValue.html
112-
[BoundStatement]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/cql/BoundStatement.html
113-
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/AccessibleByName.html
109+
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/CqlIdentifier.html
110+
[Row]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/cql/Row.html
111+
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/UdtValue.html
112+
[BoundStatement]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/cql/BoundStatement.html
113+
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/AccessibleByName.html
114114

115115
### Good practices
116116

manual/core/README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -315,19 +315,19 @@ for (ColumnDefinitions.Definition definition : row.getColumnDefinitions()) {
315315
}
316316
```
317317

318-
[CqlSession]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/CqlSession.html
319-
[CqlSession#builder()]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/CqlSession.html#builder--
320-
[ResultSet]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/cql/ResultSet.html
321-
[Row]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/cql/Row.html
322-
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/CqlIdentifier.html
323-
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/AccessibleByName.html
324-
[GenericType]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
325-
[CqlDuration]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/CqlDuration.html
326-
[CqlVector]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/CqlVector.html
327-
[TupleValue]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/TupleValue.html
328-
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/data/UdtValue.html
329-
[SessionBuilder.addContactPoint()]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoint-java.net.InetSocketAddress-
330-
[SessionBuilder.addContactPoints()]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoints-java.util.Collection-
331-
[SessionBuilder.withLocalDatacenter()]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withLocalDatacenter-java.lang.String-
318+
[CqlSession]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/CqlSession.html
319+
[CqlSession#builder()]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/CqlSession.html#builder--
320+
[ResultSet]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/cql/ResultSet.html
321+
[Row]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/cql/Row.html
322+
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/CqlIdentifier.html
323+
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/AccessibleByName.html
324+
[GenericType]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
325+
[CqlDuration]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/CqlDuration.html
326+
[CqlVector]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/CqlVector.html
327+
[TupleValue]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/TupleValue.html
328+
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/data/UdtValue.html
329+
[SessionBuilder.addContactPoint()]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoint-java.net.InetSocketAddress-
330+
[SessionBuilder.addContactPoints()]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoints-java.util.Collection-
331+
[SessionBuilder.withLocalDatacenter()]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withLocalDatacenter-java.lang.String-
332332

333333
[CASSANDRA-10145]: https://issues.apache.org/jira/browse/CASSANDRA-10145

manual/core/address_resolution/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Cassandra node:
124124
domain name of the target instance. Then it performs a forward DNS lookup of the domain name; the EC2 DNS does the
125125
private/public switch automatically based on location).
126126

127-
[AddressTranslator]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/addresstranslation/AddressTranslator.html
127+
[AddressTranslator]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/addresstranslation/AddressTranslator.html
128128

129129
[cassandra.yaml]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html
130130
[rpc_address]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__rpc_address

manual/core/async/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,4 @@ documentation for more details and an example.
207207

208208
[CompletionStage]: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletionStage.html
209209

210-
[AsyncResultSet]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/cql/AsyncResultSet.html
210+
[AsyncResultSet]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/cql/AsyncResultSet.html

manual/core/authentication/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ session.execute(statement);
227227

228228
[SASL]: https://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer
229229

230-
[AuthProvider]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/auth/AuthProvider.html
231-
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/context/DriverContext.html
232-
[PlainTextAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/auth/PlainTextAuthProviderBase.html
233-
[ProgrammaticPlainTextAuthProvider]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.html
234-
[DseGssApiAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/dse/driver/api/core/auth/DseGssApiAuthProviderBase.html
235-
[ProgrammaticDseGssApiAuthProvider]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/dse/driver/api/core/auth/ProgrammaticDseGssApiAuthProvider.html
236-
[ProxyAuthentication.executeAs]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/dse/driver/api/core/auth/ProxyAuthentication.html#executeAs-java.lang.String-StatementT-
237-
[SessionBuilder.withAuthCredentials]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthCredentials-java.lang.String-java.lang.String-
238-
[SessionBuilder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthProvider-com.datastax.oss.driver.api.core.auth.AuthProvider-
230+
[AuthProvider]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/auth/AuthProvider.html
231+
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/context/DriverContext.html
232+
[PlainTextAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/auth/PlainTextAuthProviderBase.html
233+
[ProgrammaticPlainTextAuthProvider]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.html
234+
[DseGssApiAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/dse/driver/api/core/auth/DseGssApiAuthProviderBase.html
235+
[ProgrammaticDseGssApiAuthProvider]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/dse/driver/api/core/auth/ProgrammaticDseGssApiAuthProvider.html
236+
[ProxyAuthentication.executeAs]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/dse/driver/api/core/auth/ProxyAuthentication.html#executeAs-java.lang.String-StatementT-
237+
[SessionBuilder.withAuthCredentials]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthCredentials-java.lang.String-java.lang.String-
238+
[SessionBuilder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthProvider-com.datastax.oss.driver.api.core.auth.AuthProvider-
239239
[reference.conf]: ../configuration/reference/

manual/core/bom/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To import the driver's BOM, add the following section in your application's own
1313
<dependency>
1414
<groupId>com.datastax.oss</groupId>
1515
<artifactId>java-driver-bom</artifactId>
16-
<version>4.16.0</version>
16+
<version>4.17.0</version>
1717
<type>pom</type>
1818
<scope>import</scope>
1919
</dependency>
@@ -65,7 +65,7 @@ good idea to extract a property to keep it in sync with the BOM:
6565
```xml
6666
<project>
6767
<properties>
68-
<java-driver.version>4.16.0</java-driver.version>
68+
<java-driver.version>4.17.0</java-driver.version>
6969
</properties>
7070
<dependencyManagement>
7171
<dependencies>

manual/core/configuration/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -520,16 +520,16 @@ config.getDefaultProfile().getString(MyCustomOption.ADMIN_EMAIL);
520520
config.getDefaultProfile().getInt(MyCustomOption.AWESOMENESS_FACTOR);
521521
```
522522

523-
[DriverConfig]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfig.html
524-
[DriverExecutionProfile]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverExecutionProfile.html
525-
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/context/DriverContext.html
526-
[DriverOption]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverOption.html
527-
[DefaultDriverOption]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DefaultDriverOption.html
528-
[DriverConfigLoader]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html
529-
[DriverConfigLoader.fromClasspath]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromClasspath-java.lang.String-
530-
[DriverConfigLoader.fromFile]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromFile-java.io.File-
531-
[DriverConfigLoader.fromUrl]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromUrl-java.net.URL-
532-
[DriverConfigLoader.programmaticBuilder]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#programmaticBuilder--
523+
[DriverConfig]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfig.html
524+
[DriverExecutionProfile]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverExecutionProfile.html
525+
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/context/DriverContext.html
526+
[DriverOption]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverOption.html
527+
[DefaultDriverOption]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DefaultDriverOption.html
528+
[DriverConfigLoader]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html
529+
[DriverConfigLoader.fromClasspath]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromClasspath-java.lang.String-
530+
[DriverConfigLoader.fromFile]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromFile-java.io.File-
531+
[DriverConfigLoader.fromUrl]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromUrl-java.net.URL-
532+
[DriverConfigLoader.programmaticBuilder]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#programmaticBuilder--
533533

534534
[Typesafe Config]: https://github.com/typesafehub/config
535535
[config standard behavior]: https://github.com/typesafehub/config#standard-behavior

0 commit comments

Comments
 (0)