Skip to content

Commit

Permalink
Merge pull request #416 from Wikidata/release0.10
Browse files Browse the repository at this point in the history
Release version 0.10.0
  • Loading branch information
Tpt authored Jun 12, 2019
2 parents 15b5bbb + 9671cde commit 336f77e
Show file tree
Hide file tree
Showing 13 changed files with 44 additions and 38 deletions.
14 changes: 14 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Wikidata Toolkit Release Notes
==============================

Version 0.10.0
--------------

Security fixes:
* Update Jackson to 2.9.9, fixing [vulnerabilities that might lead to remote code execution](https://www.cvedetails.com/vulnerability-list.php?vendor_id=15866&product_id=42991&version_id=238358&page=1&hasexp=0&opdos=0&opec=0&opov=0&opcsrf=0&opgpriv=0&opsqli=0&opxss=0&opdirt=0&opmemc=0&ophttprs=0&opbyp=0&opfileinc=0&opginf=0&cvssscoremin=0&cvssscoremax=0&year=0&cweid=0&order=1&trc=12&sha=1a71cae633886fb92e024fafb20c582c9e5b072d).

New features:
* RDF: Adds support of Quantity and MonolingualText to the SomeValueSnak and NoValueSnak converters.
* Wikibase API: Throw an exception when credentials have expired.
* Updates RDF4J to 2.5.2, Apache Commons Lang to 3.9 and Apache Commons Compress to 1.18.

Incompatible changes:
* Propagate IOException properly in the Wikibase API module.

Version 0.9.0
-------------

Expand Down
31 changes: 16 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
<packaging>pom</packaging>

<name>Wikidata Toolkit</name>
Expand Down Expand Up @@ -73,16 +73,16 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<apacheCommonsCompressVersion>1.16.1</apacheCommonsCompressVersion>
<apacheCommonsLangVersion>3.7</apacheCommonsLangVersion>
<apacheCommonsCompressVersion>1.18</apacheCommonsCompressVersion>
<apacheCommonsLangVersion>3.9</apacheCommonsLangVersion>
<apacheHttpVersion>4.5.5</apacheHttpVersion>
<commonsCliVersion>1.4</commonsCliVersion>
<ini4JVersion>0.5.4</ini4JVersion>
<jacksonVersion>2.9.9</jacksonVersion>
<junitVersion>4.12</junitVersion>
<mockitoVersion>1.10.19</mockitoVersion>
<rdf4jVersion>2.3.2</rdf4jVersion>
<slf4jVersion>1.7.25</slf4jVersion>
<rdf4jVersion>2.5.2</rdf4jVersion>
<slf4jVersion>1.7.26</slf4jVersion>
</properties>

<dependencies>
Expand Down Expand Up @@ -117,7 +117,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.6</version>
<version>1.20</version>
<configuration />
<executions>
<execution>
Expand Down Expand Up @@ -176,17 +176,17 @@
target JRE (default is 1.5) -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<!-- Create code coverage reports and submit them to coveralls.io. -->
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.1.0</version>
<version>4.3.0</version>
</plugin>
<plugin>
<!-- Plugin for actually computing code coverage. -->
Expand All @@ -206,16 +206,17 @@
<!-- Plugin for creating Javadocs; goal for preparing docs for upload to github: javadoc:aggregate -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.1.0</version>
<configuration>
<bottom><![CDATA[Copyright &#169; {inceptionYear}&#x2013;{currentYear} {organizationName}. Generated from source code published under the Apache License 2.0. For more information, see the <a href="https://www.mediawiki.org/wiki/Wikidata_Toolkit">Wikidata Toolkit homepage</a>]]></bottom>
<source>8</source>
</configuration>
</plugin>
<plugin>
<!-- Plugin for uploading Javadocs to github; goal: scm-publish:publish-scm -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<version>1.1</version>
<version>3.0.0</version>
<configuration>
<checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory>
<checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment>
Expand All @@ -235,7 +236,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.1.0</version>
<executions>
<execution>
<id>sources-jars</id>
Expand All @@ -248,7 +249,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.1.0</version>
<executions>
<execution>
<id>javadoc-jars</id>
Expand All @@ -267,7 +268,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-datamodel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-datamodel</artifactId>
Expand Down
9 changes: 4 additions & 5 deletions wdtk-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-distribution</artifactId>
Expand Down Expand Up @@ -44,7 +44,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.0</version>
<executions>
<execution>
<id>wdtk-library</id>
Expand All @@ -53,7 +53,6 @@
<goal>shade</goal>
</goals>
<configuration>
<packaging>jar</packaging>
<createDependencyReducedPom>true</createDependencyReducedPom>
<shadedGroupFilter>org.wikidata.wdtk</shadedGroupFilter>
<finalName>wikidata-toolkit-${project.version}</finalName>
Expand Down Expand Up @@ -95,7 +94,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -180,7 +179,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<version>3.1.1</version>
<executions>
<execution>
<id>create-source-jar</id>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-dumpfiles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-dumpfiles</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-rdf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-rdf</artifactId>
Expand Down
10 changes: 1 addition & 9 deletions wdtk-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-storage</artifactId>
Expand All @@ -14,12 +14,4 @@
<name>Wikidata Toolkit Storage</name>
<description>WDTK support for managing large collections of Wikibase data</description>

<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apacheCommonsLangVersion}</version>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* undefined and the first occurrence needs to be found in the following cell of
* the bit vector, i.e. at position 0. Anyway, since the zeroth occurrence is
* not defined, the {@link #findPosition(long)} method returns
* {@link RankedBitVector.NOT_FOUND} for that value.
* {@link RankedBitVector#NOT_FOUND} for that value.
* <p>
* The array for <code>true</code> is [-1, 1, 7]. The second occurrence of
* <code>true</code> is at position 1 in the bit vector. The forth occurrence of
Expand Down
2 changes: 1 addition & 1 deletion wdtk-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-testing</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-util</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wdtk-wikibaseapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wikidata.wdtk</groupId>
<artifactId>wdtk-parent</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</parent>

<artifactId>wdtk-wikibaseapi</artifactId>
Expand Down

0 comments on commit 336f77e

Please sign in to comment.