Skip to content

Commit 4f359f6

Browse files
[SITE-5350] Add release note for Tika 3.x default change (#9826)
* [SITE-5350] Add release note for Tika 3.x default change * [SITE-5350] Update Tika docs to reflect new default * Bump published date * Fix year, remove drupla category * Bump date for tika 1 removal --------- Co-authored-by: Rachel <rachel@pantheon.io>
1 parent 7f750c8 commit 4f359f6

File tree

3 files changed

+43
-10
lines changed

3 files changed

+43
-10
lines changed

src/source/content/external-libraries.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ audience: [development]
99
product: [--]
1010
integration: [--]
1111
tags: [code, libraries, modules, plugins]
12-
reviewed: "2025-12-10"
12+
reviewed: "2026-01-21"
1313
---
1414

1515
There are some scenarios when an external library is required. The Pantheon platform includes a number of PHP extensions and common libraries that are available for use.
@@ -49,22 +49,28 @@ Tika can extract content from a number of document formats such as HTML, XML, M
4949

5050
<Tab title="PHP Runtime Generation 2" id="tab-1-anchor" active={true}>
5151

52-
By default, sites using [PHP Runtime Generation 2](/php-runtime-generation-2) have access to Tika 1.18 and 1.21. These versions are available at the following paths:
52+
New sites created on the Pantheon platform default to Tika 3.x. The Tika 3 jar is available at:
53+
54+
- `/opt/pantheon/tika/tika.jar`
55+
56+
Existing sites may still be using Tika 1.18 or 1.21, which are available at:
5357

5458
- `/srv/bin/tika-app-1.18.jar`
5559
- `/srv/bin/tika-app-1.21.jar`
5660

57-
Sites that are using these older versions of Tika should be upgraded to a newer version of Tika as soon as possible.
61+
<Alert title="Tika 1.x End of Life" type="warning">
62+
63+
Tika 1.x will be removed on January 26, 2026. Sites using Tika 1.x should migrate to Tika 3 before this date. See the [Tika 1.x EOL release note](/release-notes/2025/10/tika1x-eol) for details.
5864

59-
Tika 3 is available and recommended. To enable Tika 3, add the following to your `pantheon.yml`:
65+
</Alert>
66+
67+
To explicitly set your Tika version, add the following to your `pantheon.yml`:
6068

6169
```yaml:title=pantheon.yml
6270
tika_version: 3
6371
```
6472

65-
Once you have committed the line above, the latest version of Tika 3 will be available at the following path:
66-
67-
- `/opt/pantheon/tika/tika.jar`
73+
Valid values are `1`, `3`, or `none` (to disable Tika).
6874

6975
</Tab>
7076
<Tab title="PHP Runtime Generation 1" id="tab-2-id">
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
---
2-
title: "Tika 1.xx no longer available starting January 19, 2026"
2+
title: "Tika 1.xx no longer available starting January 26, 2026"
33
published_date: "2025-10-14"
44
categories: [infrastructure, action-required, drupal, security]
55
---
6-
Tika 1.18 and 1.21 will no longer be available starting January 19, 2026. Impacted sites must upgrade to [Tika 3.2](https://tika.apache.org/3.2.0/index.html) which is available via [PHP Runtime Generation 2](/php-runtime-generation-2/).
6+
7+
_**Editorial note: The date has been moved from January 19 to January 26.**_
8+
9+
Tika 1.18 and 1.21 will no longer be available starting January 26, 2026. Impacted sites must upgrade to [Tika 3.2](https://tika.apache.org/3.2.0/index.html) which is available via [PHP Runtime Generation 2](/php-runtime-generation-2/).
710

811
The [Apache Tika](https://tika.apache.org/) toolkit detects and extracts metadata and structured text content from various documents using existing parser libraries. On the Pantheon platform, our customers tend to use Tika to parse PDF content for searching with [Solr](/solr).
912

1013
## Action Required
1114

1215
For most customers, we expect the upgrade to be seamless and not require any manual intervention. But if your site has a custom Tika integration, we recommend you follow [our documentation for upgrading to Tika 3](/external-libraries#apache-tika) as soon as possible to ensure your site continues to operate as expected.
1316

14-
Sites which have not upgraded to Tika 3 as of January 19, 2026, will be automatically upgraded. Setting `tika_version: 1` in `pantheon.yml` will be ignored after that date. Symlinks from the 1.xx jar filepaths (`/srv/bin/tika-app-1.xx.jar`) will point to the new Tika 3 jar (`/opt/pantheon/tika/tika.jar`). These symlinks will be removed later in 2026.
17+
Sites which have not upgraded to Tika 3 as of January 26, 2026, will be automatically upgraded. Setting `tika_version: 1` in `pantheon.yml` will be ignored after that date. Symlinks from the 1.xx jar filepaths (`/srv/bin/tika-app-1.xx.jar`) will point to the new Tika 3 jar (`/opt/pantheon/tika/tika.jar`). These symlinks will be removed later in 2026.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "Tika 3.x is now the default for new sites"
3+
published_date: "2026-01-21"
4+
categories: [infrastructure]
5+
---
6+
New sites created on the Pantheon platform now default to Tika 3.x. Previously, new sites defaulted to Tika 1.x.
7+
8+
This change only affects newly created sites. Existing sites will continue to use their current Tika version and are not impacted by this update.
9+
10+
## Overriding the default
11+
12+
If you need to use Tika 1.x for a new site, you can explicitly set the version in your `pantheon.yml` file:
13+
14+
```yaml:title=pantheon.yml
15+
tika_version: 1
16+
```
17+
18+
However, [Tika 1.x will be removed on January 26, 2026](/release-notes/2025/10/tika1x-eol). We recommend testing your site with Tika 3.x and migrating before this date.
19+
20+
## More information
21+
22+
- [Apache Tika on Pantheon](/external-libraries#apache-tika)
23+
- [Tika 3.2 now available](/release-notes/2025/08/tika-3-2-available)
24+
- [Tika 1.x end of life](/release-notes/2025/10/tika1x-eol)

0 commit comments

Comments
 (0)