Prepare for release candidate
This commit is contained in:
parent
c69016a2a6
commit
4ee216cd17
|
@ -12,7 +12,7 @@ Commons CSV requires at least Java 8.
|
|||
|
||||
The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.
|
||||
|
||||
This is a feature and bug fix release.
|
||||
Feature and bug fix release (Java 8)
|
||||
|
||||
Changes in this version include:
|
||||
|
||||
|
@ -39,6 +39,8 @@ o CSVParser.getRecords() now throws UncheckedIOException instead of IO
|
|||
o CSV-274: Add comments to iterator() and stream() #270. Thanks to Peter Hull, Bruno P. Kinoshita, Gary Gregory.
|
||||
o CSV-290: Fix wrong assumptions in PostgreSQL formats #265. Thanks to angusdev, Gary Gregory.
|
||||
o Validate input to setDelimiter(String) for empty string #266. Thanks to Mykola Faryma.
|
||||
o Bump CSVFormat#serialVersionUID from 1 to 2. Thanks to Dependabot.
|
||||
o CSVParser: Identify duplicates in null, empty and blank header names #279. Thanks to Alex Herbert.
|
||||
|
||||
CHANGES
|
||||
=======
|
||||
|
@ -46,16 +48,17 @@ CHANGES
|
|||
o Bump actions/cache from 2.1.6 to 3.0.10 #196, #233, #243, #267, #271. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump actions/checkout from 2.3.4 to 3.1.0 #188, #195, #220, #272. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump actions/setup-java from 2 to 3.5.1. Thanks to Gary Gregory.
|
||||
o Bump commons-parent from 52 to 54 #264. Thanks to Gary Gregory.
|
||||
o Bump actions/upload-artifact from 3.1.0 to 3.1.1 #280. Thanks to Dependabot.
|
||||
o Bump commons-parent from 52 to 56 #264, #288, #298. Thanks to Gary Gregory.
|
||||
o Bump checkstyle from 8.44 to 9.2.1 #180, #190, #194, #202, #207. Thanks to Dependabot.
|
||||
o Bump junit-jupiter from 5.8.0-M1 to 5.9.1 #179, #186, #201, #244, #263. Thanks to Dependabot.
|
||||
o Bump jmh-core from 1.32 to 1.35 #176, #208, #229. Thanks to Dependabot.
|
||||
o Bump jmh-generator-annprocess from 1.32 to 1.35 #175, #206, #226. Thanks to Dependabot.
|
||||
o Bump mockito-core from 3.11.2 to 4.8.0 #187, #197, #204, #212, #230, #237, #251, #259. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump jmh-core from 1.32 to 1.36 #176, #208, #229, #285. Thanks to Dependabot.
|
||||
o Bump jmh-generator-annprocess from 1.32 to 1.36 #175, #206, #226, #283. Thanks to Dependabot.
|
||||
o Bump mockito-core from 3.11.2 to 4.11.0 #187, #197, #204, #212, #230, #237, #251, #259, #284, #292, #297. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump maven-pmd-plugin from 3.14.0 to 3.19.0 #184, #219, #238, #254, #258. Thanks to Dependabot.
|
||||
o Bump pmd from 6.36.0 to 6.50.0 #173, #189, #193, #199, #227, #233, #214, #236, #240, #247, #255, #273. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump opencsv from 5.5.1 to 5.7.0 #182, #221, #260. Thanks to Gary Gregory.
|
||||
o Bump spotbugs-maven-plugin from 4.3.0 to 4.7.2.1 #192, #198, #203, #211, #225, #234, #242, #245, #261, #275. Thanks to Dependabot.
|
||||
o Bump pmd from 6.36.0 to 6.52.0 #173, #189, #193, #199, #227, #233, #214, #236, #240, #247, #255, #273. Thanks to Dependabot, Gary Gregory.
|
||||
o Bump opencsv from 5.5.1 to 5.7.1 #182, #221, #260, #281. Thanks to Gary Gregory.
|
||||
o Bump spotbugs-maven-plugin from 4.3.0 to 4.7.3.0 #192, #198, #203, #211, #225, #234, #242, #245, #261, #275, #282. Thanks to Dependabot.
|
||||
o Bump com.github.spotbugs:spotbugs from 4.5.3 to 4.7.2. Thanks to Gary Gregory.
|
||||
o Bump h2 from 1.4.200 to 2.1.214 #200, #205, #213, #239. Thanks to Dependabot.
|
||||
o Bump maven-javadoc-plugin from 3.3.0 to 3.4.1. Thanks to Gary Gregory.
|
||||
|
@ -64,6 +67,8 @@ o Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. Thanks to Gary Gregory
|
|||
o Bump japicmp-maven-plugin from 0.15.3 to 0.16.0. Thanks to Gary Gregory.
|
||||
o Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 #253. Thanks to Dependabot.
|
||||
|
||||
Removed:
|
||||
o Serialization in CSVFormat is not supported from one version to the next.
|
||||
|
||||
Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -154,7 +154,7 @@
|
|||
<commons.release.version>1.10.0</commons.release.version>
|
||||
<commons.release.desc>(Java 8)</commons.release.desc>
|
||||
<!-- The RC version used in the staging repository URL. -->
|
||||
<commons.rc.version>RC1</commons.rc.version>
|
||||
<commons.rc.version>RC2</commons.rc.version>
|
||||
<commons.bc.version>1.9.0</commons.bc.version>
|
||||
<commons.componentid>csv</commons.componentid>
|
||||
<commons.module.name>org.apache.commons.csv</commons.module.name>
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<title>Apache Commons CSV Release Notes</title>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.10.0" date="2022-10-16" description="Feature and bug fix release (Java 8)">
|
||||
<release version="1.10.0" date="2023-01-28" description="Feature and bug fix release (Java 8)">
|
||||
<!-- FIX -->
|
||||
<action type="fix" dev="ggregory" due-to="Arturo Bernal">Minor changes #172.</action>
|
||||
<action issue="CSV-292" type="fix" dev="kinow" due-to="Rob Vesse">No Automatic-Module-Name prevents usage in JPMS projects without repacking the JAR.</action>
|
||||
|
|
Loading…
Reference in New Issue