This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch fd-17 in repository https://gitbox.apache.org/repos/asf/parquet-site.git
commit b2d99774514995f228475e276dafb113e98b0eb4 Author: Fokko Driesprong <[email protected]> AuthorDate: Tue Jan 13 10:32:44 2026 +0100 Add Parquet-Java 1.17.0 blogpost --- content/en/blog/parquet-java/1.17.0.md | 44 ++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/content/en/blog/parquet-java/1.17.0.md b/content/en/blog/parquet-java/1.17.0.md new file mode 100644 index 0000000..7a3238b --- /dev/null +++ b/content/en/blog/parquet-java/1.17.0.md @@ -0,0 +1,44 @@ +--- +title: "1.17.0" +date: 2026-01-13 +description: > +--- + +The [latest version of parquet-java is 1.17.0](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.17.0/apache-parquet-1.17.0.tar.gz). + +For the changes, please check out the [Release on Github](https://github.com/apache/parquet-java/releases/tag/apache-parquet-1.17.0). + +To [check the validity](https://www.apache.org/info/verification.html) of this release, use its: + +* [Release manager OpenPGP key](https://downloads.apache.org/iceberg/KEYS) +* [OpenPGP signature](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.17.0/apache-parquet-1.17.0.tar.gz.asc) +* [SHA-512](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.17.0/apache-parquet-1.17.0.tar.gz.sha512) + +The [latest version of parquet-java on the previous minor branch is 1.16.0](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.16.0/apache-parquet-1.16.0.tar.gz). + +To [check the validity](https://www.apache.org/info/verification.html) of this release, use its: + +* [Release manager OpenPGP key](https://downloads.apache.org/iceberg/KEYS) +* [OpenPGP signature](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.16.0/apache-parquet-1.16.0.tar.gz.asc) +* [SHA-512](https://dist.apache.org/repos/dist/release/parquet/apache-parquet-1.16.0/apache-parquet-1.16.0.tar.gz.sha512) + +### Downloading from the Maven central repository + +The Parquet team publishes its [releases to Maven Central](https://search.maven.org/search?q=g:org.apache.parquet). + +Add the following dependency section to your pom.xml: +``` + <dependencies> + ... + <dependency> + <groupId>org.apache.parquet</groupId> + <artifactId>parquet-avro</artifactId> + <version>1.17.0</version> <!-- or latest version --> + </dependency> + ... + </dependencies> +``` + +### Older Releases + +Older releases can be found in the Archives of the Apache Software Foundation: [https://archive.apache.org/dist/parquet/](https://archive.apache.org/dist/parquet/)
