Update to 8.2.0

This commit is contained in:
TheOtherP 2026-01-05 11:19:43 +01:00
parent 0bb6b96779
commit d29c1da3a0
13 changed files with 44 additions and 22 deletions

View File

@ -1,3 +1,25 @@
### v8.2.0 (2026-01-05)
**Feature** Add attribute whitelist filtering for indexers. Allows filtering search results by newznab attributes (e.g., subtitles). Configure per-indexer with optional category restrictions. See <a href="https://github.com/theotherp/nzbhydra2/issues/983">#983</a>
**Feature** Option to import prowlarr indexers. They will be added as separate entries with a (Prowlarr) suffix. This different than using the external tool configuration as the prowlarr indexers will be searched via prowlarr, i.e. when you search them in hydra it will call prowlarr which then calls the indexers. See <a href="https://github.com/theotherp/nzbhydra2/issues/922">#922</a>
**Feature** Option to ignore load limiting for targeted API searches. See <a href="https://github.com/theotherp/nzbhydra2/issues/909">#909</a>
**Fix** Correctly preselect quickfilter buttons. See <a href="https://github.com/theotherp/nzbhydra2/issues/1033">#1033</a>
**Fix** Remove obsolete reddit references. See <a href="https://github.com/theotherp/nzbhydra2/issues/1028">#1028</a>
**Fix** Indexer stats now correctly count all searches an indexer participated in, not just those where it returned results. See <a href="https://github.com/theotherp/nzbhydra2/issues/1031">#1031</a>
**Fix** Fix NPE when parsing Torznab responses with empty response element (e.g., from Bitmagnet). See <a href="https://github.com/theotherp/nzbhydra2/issues/1030">#1030</a>
**Fix** Link to comments when available instead of details page. See <a href="https://github.com/theotherp/nzbhydra2/issues/1027">#1027</a>
**Note** Happy new year!
### v8.1.2 (2025-12-04)
**Fix** Fix some more memory leaks in the frontend. See <a href="https://github.com/theotherp/nzbhydra2/issues/982">#982</a>
@ -2285,7 +2307,7 @@ I don't plan to compile the wrapper for anything but windows as it makes more se
### v2.6.12 (2019-08-04)
**Features** Allow limiting the indexers to be used via API. Use "&indexers=<name1>,<name2>".
**Feature** Allow limiting the indexers to be used via API. Use "&indexers=<name1>,<name2>".
**Fix** Reduce how long sessions are kept open, possible reducing memory usage in some cases
@ -2553,7 +2575,7 @@ I don't plan to compile the wrapper for anything but windows as it makes more se
**Note** I need to make something clear: If Hydra shows you 100 results on the GUI and says that x results are not yet loaded then that means that some results you're looking for may be missing. You will always only get the newest 100 results from any indexer at first. Even if you sort by name then other results which should be somewhere in that list may be 'hidden' because they were not yet retrieved from the indexer.
**null** Delay writing of config file so that not too many concurrent writes occur. This should hopefully reduce the risk of file corruption.
**Fix** Delay writing of config file so that not too many concurrent writes occur. This should hopefully reduce the risk of file corruption.

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>core</artifactId>
@ -100,7 +100,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
<!-- spring (boot) -->

View File

@ -59,7 +59,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
<exclusions>
<exclusion>
<artifactId>jaxb-impl</artifactId>

View File

@ -4,7 +4,7 @@
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<packaging>pom</packaging>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
<modules>
<module>shared</module>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>generic-release</artifactId>
@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
</dependencies>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>linux-amd64-release</artifactId>
@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
</dependencies>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>linux-arm64-release</artifactId>
@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
</dependencies>

View File

@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>releases</artifactId>
<packaging>pom</packaging>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
<modules>
<module>generic-release</module>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>windows-release</artifactId>
@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
</dependencies>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>shared</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>mapping</artifactId>

View File

@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>shared</artifactId>
<packaging>pom</packaging>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
<modules>
<module>mapping</module>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<artifactId>tests</artifactId>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>tests</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</parent>
<groupId>org.nzbhydra.tests</groupId>
@ -101,7 +101,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>8.1.3-SNAPSHOT</version>
<version>8.2.0</version>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>