You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ni...@apache.org on 2023/06/08 21:12:10 UTC

[tika] branch TIKA-4060 updated (04021e427 -> 02f0d0441)

This is an automated email from the ASF dual-hosted git repository.

nick pushed a change to branch TIKA-4060
in repository https://gitbox.apache.org/repos/asf/tika.git


    from 04021e427 Hex values in a match regex need escaping to be treated as hex
     add d72077833 Bump aws.version from 1.12.483 to 1.12.484
     add d149fc71b Merge pull request #1180 from apache/dependabot/maven/aws.version-1.12.484
     add 2d9daef85 TIKA-4039 (#1181)
     add ceed7be8b TIKA-4062 (#1179)
     add 6cea7717c TIKA-3941 -- allow reporting of intermediate results from the pipes processor (#1167)
     add 9488d076e bump OpenSearch version to latest
     new 02f0d0441 Merge branch 'main' into TIKA-4060

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.txt                                        |  2 +
 .../tika/exception/WriteLimitReachedException.java |  6 +-
 .../apache/tika/metadata/TikaCoreProperties.java   |  1 +
 .../org/apache/tika/parser/AutoDetectParser.java   |  4 ++
 .../java/org/apache/tika/pipes/PipesClient.java    | 63 ++++++++++++++++--
 .../java/org/apache/tika/pipes/PipesResult.java    | 28 +++++---
 .../java/org/apache/tika/pipes/PipesServer.java    | 73 ++++++++++++++++++++-
 .../org/apache/tika/pipes/async/AsyncConfig.java   | 10 +++
 .../apache/tika/pipes/async/AsyncProcessor.java    | 14 +++-
 .../apache/tika/sax/ContentHandlerDecorator.java   | 38 ++++++++++-
 .../org/apache/tika/pipes/PipesServerTest.java     | 76 ++++++++++++++++++++++
 .../tika/pipes/async/AsyncProcessorTest.java       | 74 +++++++++++++++++----
 .../tika/pipes/async/MockDigesterFactory.java      | 38 +++++------
 .../org/apache/tika/pipes/async/MockReporter.java  |  6 +-
 .../TIKA-3941.xml}                                 | 18 +++--
 .../opensearch/tests/TikaPipesOpenSearchTest.java  |  2 +-
 tika-parent/pom.xml                                |  2 +-
 .../reporters/jdbc/TestJDBCPipesReporter.java      |  2 +-
 .../server/core/resource/UnpackerResource.java     | 52 ++++++++++-----
 .../tika/server/standard/UnpackerResourceTest.java |  9 +++
 20 files changed, 434 insertions(+), 84 deletions(-)
 create mode 100644 tika-core/src/test/java/org/apache/tika/pipes/PipesServerTest.java
 copy tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-digest-commons/src/main/java/org/apache/tika/parser/digestutils/CommonsDigesterFactory.java => tika-core/src/test/java/org/apache/tika/pipes/async/MockDigesterFactory.java (61%)
 copy tika-core/src/test/resources/org/apache/tika/{config/fetchers-noname-config.xml => pipes/TIKA-3941.xml} (76%)


[tika] 01/01: Merge branch 'main' into TIKA-4060

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nick pushed a commit to branch TIKA-4060
in repository https://gitbox.apache.org/repos/asf/tika.git

commit 02f0d0441b8c380faebcf8bb14d6f91b0252f058
Merge: 04021e427 9488d076e
Author: Nick Burch <ni...@gagravarr.org>
AuthorDate: Thu Jun 8 22:12:00 2023 +0100

    Merge branch 'main' into TIKA-4060

 CHANGES.txt                                        |  2 +
 .../tika/exception/WriteLimitReachedException.java |  6 +-
 .../apache/tika/metadata/TikaCoreProperties.java   |  1 +
 .../org/apache/tika/parser/AutoDetectParser.java   |  4 ++
 .../java/org/apache/tika/pipes/PipesClient.java    | 63 ++++++++++++++++--
 .../java/org/apache/tika/pipes/PipesResult.java    | 28 +++++---
 .../java/org/apache/tika/pipes/PipesServer.java    | 73 ++++++++++++++++++++-
 .../org/apache/tika/pipes/async/AsyncConfig.java   | 10 +++
 .../apache/tika/pipes/async/AsyncProcessor.java    | 14 +++-
 .../apache/tika/sax/ContentHandlerDecorator.java   | 38 ++++++++++-
 .../org/apache/tika/pipes/PipesServerTest.java     | 76 ++++++++++++++++++++++
 .../tika/pipes/async/AsyncProcessorTest.java       | 74 +++++++++++++++++----
 .../tika/pipes/async/MockDigesterFactory.java      | 56 ++++++++++++++++
 .../org/apache/tika/pipes/async/MockReporter.java  |  6 +-
 .../resources/org/apache/tika/pipes/TIKA-3941.xml  | 30 +++++++++
 .../opensearch/tests/TikaPipesOpenSearchTest.java  |  2 +-
 tika-parent/pom.xml                                |  2 +-
 .../reporters/jdbc/TestJDBCPipesReporter.java      |  2 +-
 .../server/core/resource/UnpackerResource.java     | 52 ++++++++++-----
 .../tika/server/standard/UnpackerResourceTest.java |  9 +++
 20 files changed, 494 insertions(+), 54 deletions(-)