Skip to content

Commit

Permalink
prep for 2.5.0 rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
tballison committed Sep 30, 2022
1 parent cf5896c commit 5f43255
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Release 2.5.0 - ???
Release 2.5.0 - 09/30/2022

* Improved extraction of PDF subset info for PDF/UA, PDF/VT, and PDF/X.
NOTE: we no longer append PDF/A information, e.g. 'version="A-1b"'
Expand All @@ -21,7 +21,7 @@ Release 2.5.0 - ???

* Upgrade to PDFBox 2.0.27 (TIKA-3866).

* Upgrade to jempbox 1.8.17 (TIKA-3856).
* Upgrade to JempBox 1.8.17 (TIKA-3856).

* Add extraction of ODF version from ODF files (TIKA-3840).

Expand Down Expand Up @@ -50,6 +50,9 @@ Release 2.5.0 - ???

* Numerous dependency upgrades (TIKA-3795).

* Add ALPHA-level initial releases of JDBCEmitter,
FileSystemStatusReporter and OpenSearchPipesReporter.
These may have breaking changes in subsequent releases.

Release 2.4.1 - 06/14/2022

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
* <p>
* It is currently NOT thread safe because of the shared prepared statement,
* and depending on the jdbc implementation because of the shared connection.
* <p>
* As of the 2.5.0 release, this is ALPHA version. There may be breaking changes
* in the future.
*/
public class JDBCEmitter extends AbstractEmitter implements Initializable, Closeable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
/**
* This is intended to write summary statistics to disk
* periodically.
*
* As of the 2.5.0 release, this is ALPHA version. There may be breaking changes
* in the future.
*/
public class FileSystemStatusReporter extends PipesReporter
implements Initializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
import org.apache.tika.pipes.PipesResult;
import org.apache.tika.utils.StringUtils;

/**
* As of the 2.5.0 release, this is ALPHA version. There may be breaking changes
* in the future.
*/
public class OpenSearchPipesReporter extends PipesReporter implements Initializable {

private static final Logger LOG = LoggerFactory.getLogger(OpenSearchPipesReporter.class);
Expand Down

0 comments on commit 5f43255

Please sign in to comment.