-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/support bazarr #214
Conversation
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
I'll have a closer look at this early October when I'm back home unless @rtrox has some free time. Sorry for the delay |
@onedr0p no rush :) |
Question for when you review, would it be okay to lax the requirement for an api version? turns out aliasing the api is impossible bazarr side due to the framework it uses just does not allowing alaising for some reason.. |
I believe that should be fine, bazarr is a bit bizarre so I'm sure there are some things like this that don't carry over from the other arr apps that well. |
feature/support-bazarr
feature/support-bazarr
feature/support-bazarr
@@ -24,7 +22,7 @@ jobs: | |||
release-image: | |||
runs-on: ubuntu-latest | |||
needs: tests | |||
if: github.event_name == 'push' | |||
if: github.event_name == 'push' && github.ref_name == 'master' | |||
steps: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes should mean it'll run the tests per commit but shouldn't try to make a release.
Can revert if preferred
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wait, actually -- this change is a problem :-/ . The on
conditions in an action are an OR
between it's children, so it was already running on pushes to master
OR pull_requests
, with the if condition here ensuring that we only released images on a push to master.
So what this change is actually doing is making it so that we'll only run this workflow on pull_requests, and therefore never build images inside this workflow (so the only built images would come from the tagged release workflow, we'd have no updates to the master
tag).
Let's revert this file, everything else looks good.
feature/support-bazarr
feature/support-bazarr
… result feature/support-bazarr
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work here @phyzical I'll merge this if you don't have any other commits to send over. Also should be mentioned that I do not run bazarr so hopefully I can lean on the community here to keep this integration working.
@@ -0,0 +1,15 @@ | |||
-include .env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Adding a makefile is a good idea, thanks!
The test failure is just yelling because |
thanks for the reviews gang @onedr0p no more code to commit. i agree interms of maintenance feel free to ping me if there are issues with the bazarr provider reported. ill fix up the tests later today |
…r into feature/support-bazarr feature/support-bazarr
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, just realized I hadn't stamped this. @onedr0p I looked through the most recent commits. I'm good with pushing this if you are. I'll leave it to you to merge given the size of the feature.
@@ -24,7 +22,7 @@ jobs: | |||
release-image: | |||
runs-on: ubuntu-latest | |||
needs: tests | |||
if: github.event_name == 'push' | |||
if: github.event_name == 'push' && github.ref_name == 'master' | |||
steps: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wait, actually -- this change is a problem :-/ . The on
conditions in an action are an OR
between it's children, so it was already running on pushes to master
OR pull_requests
, with the if condition here ensuring that we only released images on a push to master.
So what this change is actually doing is making it so that we'll only run this workflow on pull_requests, and therefore never build images inside this workflow (so the only built images would come from the tagged release workflow, we'd have no updates to the master
tag).
Let's revert this file, everything else looks good.
@rtrox my bad, i initially made the change to the workflow thinking it would let me run tests per commit. then forgot that it wasn't actually running due to me not being a valid contributor yet. Will update the tests for the rest of the providers in a few days and revert that change if it isnt done already |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/onedr0p/exportarr](https://togithub.com/onedr0p/exportarr) | minor | `v1.5.5` -> `v1.6.0` | --- ### Release Notes <details> <summary>onedr0p/exportarr (ghcr.io/onedr0p/exportarr)</summary> ### [`v1.6.0`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.0) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.5.5...v1.6.0) #### What's Changed - chore(deps): update golang docker tag to v1.21.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/222](https://togithub.com/onedr0p/exportarr/pull/222) - Allow selection of prometheus datasource in dashboard 1 by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/224](https://togithub.com/onedr0p/exportarr/pull/224) - Feature/support bazarr by [@​phyzical](https://togithub.com/phyzical) in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) - Separate PR & Merge Workflows by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/225](https://togithub.com/onedr0p/exportarr/pull/225) - Extend client to allow multi-value query parameters by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/226](https://togithub.com/onedr0p/exportarr/pull/226) - Add golangci-lint, fix lint warnings by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/227](https://togithub.com/onedr0p/exportarr/pull/227) - chore(deps): update golang docker tag to v1.21.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/229](https://togithub.com/onedr0p/exportarr/pull/229) - fix(deps): update golang.org/x/exp digest to [`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/221](https://togithub.com/onedr0p/exportarr/pull/221) - fix: Fix [#​230](https://togithub.com/onedr0p/exportarr/issues/230), Add tests for shared collectors by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/231](https://togithub.com/onedr0p/exportarr/pull/231) - Only set `latest` tag on version bump by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/232](https://togithub.com/onedr0p/exportarr/pull/232) #### New Contributors - [@​phyzical](https://togithub.com/phyzical) made their first contribution in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) **Full Changelog**: onedr0p/exportarr@v1.5.5...v1.6.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/spiceratops/k8s-gitops). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOS4yIiwidXBkYXRlZEluVmVyIjoiMzcuMTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | app-template | major | `2.4.0` -> `3.2.1` | | [ghcr.io/onedr0p/exportarr](https://togithub.com/onedr0p/exportarr) | major | `v1.5.3` -> `v2.0.1` | | [linuxserver/prowlarr](https://togithub.com/linuxserver/docker-prowlarr/packages) ([source](https://togithub.com/linuxserver/docker-prowlarr)) | minor | `1.15.0` -> `1.19.0` | | [linuxserver/qbittorrent](https://togithub.com/linuxserver/docker-qbittorrent/packages) ([source](https://togithub.com/linuxserver/docker-qbittorrent)) | major | `4.6.4` -> `20.04.1` | --- ### Release Notes <details> <summary>onedr0p/exportarr (ghcr.io/onedr0p/exportarr)</summary> ### [`v2.0.1`](https://togithub.com/onedr0p/exportarr/releases/tag/v2.0.1) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v2.0.0...v2.0.1) #### What's Changed - chore(deps): update golang docker tag to v1.22.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/277](https://togithub.com/onedr0p/exportarr/pull/277) - Minor fixes by [@​tronyx](https://togithub.com/tronyx) in [https://github.com/onedr0p/exportarr/pull/280](https://togithub.com/onedr0p/exportarr/pull/280) - fix(deps): update golang.org/x/exp digest to [`a85f2c6`](https://togithub.com/onedr0p/exportarr/commit/a85f2c6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/281](https://togithub.com/onedr0p/exportarr/pull/281) - fix(deps): update golang.org/x/exp digest to [`a685a6e`](https://togithub.com/onedr0p/exportarr/commit/a685a6e) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/282](https://togithub.com/onedr0p/exportarr/pull/282) - chore(deps): update golang docker tag to v1.22.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/285](https://togithub.com/onedr0p/exportarr/pull/285) - fix(deps): update module github.com/knadh/koanf/v2 to v2.1.1 - autoclosed by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/284](https://togithub.com/onedr0p/exportarr/pull/284) - fix(deps): update module golang.org/x/sync to v0.7.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/286](https://togithub.com/onedr0p/exportarr/pull/286) - fix(deps): update golang.org/x/exp digest to [`c0f41cb`](https://togithub.com/onedr0p/exportarr/commit/c0f41cb) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/287](https://togithub.com/onedr0p/exportarr/pull/287) #### New Contributors - [@​tronyx](https://togithub.com/tronyx) made their first contribution in [https://github.com/onedr0p/exportarr/pull/280](https://togithub.com/onedr0p/exportarr/pull/280) **Full Changelog**: onedr0p/exportarr@v2.0.0...v2.0.1 ### [`v2.0.0`](https://togithub.com/onedr0p/exportarr/releases/tag/v2.0.0) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.2...v2.0.0) > \[!IMPORTANT] > This release removes the hardcoded `/sabnzbd` from the sabnzbd exporter. If you have sabnzbd deployed with this base URL you need to add that path into via your config. #### What's Changed - fix(deps): update module github.com/stretchr/testify to v1.9.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/272](https://togithub.com/onedr0p/exportarr/pull/272) - add missing valid api key tests by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/274](https://togithub.com/onedr0p/exportarr/pull/274) - \[BREAKING]\[fix [#​263](https://togithub.com/onedr0p/exportarr/issues/263)]: remove hardcoded /sabnzbd from api path by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/275](https://togithub.com/onedr0p/exportarr/pull/275) **Full Changelog**: onedr0p/exportarr@v1.6.2...v1.6.3 ### [`v1.6.2`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.2) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.1...v1.6.2) #### What's Changed - fix(deps): update module github.com/knadh/koanf/v2 to v2.0.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/260](https://togithub.com/onedr0p/exportarr/pull/260) - fix(deps): update module github.com/knadh/koanf/v2 to v2.1.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/262](https://togithub.com/onedr0p/exportarr/pull/262) - fix(deps): update module github.com/prometheus/client_golang to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/268](https://togithub.com/onedr0p/exportarr/pull/268) - fix(deps): update golang.org/x/exp digest to [`814bf88`](https://togithub.com/onedr0p/exportarr/commit/814bf88) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/261](https://togithub.com/onedr0p/exportarr/pull/261) - chore(deps): update golang docker tag to v1.22.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/264](https://togithub.com/onedr0p/exportarr/pull/264) - chore(deps): update golangci/golangci-lint-action action to v4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/265](https://togithub.com/onedr0p/exportarr/pull/265) - fix(deps): update module go.uber.org/zap to v1.27.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/267](https://togithub.com/onedr0p/exportarr/pull/267) - fix: make api-key less restrictive by [@​onedr0p](https://togithub.com/onedr0p) in [https://github.com/onedr0p/exportarr/pull/270](https://togithub.com/onedr0p/exportarr/pull/270) **Full Changelog**: onedr0p/exportarr@v1.6.1...v1.6.2 ### [`v1.6.1`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.1) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.0...v1.6.1) #### What's Changed - Add tests for Radarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/234](https://togithub.com/onedr0p/exportarr/pull/234) - Add tests for Sonarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/235](https://togithub.com/onedr0p/exportarr/pull/235) - Add tests for Readarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/236](https://togithub.com/onedr0p/exportarr/pull/236) - doc(README): remove typo by [@​Deep145757](https://togithub.com/Deep145757) in [https://github.com/onedr0p/exportarr/pull/240](https://togithub.com/onedr0p/exportarr/pull/240) - chore(deps): update golang docker tag to v1.21.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/242](https://togithub.com/onedr0p/exportarr/pull/242) - chore(deps): update actions/setup-go action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/248](https://togithub.com/onedr0p/exportarr/pull/248) - chore(deps): update golang docker tag to v1.21.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/247](https://togithub.com/onedr0p/exportarr/pull/247) - chore(deps): update actions/checkout digest to [`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/233](https://togithub.com/onedr0p/exportarr/pull/233) - \[bazarr] Add bounded concurrency to episodes endpoint by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/238](https://togithub.com/onedr0p/exportarr/pull/238) - chore(deps): update golangci/golangci-lint-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/257](https://togithub.com/onedr0p/exportarr/pull/257) - fix: add `gomodTidy` option to renovate by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/258](https://togithub.com/onedr0p/exportarr/pull/258) - fix(deps): update module github.com/gookit/validate to v1.5.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/253](https://togithub.com/onedr0p/exportarr/pull/253) - chore(deps): update actions/setup-go action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/256](https://togithub.com/onedr0p/exportarr/pull/256) - chore(deps): update actions/checkout digest to [`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/255](https://togithub.com/onedr0p/exportarr/pull/255) - fix(deps): update module github.com/prometheus/client_golang to v1.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/250](https://togithub.com/onedr0p/exportarr/pull/250) - fix(deps): update module golang.org/x/sync to v0.6.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/220](https://togithub.com/onedr0p/exportarr/pull/220) - fix(deps): update module github.com/spf13/cobra to v1.8.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/241](https://togithub.com/onedr0p/exportarr/pull/241) - fix(deps): update golang.org/x/exp digest to [`1b97071`](https://togithub.com/onedr0p/exportarr/commit/1b97071) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/243](https://togithub.com/onedr0p/exportarr/pull/243) - chore(deps): update golang docker tag to v1.21.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/251](https://togithub.com/onedr0p/exportarr/pull/251) - fix([#​252](https://togithub.com/onedr0p/exportarr/issues/252)): Handle an empty Server Stat map returned from Sab. by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/259](https://togithub.com/onedr0p/exportarr/pull/259) #### New Contributors - [@​Deep145757](https://togithub.com/Deep145757) made their first contribution in [https://github.com/onedr0p/exportarr/pull/240](https://togithub.com/onedr0p/exportarr/pull/240) **Full Changelog**: onedr0p/exportarr@v1.6.0...v1.6.1 ### [`v1.6.0`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.0) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.5.5...v1.6.0) #### What's Changed - chore(deps): update golang docker tag to v1.21.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/222](https://togithub.com/onedr0p/exportarr/pull/222) - Allow selection of prometheus datasource in dashboard 1 by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/224](https://togithub.com/onedr0p/exportarr/pull/224) - Feature/support bazarr by [@​phyzical](https://togithub.com/phyzical) in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) - Separate PR & Merge Workflows by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/225](https://togithub.com/onedr0p/exportarr/pull/225) - Extend client to allow multi-value query parameters by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/226](https://togithub.com/onedr0p/exportarr/pull/226) - Add golangci-lint, fix lint warnings by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/227](https://togithub.com/onedr0p/exportarr/pull/227) - chore(deps): update golang docker tag to v1.21.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/229](https://togithub.com/onedr0p/exportarr/pull/229) - fix(deps): update golang.org/x/exp digest to [`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/221](https://togithub.com/onedr0p/exportarr/pull/221) - fix: Fix [#​230](https://togithub.com/onedr0p/exportarr/issues/230), Add tests for shared collectors by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/231](https://togithub.com/onedr0p/exportarr/pull/231) - Only set `latest` tag on version bump by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/232](https://togithub.com/onedr0p/exportarr/pull/232) #### New Contributors - [@​phyzical](https://togithub.com/phyzical) made their first contribution in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) **Full Changelog**: onedr0p/exportarr@v1.5.5...v1.6.0 ### [`v1.5.5`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.5.5) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.5.3...v1.5.5) #### What's Changed - fix dashboard2 for single instances by [@​Kariton](https://togithub.com/Kariton) in [https://github.com/onedr0p/exportarr/pull/192](https://togithub.com/onedr0p/exportarr/pull/192) - fix: sabnzbd incorrect metric name by [@​buroa](https://togithub.com/buroa) in [https://github.com/onedr0p/exportarr/pull/196](https://togithub.com/onedr0p/exportarr/pull/196) - chore(deps): update golang docker tag to v1.20.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/195](https://togithub.com/onedr0p/exportarr/pull/195) - Revert "fix: sabnzbd incorrect metric name" by [@​onedr0p](https://togithub.com/onedr0p) in [https://github.com/onedr0p/exportarr/pull/197](https://togithub.com/onedr0p/exportarr/pull/197) - Fix Sabnzbd issues and var instance refresh by [@​reefland](https://togithub.com/reefland) in [https://github.com/onedr0p/exportarr/pull/194](https://togithub.com/onedr0p/exportarr/pull/194) - fix: sabnzbd incorrect metric name by [@​buroa](https://togithub.com/buroa) in [https://github.com/onedr0p/exportarr/pull/198](https://togithub.com/onedr0p/exportarr/pull/198) - Update docker-compose.yaml by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/202](https://togithub.com/onedr0p/exportarr/pull/202) - chore: update docker-compose example and add scrape target example by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/203](https://togithub.com/onedr0p/exportarr/pull/203) - chore(deps): update golang docker tag to v1.21.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/200](https://togithub.com/onedr0p/exportarr/pull/200) - Update docker-compose.yaml by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/204](https://togithub.com/onedr0p/exportarr/pull/204) - Master by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/205](https://togithub.com/onedr0p/exportarr/pull/205) - chore(deps): update docker/login-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/210](https://togithub.com/onedr0p/exportarr/pull/210) - chore(deps): update docker/build-push-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/209](https://togithub.com/onedr0p/exportarr/pull/209) - chore(deps): update docker/metadata-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/211](https://togithub.com/onedr0p/exportarr/pull/211) - chore(deps): update docker/setup-buildx-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/212](https://togithub.com/onedr0p/exportarr/pull/212) - chore(deps): update docker/setup-qemu-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/213](https://togithub.com/onedr0p/exportarr/pull/213) - Add new metric for toal number of movies with an Edition set by [@​aneurinprice](https://togithub.com/aneurinprice) in [https://github.com/onedr0p/exportarr/pull/216](https://togithub.com/onedr0p/exportarr/pull/216) - chore(deps): update actions/checkout action to v4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/206](https://togithub.com/onedr0p/exportarr/pull/206) - chore(deps): update actions/checkout digest to [`8ade135`](https://togithub.com/onedr0p/exportarr/commit/8ade135) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/217](https://togithub.com/onedr0p/exportarr/pull/217) - fix(deps): update golang.org/x/exp digest to [`9212866`](https://togithub.com/onedr0p/exportarr/commit/9212866) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/191](https://togithub.com/onedr0p/exportarr/pull/191) - fix(deps): update module golang.org/x/sync to v0.3.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/189](https://togithub.com/onedr0p/exportarr/pull/189) - fix(deps): update module go.uber.org/zap to v1.26.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/201](https://togithub.com/onedr0p/exportarr/pull/201) - fix(deps): update module github.com/prometheus/client_golang to v1.17.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/190](https://togithub.com/onedr0p/exportarr/pull/190) - chore(deps): update golang docker tag to v1.21.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/207](https://togithub.com/onedr0p/exportarr/pull/207) - chore(deps): update goreleaser/goreleaser-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/208](https://togithub.com/onedr0p/exportarr/pull/208) - fix(deps): update module github.com/gookit/validate to v1.5.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/199](https://togithub.com/onedr0p/exportarr/pull/199) #### New Contributors - [@​buroa](https://togithub.com/buroa) made their first contribution in [https://github.com/onedr0p/exportarr/pull/196](https://togithub.com/onedr0p/exportarr/pull/196) - [@​ShivamB25](https://togithub.com/ShivamB25) made their first contribution in [https://github.com/onedr0p/exportarr/pull/202](https://togithub.com/onedr0p/exportarr/pull/202) **Full Changelog**: onedr0p/exportarr@v1.5.3...v1.5.5 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/hobroker/selfhosted). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | app-template | major | `2.4.0` -> `3.2.1` | | [ghcr.io/onedr0p/exportarr](https://togithub.com/onedr0p/exportarr) | major | `v1.5.3` -> `v2.0.1` | | [linuxserver/bazarr](https://togithub.com/linuxserver/docker-bazarr/packages) ([source](https://togithub.com/linuxserver/docker-bazarr)) | patch | `1.4.2` -> `1.4.3` | | [linuxserver/jellyfin](https://togithub.com/linuxserver/docker-jellyfin/packages) ([source](https://togithub.com/linuxserver/docker-jellyfin)) | minor | `10.8.13` -> `10.9.6` | | [linuxserver/plex](https://togithub.com/linuxserver/docker-plex/packages) ([source](https://togithub.com/linuxserver/docker-plex)) | patch | `1.40.1` -> `1.40.3` | | [linuxserver/radarr](https://togithub.com/linuxserver/docker-radarr/packages) ([source](https://togithub.com/linuxserver/docker-radarr)) | minor | `5.4.6-develop` -> `5.7.0-develop` | | [linuxserver/sonarr](https://togithub.com/linuxserver/docker-sonarr/packages) ([source](https://togithub.com/linuxserver/docker-sonarr)) | patch | `4.0.4-develop` -> `4.0.5-develop` | | tautulli/tautulli | minor | `v2.13.4` -> `v2.14.3` | --- ### Release Notes <details> <summary>onedr0p/exportarr (ghcr.io/onedr0p/exportarr)</summary> ### [`v2.0.1`](https://togithub.com/onedr0p/exportarr/releases/tag/v2.0.1) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v2.0.0...v2.0.1) ##### What's Changed - chore(deps): update golang docker tag to v1.22.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/277](https://togithub.com/onedr0p/exportarr/pull/277) - Minor fixes by [@​tronyx](https://togithub.com/tronyx) in [https://github.com/onedr0p/exportarr/pull/280](https://togithub.com/onedr0p/exportarr/pull/280) - fix(deps): update golang.org/x/exp digest to [`a85f2c6`](https://togithub.com/onedr0p/exportarr/commit/a85f2c6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/281](https://togithub.com/onedr0p/exportarr/pull/281) - fix(deps): update golang.org/x/exp digest to [`a685a6e`](https://togithub.com/onedr0p/exportarr/commit/a685a6e) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/282](https://togithub.com/onedr0p/exportarr/pull/282) - chore(deps): update golang docker tag to v1.22.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/285](https://togithub.com/onedr0p/exportarr/pull/285) - fix(deps): update module github.com/knadh/koanf/v2 to v2.1.1 - autoclosed by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/284](https://togithub.com/onedr0p/exportarr/pull/284) - fix(deps): update module golang.org/x/sync to v0.7.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/286](https://togithub.com/onedr0p/exportarr/pull/286) - fix(deps): update golang.org/x/exp digest to [`c0f41cb`](https://togithub.com/onedr0p/exportarr/commit/c0f41cb) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/287](https://togithub.com/onedr0p/exportarr/pull/287) ##### New Contributors - [@​tronyx](https://togithub.com/tronyx) made their first contribution in [https://github.com/onedr0p/exportarr/pull/280](https://togithub.com/onedr0p/exportarr/pull/280) **Full Changelog**: onedr0p/exportarr@v2.0.0...v2.0.1 ### [`v2.0.0`](https://togithub.com/onedr0p/exportarr/releases/tag/v2.0.0) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.2...v2.0.0) > \[!IMPORTANT] > This release removes the hardcoded `/sabnzbd` from the sabnzbd exporter. If you have sabnzbd deployed with this base URL you need to add that path into via your config. ##### What's Changed - fix(deps): update module github.com/stretchr/testify to v1.9.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/272](https://togithub.com/onedr0p/exportarr/pull/272) - add missing valid api key tests by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/274](https://togithub.com/onedr0p/exportarr/pull/274) - \[BREAKING]\[fix [#​263](https://togithub.com/onedr0p/exportarr/issues/263)]: remove hardcoded /sabnzbd from api path by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/275](https://togithub.com/onedr0p/exportarr/pull/275) **Full Changelog**: onedr0p/exportarr@v1.6.2...v1.6.3 ### [`v1.6.2`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.2) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.1...v1.6.2) ##### What's Changed - fix(deps): update module github.com/knadh/koanf/v2 to v2.0.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/260](https://togithub.com/onedr0p/exportarr/pull/260) - fix(deps): update module github.com/knadh/koanf/v2 to v2.1.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/262](https://togithub.com/onedr0p/exportarr/pull/262) - fix(deps): update module github.com/prometheus/client_golang to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/268](https://togithub.com/onedr0p/exportarr/pull/268) - fix(deps): update golang.org/x/exp digest to [`814bf88`](https://togithub.com/onedr0p/exportarr/commit/814bf88) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/261](https://togithub.com/onedr0p/exportarr/pull/261) - chore(deps): update golang docker tag to v1.22.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/264](https://togithub.com/onedr0p/exportarr/pull/264) - chore(deps): update golangci/golangci-lint-action action to v4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/265](https://togithub.com/onedr0p/exportarr/pull/265) - fix(deps): update module go.uber.org/zap to v1.27.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/267](https://togithub.com/onedr0p/exportarr/pull/267) - fix: make api-key less restrictive by [@​onedr0p](https://togithub.com/onedr0p) in [https://github.com/onedr0p/exportarr/pull/270](https://togithub.com/onedr0p/exportarr/pull/270) **Full Changelog**: onedr0p/exportarr@v1.6.1...v1.6.2 ### [`v1.6.1`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.1) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.6.0...v1.6.1) ##### What's Changed - Add tests for Radarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/234](https://togithub.com/onedr0p/exportarr/pull/234) - Add tests for Sonarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/235](https://togithub.com/onedr0p/exportarr/pull/235) - Add tests for Readarr by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/236](https://togithub.com/onedr0p/exportarr/pull/236) - doc(README): remove typo by [@​Deep145757](https://togithub.com/Deep145757) in [https://github.com/onedr0p/exportarr/pull/240](https://togithub.com/onedr0p/exportarr/pull/240) - chore(deps): update golang docker tag to v1.21.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/242](https://togithub.com/onedr0p/exportarr/pull/242) - chore(deps): update actions/setup-go action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/248](https://togithub.com/onedr0p/exportarr/pull/248) - chore(deps): update golang docker tag to v1.21.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/247](https://togithub.com/onedr0p/exportarr/pull/247) - chore(deps): update actions/checkout digest to [`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/233](https://togithub.com/onedr0p/exportarr/pull/233) - \[bazarr] Add bounded concurrency to episodes endpoint by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/238](https://togithub.com/onedr0p/exportarr/pull/238) - chore(deps): update golangci/golangci-lint-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/257](https://togithub.com/onedr0p/exportarr/pull/257) - fix: add `gomodTidy` option to renovate by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/258](https://togithub.com/onedr0p/exportarr/pull/258) - fix(deps): update module github.com/gookit/validate to v1.5.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/253](https://togithub.com/onedr0p/exportarr/pull/253) - chore(deps): update actions/setup-go action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/256](https://togithub.com/onedr0p/exportarr/pull/256) - chore(deps): update actions/checkout digest to [`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/255](https://togithub.com/onedr0p/exportarr/pull/255) - fix(deps): update module github.com/prometheus/client_golang to v1.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/250](https://togithub.com/onedr0p/exportarr/pull/250) - fix(deps): update module golang.org/x/sync to v0.6.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/220](https://togithub.com/onedr0p/exportarr/pull/220) - fix(deps): update module github.com/spf13/cobra to v1.8.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/241](https://togithub.com/onedr0p/exportarr/pull/241) - fix(deps): update golang.org/x/exp digest to [`1b97071`](https://togithub.com/onedr0p/exportarr/commit/1b97071) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/243](https://togithub.com/onedr0p/exportarr/pull/243) - chore(deps): update golang docker tag to v1.21.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/251](https://togithub.com/onedr0p/exportarr/pull/251) - fix([#​252](https://togithub.com/onedr0p/exportarr/issues/252)): Handle an empty Server Stat map returned from Sab. by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/259](https://togithub.com/onedr0p/exportarr/pull/259) ##### New Contributors - [@​Deep145757](https://togithub.com/Deep145757) made their first contribution in [https://github.com/onedr0p/exportarr/pull/240](https://togithub.com/onedr0p/exportarr/pull/240) **Full Changelog**: onedr0p/exportarr@v1.6.0...v1.6.1 ### [`v1.6.0`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.6.0) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.5.5...v1.6.0) #### What's Changed - chore(deps): update golang docker tag to v1.21.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/222](https://togithub.com/onedr0p/exportarr/pull/222) - Allow selection of prometheus datasource in dashboard 1 by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/224](https://togithub.com/onedr0p/exportarr/pull/224) - Feature/support bazarr by [@​phyzical](https://togithub.com/phyzical) in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) - Separate PR & Merge Workflows by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/225](https://togithub.com/onedr0p/exportarr/pull/225) - Extend client to allow multi-value query parameters by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/226](https://togithub.com/onedr0p/exportarr/pull/226) - Add golangci-lint, fix lint warnings by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/227](https://togithub.com/onedr0p/exportarr/pull/227) - chore(deps): update golang docker tag to v1.21.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/229](https://togithub.com/onedr0p/exportarr/pull/229) - fix(deps): update golang.org/x/exp digest to [`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/221](https://togithub.com/onedr0p/exportarr/pull/221) - fix: Fix [#​230](https://togithub.com/onedr0p/exportarr/issues/230), Add tests for shared collectors by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/231](https://togithub.com/onedr0p/exportarr/pull/231) - Only set `latest` tag on version bump by [@​rtrox](https://togithub.com/rtrox) in [https://github.com/onedr0p/exportarr/pull/232](https://togithub.com/onedr0p/exportarr/pull/232) #### New Contributors - [@​phyzical](https://togithub.com/phyzical) made their first contribution in [https://github.com/onedr0p/exportarr/pull/214](https://togithub.com/onedr0p/exportarr/pull/214) **Full Changelog**: onedr0p/exportarr@v1.5.5...v1.6.0 ### [`v1.5.5`](https://togithub.com/onedr0p/exportarr/releases/tag/v1.5.5) [Compare Source](https://togithub.com/onedr0p/exportarr/compare/v1.5.3...v1.5.5) #### What's Changed - fix dashboard2 for single instances by [@​Kariton](https://togithub.com/Kariton) in [https://github.com/onedr0p/exportarr/pull/192](https://togithub.com/onedr0p/exportarr/pull/192) - fix: sabnzbd incorrect metric name by [@​buroa](https://togithub.com/buroa) in [https://github.com/onedr0p/exportarr/pull/196](https://togithub.com/onedr0p/exportarr/pull/196) - chore(deps): update golang docker tag to v1.20.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/195](https://togithub.com/onedr0p/exportarr/pull/195) - Revert "fix: sabnzbd incorrect metric name" by [@​onedr0p](https://togithub.com/onedr0p) in [https://github.com/onedr0p/exportarr/pull/197](https://togithub.com/onedr0p/exportarr/pull/197) - Fix Sabnzbd issues and var instance refresh by [@​reefland](https://togithub.com/reefland) in [https://github.com/onedr0p/exportarr/pull/194](https://togithub.com/onedr0p/exportarr/pull/194) - fix: sabnzbd incorrect metric name by [@​buroa](https://togithub.com/buroa) in [https://github.com/onedr0p/exportarr/pull/198](https://togithub.com/onedr0p/exportarr/pull/198) - Update docker-compose.yaml by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/202](https://togithub.com/onedr0p/exportarr/pull/202) - chore: update docker-compose example and add scrape target example by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/203](https://togithub.com/onedr0p/exportarr/pull/203) - chore(deps): update golang docker tag to v1.21.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/200](https://togithub.com/onedr0p/exportarr/pull/200) - Update docker-compose.yaml by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/204](https://togithub.com/onedr0p/exportarr/pull/204) - Master by [@​ShivamB25](https://togithub.com/ShivamB25) in [https://github.com/onedr0p/exportarr/pull/205](https://togithub.com/onedr0p/exportarr/pull/205) - chore(deps): update docker/login-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/210](https://togithub.com/onedr0p/exportarr/pull/210) - chore(deps): update docker/build-push-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/209](https://togithub.com/onedr0p/exportarr/pull/209) - chore(deps): update docker/metadata-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/211](https://togithub.com/onedr0p/exportarr/pull/211) - chore(deps): update docker/setup-buildx-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/212](https://togithub.com/onedr0p/exportarr/pull/212) - chore(deps): update docker/setup-qemu-action action to v3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/213](https://togithub.com/onedr0p/exportarr/pull/213) - Add new metric for toal number of movies with an Edition set by [@​aneurinprice](https://togithub.com/aneurinprice) in [https://github.com/onedr0p/exportarr/pull/216](https://togithub.com/onedr0p/exportarr/pull/216) - chore(deps): update actions/checkout action to v4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/206](https://togithub.com/onedr0p/exportarr/pull/206) - chore(deps): update actions/checkout digest to [`8ade135`](https://togithub.com/onedr0p/exportarr/commit/8ade135) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/217](https://togithub.com/onedr0p/exportarr/pull/217) - fix(deps): update golang.org/x/exp digest to [`9212866`](https://togithub.com/onedr0p/exportarr/commit/9212866) by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/191](https://togithub.com/onedr0p/exportarr/pull/191) - fix(deps): update module golang.org/x/sync to v0.3.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/189](https://togithub.com/onedr0p/exportarr/pull/189) - fix(deps): update module go.uber.org/zap to v1.26.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/201](https://togithub.com/onedr0p/exportarr/pull/201) - fix(deps): update module github.com/prometheus/client_golang to v1.17.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/190](https://togithub.com/onedr0p/exportarr/pull/190) - chore(deps): update golang docker tag to v1.21.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/207](https://togithub.com/onedr0p/exportarr/pull/207) - chore(deps): update goreleaser/goreleaser-action action to v5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/208](https://togithub.com/onedr0p/exportarr/pull/208) - fix(deps): update module github.com/gookit/validate to v1.5.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/onedr0p/exportarr/pull/199](https://togithub.com/onedr0p/exportarr/pull/199) #### New Contributors - [@​buroa](https://togithub.com/buroa) made their first contribution in [https://github.com/onedr0p/exportarr/pull/196](https://togithub.com/onedr0p/exportarr/pull/196) - [@​ShivamB25](https://togithub.com/ShivamB25) made their first contribution in [https://github.com/onedr0p/exportarr/pull/202](https://togithub.com/onedr0p/exportarr/pull/202) **Full Changelog**: onedr0p/exportarr@v1.5.3...v1.5.5 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/hobroker/selfhosted). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Igor Leahu <4361921+hobroker@users.noreply.github.com>
Description of the change
Support Bazarr metrics
Most of the changes are isolated to bazarr specific code flow except the change around the param handling,
see this commit
I think this change should be safe as itll just work as it did before without any ,
This was required as i couldn't figure out any way to provide multiple ids to the same parameter. as without it the pull was talking around 10 minutes (getting all series, looping all series then having to get all episodes then looping those ), after pulling all episodes at once it went down to 20 seconds and bazaars api doesnt support getting all items.
Also added a makefile for quick dev "up and go", but i can revert this and add it to the gitignore if you prefer
Possible drawbacks
requires changes in morpheus65535/bazarr#2252 to support filesize and support
/v1
Applicable issues
closes #6
Additional information
Still need todo the tests but wanted to get some eyes on this in its current state.
i gave async a go (similar to how the sab collector does things) but it actually ran slower so i ditched those changes.
it sits at around 210/220 MB when its scrapping incase memory needs to be benchmarked
Also this is my second time playing with golang so i open to any feedback
Thanks!