TrueChartsClone/charts/stable/bitmagnet/Chart.yaml

39 lines
1.1 KiB
YAML
Raw Normal View History

annotations:
feat: Add VolSync support and move CNPG backup credentials on SCALE (#21443) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
2024-04-29 10:28:39 +00:00
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable
apiVersion: v2
chore(deps): update container image ghcr.io/bitmagnet-io/bitmagnet to v0.8.0@c638773 by renovate (#21612) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/bitmagnet-io/bitmagnet](https://togithub.com/bitmagnet-io/bitmagnet) | minor | `0.7.14` -> `v0.8.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>bitmagnet-io/bitmagnet (ghcr.io/bitmagnet-io/bitmagnet)</summary> ### [`v0.8.0`](https://togithub.com/bitmagnet-io/bitmagnet/releases/tag/v0.8.0) [Compare Source](https://togithub.com/bitmagnet-io/bitmagnet/compare/v0.7.14...v0.8.0) #### Classifier reimplementation The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed, and a preparatory database migration for search ordering has been added. The classifier documentation can be found at https://bitmagnet.io/tutorials/classifier.html. #### Build reimplementation The build has been re-implemented using https://github.com/goreleaser/goreleaser, thanks to [@&#8203;KyleSanderson](https://togithub.com/KyleSanderson). A number of new platform-specific build artifacts are now available. #### Seeders/Leechers bug There has somehow been a bug present, since day 1, whereby seeders and leechers were being swapped by the DHT crawler! This is fixed in 0.8.x. The first beta included a migration that would fix existing data, but the query just takes too long (for larger indexes), and so it has been removed from the migration. Until now, no-one noticed - but If you care and would like to fix this in your index, you can run the following query, replacing the time with the time at which you did the 0.8.x upgrade. Be warned, this query may take a while for larger indexes! In time, much of the data will naturally fix itself anyway as the S/L numbers get re-scraped by the crawler when the torrent is re-discovered. ```sql update torrents_torrent_sources set seeders = leechers, leechers = seeders where source = 'dht' and updated_at < '2024-04-30 00:00:00+00'; ``` #### What's Changed - Create FUNDING.yml by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/219](https://togithub.com/bitmagnet-io/bitmagnet/pull/219) - Fix angular cli version by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/220](https://togithub.com/bitmagnet-io/bitmagnet/pull/220) - Torrent search: Fix for Safari on iOS. by [@&#8203;josteink](https://togithub.com/josteink) in [https://github.com/bitmagnet-io/bitmagnet/pull/235](https://togithub.com/bitmagnet-io/bitmagnet/pull/235) - Classifier rewrite by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/213](https://togithub.com/bitmagnet-io/bitmagnet/pull/213) - Fix slow migration of published_at field by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/240](https://togithub.com/bitmagnet-io/bitmagnet/pull/240) - Fix slow migration by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/241](https://togithub.com/bitmagnet-io/bitmagnet/pull/241) - Fix slow migration by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/242](https://togithub.com/bitmagnet-io/bitmagnet/pull/242) - Keep a default placeholder value for published_at to avoid a breaking change by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/243](https://togithub.com/bitmagnet-io/bitmagnet/pull/243) - Add an order by updated_at column, as there may be many records with the same published_at by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/244](https://togithub.com/bitmagnet-io/bitmagnet/pull/244) - Add orphans option to reprocess command by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/245](https://togithub.com/bitmagnet-io/bitmagnet/pull/245) - Use budgeted count for reprocess by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/246](https://togithub.com/bitmagnet-io/bitmagnet/pull/246) - Bump golang.org/x/net from 0.20.0 to 0.23.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/bitmagnet-io/bitmagnet/pull/239](https://togithub.com/bitmagnet-io/bitmagnet/pull/239) - Bump express from 4.18.2 to 4.19.2 in /webui by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/bitmagnet-io/bitmagnet/pull/236](https://togithub.com/bitmagnet-io/bitmagnet/pull/236) - Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /webui by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/bitmagnet-io/bitmagnet/pull/231](https://togithub.com/bitmagnet-io/bitmagnet/pull/231) - Bump follow-redirects from 1.15.5 to 1.15.6 in /webui by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/bitmagnet-io/bitmagnet/pull/221](https://togithub.com/bitmagnet-io/bitmagnet/pull/221) - Bump github.com/jackc/pgx/v5 from 5.5.2 to 5.5.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/bitmagnet-io/bitmagnet/pull/218](https://togithub.com/bitmagnet-io/bitmagnet/pull/218) - Add Nix shell and refactor actions by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/249](https://togithub.com/bitmagnet-io/bitmagnet/pull/249) - Use goreleaser for build process ([#&#8203;212](https://togithub.com/bitmagnet-io/bitmagnet/issues/212)) by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/216](https://togithub.com/bitmagnet-io/bitmagnet/pull/216) - Upgrade dependencies by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/250](https://togithub.com/bitmagnet-io/bitmagnet/pull/250) - Don't run GHCR action on main by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/251](https://togithub.com/bitmagnet-io/bitmagnet/pull/251) - Fix docsite plugin by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/252](https://togithub.com/bitmagnet-io/bitmagnet/pull/252) #### New Contributors - [@&#8203;josteink](https://togithub.com/josteink) made their first contribution in [https://github.com/bitmagnet-io/bitmagnet/pull/235](https://togithub.com/bitmagnet-io/bitmagnet/pull/235) - [@&#8203;KyleSanderson](https://togithub.com/KyleSanderson) made their first contribution in [https://github.com/bitmagnet-io/bitmagnet/pull/212](https://togithub.com/bitmagnet-io/bitmagnet/pull/212) **Full Changelog**: https://github.com/bitmagnet-io/bitmagnet/compare/v0.7.14...v0.8.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM0MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-05 11:00:15 +00:00
appVersion: 0.8.0
dependencies:
- name: common
version: 23.0.8
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
description: A self-hosted BitTorrent indexer, DHT crawler, content classifier and torrent search engine with web UI, GraphQL API and Servarr stack integration.
home: https://truecharts.org/charts/stable/bitmagnet
icon: https://truecharts.org/img/hotlink-ok/chart-icons/bitmagnet.webp
keywords:
- torrent
- bitmagnet
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: bitmagnet
sources:
- https://bitmagnet.io
- https://github.com/bitmagnet-io/bitmagnet
- https://github.com/truecharts/charts/tree/master/charts/stable/bitmagnet
- https://ghcr.io/bitmagnet-io/bitmagnet
type: application
version: 2.1.2