Skip to content
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

Merged
merged 23 commits into from
Oct 8, 2023
Merged

Conversation

phyzical
Copy link
Contributor

@phyzical phyzical commented Sep 23, 2023

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
image

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!

internal/client/client.go Outdated Show resolved Hide resolved
@onedr0p
Copy link
Owner

onedr0p commented Sep 23, 2023

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

@phyzical
Copy link
Contributor Author

@onedr0p no rush :)

@phyzical
Copy link
Contributor Author

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..

@onedr0p
Copy link
Owner

onedr0p commented Sep 25, 2023

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
README.md Show resolved Hide resolved
@@ -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:
Copy link
Contributor Author

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

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me!

Copy link
Collaborator

@rtrox rtrox Oct 8, 2023

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.

.env.dist Outdated Show resolved Hide resolved
.gitignore Outdated Show resolved Hide resolved
Copy link
Owner

@onedr0p onedr0p left a 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.

internal/client/client.go Outdated Show resolved Hide resolved
internal/arr/collector/bazarr_test.go Show resolved Hide resolved
@@ -0,0 +1,15 @@
-include .env
Copy link
Collaborator

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!

@rtrox
Copy link
Collaborator

rtrox commented Oct 3, 2023

The test failure is just yelling because go.mod isn't consistent with the code. if you run go mod tidy real quick, that test should pass.

@phyzical
Copy link
Contributor Author

phyzical commented Oct 4, 2023

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

Copy link
Collaborator

@rtrox rtrox left a 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:
Copy link
Collaborator

@rtrox rtrox Oct 8, 2023

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.

@onedr0p onedr0p merged commit b8b7cc6 into onedr0p:master Oct 8, 2023
2 checks passed
@phyzical
Copy link
Contributor Author

phyzical commented Oct 8, 2023

@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

spiceratops added a commit to spiceratops/k8s-gitops that referenced this pull request Oct 21, 2023
[![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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#222
- Allow selection of prometheus datasource in dashboard 1 by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#224
- Feature/support bazarr by
[@&#8203;phyzical](https://togithub.com/phyzical) in
[onedr0p/exportarr#214
- Separate PR & Merge Workflows by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#225
- Extend client to allow multi-value query parameters by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#226
- Add golangci-lint, fix lint warnings by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#227
- chore(deps): update golang docker tag to v1.21.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#229
- fix(deps): update golang.org/x/exp digest to
[`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#221
- fix: Fix
[#&#8203;230](https://togithub.com/onedr0p/exportarr/issues/230), Add
tests for shared collectors by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#231
- Only set `latest` tag on version bump by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#232

#### New Contributors

- [@&#8203;phyzical](https://togithub.com/phyzical) made their first
contribution in
[onedr0p/exportarr#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==-->
hobroker pushed a commit to hobroker/selfhosted that referenced this pull request Jun 23, 2024
[![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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#277
- Minor fixes by [@&#8203;tronyx](https://togithub.com/tronyx) in
[onedr0p/exportarr#280
- fix(deps): update golang.org/x/exp digest to
[`a85f2c6`](https://togithub.com/onedr0p/exportarr/commit/a85f2c6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#281
- fix(deps): update golang.org/x/exp digest to
[`a685a6e`](https://togithub.com/onedr0p/exportarr/commit/a685a6e) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#282
- chore(deps): update golang docker tag to v1.22.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#285
- fix(deps): update module github.com/knadh/koanf/v2 to v2.1.1 -
autoclosed by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#284
- fix(deps): update module golang.org/x/sync to v0.7.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#286
- fix(deps): update golang.org/x/exp digest to
[`c0f41cb`](https://togithub.com/onedr0p/exportarr/commit/c0f41cb) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#287

#### New Contributors

- [@&#8203;tronyx](https://togithub.com/tronyx) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#272
- add missing valid api key tests by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#274
- \[BREAKING]\[fix
[#&#8203;263](https://togithub.com/onedr0p/exportarr/issues/263)]:
remove hardcoded /sabnzbd from api path by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#260
- fix(deps): update module github.com/knadh/koanf/v2 to v2.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#262
- fix(deps): update module github.com/prometheus/client_golang to
v1.19.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#268
- fix(deps): update golang.org/x/exp digest to
[`814bf88`](https://togithub.com/onedr0p/exportarr/commit/814bf88) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#261
- chore(deps): update golang docker tag to v1.22.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#264
- chore(deps): update golangci/golangci-lint-action action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#265
- fix(deps): update module go.uber.org/zap to v1.27.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#267
- fix: make api-key less restrictive by
[@&#8203;onedr0p](https://togithub.com/onedr0p) in
[onedr0p/exportarr#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 [@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#234
- Add tests for Sonarr by [@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#235
- Add tests for Readarr by [@&#8203;rtrox](https://togithub.com/rtrox)
in
[onedr0p/exportarr#236
- doc(README): remove typo by
[@&#8203;Deep145757](https://togithub.com/Deep145757) in
[onedr0p/exportarr#240
- chore(deps): update golang docker tag to v1.21.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#242
- chore(deps): update actions/setup-go action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#248
- chore(deps): update golang docker tag to v1.21.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#247
- chore(deps): update actions/checkout digest to
[`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#233
- \[bazarr] Add bounded concurrency to episodes endpoint by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#238
- chore(deps): update golangci/golangci-lint-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#257
- fix: add `gomodTidy` option to renovate by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#258
- fix(deps): update module github.com/gookit/validate to v1.5.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#253
- chore(deps): update actions/setup-go action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#256
- chore(deps): update actions/checkout digest to
[`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#255
- fix(deps): update module github.com/prometheus/client_golang to
v1.18.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#250
- fix(deps): update module golang.org/x/sync to v0.6.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#220
- fix(deps): update module github.com/spf13/cobra to v1.8.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#241
- fix(deps): update golang.org/x/exp digest to
[`1b97071`](https://togithub.com/onedr0p/exportarr/commit/1b97071) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#243
- chore(deps): update golang docker tag to v1.21.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#251
- fix([#&#8203;252](https://togithub.com/onedr0p/exportarr/issues/252)):
Handle an empty Server Stat map returned from Sab. by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#259

#### New Contributors

- [@&#8203;Deep145757](https://togithub.com/Deep145757) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#222
- Allow selection of prometheus datasource in dashboard 1 by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#224
- Feature/support bazarr by
[@&#8203;phyzical](https://togithub.com/phyzical) in
[onedr0p/exportarr#214
- Separate PR & Merge Workflows by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#225
- Extend client to allow multi-value query parameters by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#226
- Add golangci-lint, fix lint warnings by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#227
- chore(deps): update golang docker tag to v1.21.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#229
- fix(deps): update golang.org/x/exp digest to
[`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#221
- fix: Fix
[#&#8203;230](https://togithub.com/onedr0p/exportarr/issues/230), Add
tests for shared collectors by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#231
- Only set `latest` tag on version bump by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#232

#### New Contributors

- [@&#8203;phyzical](https://togithub.com/phyzical) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;Kariton](https://togithub.com/Kariton) in
[onedr0p/exportarr#192
- fix: sabnzbd incorrect metric name by
[@&#8203;buroa](https://togithub.com/buroa) in
[onedr0p/exportarr#196
- chore(deps): update golang docker tag to v1.20.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#195
- Revert "fix: sabnzbd incorrect metric name" by
[@&#8203;onedr0p](https://togithub.com/onedr0p) in
[onedr0p/exportarr#197
- Fix Sabnzbd issues and var instance refresh by
[@&#8203;reefland](https://togithub.com/reefland) in
[onedr0p/exportarr#194
- fix: sabnzbd incorrect metric name by
[@&#8203;buroa](https://togithub.com/buroa) in
[onedr0p/exportarr#198
- Update docker-compose.yaml by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#202
- chore: update docker-compose example and add scrape target example by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#203
- chore(deps): update golang docker tag to v1.21.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#200
- Update docker-compose.yaml by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#204
- Master by [@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#205
- chore(deps): update docker/login-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#210
- chore(deps): update docker/build-push-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#209
- chore(deps): update docker/metadata-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#211
- chore(deps): update docker/setup-buildx-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#212
- chore(deps): update docker/setup-qemu-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#213
- Add new metric for toal number of movies with an Edition set by
[@&#8203;aneurinprice](https://togithub.com/aneurinprice) in
[onedr0p/exportarr#216
- chore(deps): update actions/checkout action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#206
- chore(deps): update actions/checkout digest to
[`8ade135`](https://togithub.com/onedr0p/exportarr/commit/8ade135) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#217
- fix(deps): update golang.org/x/exp digest to
[`9212866`](https://togithub.com/onedr0p/exportarr/commit/9212866) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#191
- fix(deps): update module golang.org/x/sync to v0.3.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#189
- fix(deps): update module go.uber.org/zap to v1.26.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#201
- fix(deps): update module github.com/prometheus/client_golang to
v1.17.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#190
- chore(deps): update golang docker tag to v1.21.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#207
- chore(deps): update goreleaser/goreleaser-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#208
- fix(deps): update module github.com/gookit/validate to v1.5.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#199

#### New Contributors

- [@&#8203;buroa](https://togithub.com/buroa) made their first
contribution in
[onedr0p/exportarr#196
- [@&#8203;ShivamB25](https://togithub.com/ShivamB25) made their first
contribution in
[onedr0p/exportarr#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>
hobroker added a commit to hobroker/selfhosted that referenced this pull request Jun 23, 2024
[![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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#277
- Minor fixes by [@&#8203;tronyx](https://togithub.com/tronyx) in
[onedr0p/exportarr#280
- fix(deps): update golang.org/x/exp digest to
[`a85f2c6`](https://togithub.com/onedr0p/exportarr/commit/a85f2c6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#281
- fix(deps): update golang.org/x/exp digest to
[`a685a6e`](https://togithub.com/onedr0p/exportarr/commit/a685a6e) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#282
- chore(deps): update golang docker tag to v1.22.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#285
- fix(deps): update module github.com/knadh/koanf/v2 to v2.1.1 -
autoclosed by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#284
- fix(deps): update module golang.org/x/sync to v0.7.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#286
- fix(deps): update golang.org/x/exp digest to
[`c0f41cb`](https://togithub.com/onedr0p/exportarr/commit/c0f41cb) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#287

##### New Contributors

- [@&#8203;tronyx](https://togithub.com/tronyx) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#272
- add missing valid api key tests by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#274
- \[BREAKING]\[fix
[#&#8203;263](https://togithub.com/onedr0p/exportarr/issues/263)]:
remove hardcoded /sabnzbd from api path by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#260
- fix(deps): update module github.com/knadh/koanf/v2 to v2.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#262
- fix(deps): update module github.com/prometheus/client_golang to
v1.19.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#268
- fix(deps): update golang.org/x/exp digest to
[`814bf88`](https://togithub.com/onedr0p/exportarr/commit/814bf88) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#261
- chore(deps): update golang docker tag to v1.22.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#264
- chore(deps): update golangci/golangci-lint-action action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#265
- fix(deps): update module go.uber.org/zap to v1.27.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#267
- fix: make api-key less restrictive by
[@&#8203;onedr0p](https://togithub.com/onedr0p) in
[onedr0p/exportarr#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 [@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#234
- Add tests for Sonarr by [@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#235
- Add tests for Readarr by [@&#8203;rtrox](https://togithub.com/rtrox)
in
[onedr0p/exportarr#236
- doc(README): remove typo by
[@&#8203;Deep145757](https://togithub.com/Deep145757) in
[onedr0p/exportarr#240
- chore(deps): update golang docker tag to v1.21.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#242
- chore(deps): update actions/setup-go action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#248
- chore(deps): update golang docker tag to v1.21.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#247
- chore(deps): update actions/checkout digest to
[`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#233
- \[bazarr] Add bounded concurrency to episodes endpoint by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#238
- chore(deps): update golangci/golangci-lint-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#257
- fix: add `gomodTidy` option to renovate by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#258
- fix(deps): update module github.com/gookit/validate to v1.5.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#253
- chore(deps): update actions/setup-go action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#256
- chore(deps): update actions/checkout digest to
[`b4ffde6`](https://togithub.com/onedr0p/exportarr/commit/b4ffde6) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#255
- fix(deps): update module github.com/prometheus/client_golang to
v1.18.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#250
- fix(deps): update module golang.org/x/sync to v0.6.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#220
- fix(deps): update module github.com/spf13/cobra to v1.8.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#241
- fix(deps): update golang.org/x/exp digest to
[`1b97071`](https://togithub.com/onedr0p/exportarr/commit/1b97071) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#243
- chore(deps): update golang docker tag to v1.21.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#251
- fix([#&#8203;252](https://togithub.com/onedr0p/exportarr/issues/252)):
Handle an empty Server Stat map returned from Sab. by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#259

##### New Contributors

- [@&#8203;Deep145757](https://togithub.com/Deep145757) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#222
- Allow selection of prometheus datasource in dashboard 1 by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#224
- Feature/support bazarr by
[@&#8203;phyzical](https://togithub.com/phyzical) in
[onedr0p/exportarr#214
- Separate PR & Merge Workflows by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#225
- Extend client to allow multi-value query parameters by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#226
- Add golangci-lint, fix lint warnings by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#227
- chore(deps): update golang docker tag to v1.21.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#229
- fix(deps): update golang.org/x/exp digest to
[`7918f67`](https://togithub.com/onedr0p/exportarr/commit/7918f67) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#221
- fix: Fix
[#&#8203;230](https://togithub.com/onedr0p/exportarr/issues/230), Add
tests for shared collectors by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#231
- Only set `latest` tag on version bump by
[@&#8203;rtrox](https://togithub.com/rtrox) in
[onedr0p/exportarr#232

#### New Contributors

- [@&#8203;phyzical](https://togithub.com/phyzical) made their first
contribution in
[onedr0p/exportarr#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
[@&#8203;Kariton](https://togithub.com/Kariton) in
[onedr0p/exportarr#192
- fix: sabnzbd incorrect metric name by
[@&#8203;buroa](https://togithub.com/buroa) in
[onedr0p/exportarr#196
- chore(deps): update golang docker tag to v1.20.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#195
- Revert "fix: sabnzbd incorrect metric name" by
[@&#8203;onedr0p](https://togithub.com/onedr0p) in
[onedr0p/exportarr#197
- Fix Sabnzbd issues and var instance refresh by
[@&#8203;reefland](https://togithub.com/reefland) in
[onedr0p/exportarr#194
- fix: sabnzbd incorrect metric name by
[@&#8203;buroa](https://togithub.com/buroa) in
[onedr0p/exportarr#198
- Update docker-compose.yaml by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#202
- chore: update docker-compose example and add scrape target example by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#203
- chore(deps): update golang docker tag to v1.21.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#200
- Update docker-compose.yaml by
[@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#204
- Master by [@&#8203;ShivamB25](https://togithub.com/ShivamB25) in
[onedr0p/exportarr#205
- chore(deps): update docker/login-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#210
- chore(deps): update docker/build-push-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#209
- chore(deps): update docker/metadata-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#211
- chore(deps): update docker/setup-buildx-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#212
- chore(deps): update docker/setup-qemu-action action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#213
- Add new metric for toal number of movies with an Edition set by
[@&#8203;aneurinprice](https://togithub.com/aneurinprice) in
[onedr0p/exportarr#216
- chore(deps): update actions/checkout action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#206
- chore(deps): update actions/checkout digest to
[`8ade135`](https://togithub.com/onedr0p/exportarr/commit/8ade135) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#217
- fix(deps): update golang.org/x/exp digest to
[`9212866`](https://togithub.com/onedr0p/exportarr/commit/9212866) by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#191
- fix(deps): update module golang.org/x/sync to v0.3.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#189
- fix(deps): update module go.uber.org/zap to v1.26.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#201
- fix(deps): update module github.com/prometheus/client_golang to
v1.17.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#190
- chore(deps): update golang docker tag to v1.21.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#207
- chore(deps): update goreleaser/goreleaser-action action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#208
- fix(deps): update module github.com/gookit/validate to v1.5.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[onedr0p/exportarr#199

#### New Contributors

- [@&#8203;buroa](https://togithub.com/buroa) made their first
contribution in
[onedr0p/exportarr#196
- [@&#8203;ShivamB25](https://togithub.com/ShivamB25) made their first
contribution in
[onedr0p/exportarr#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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Integrate Bazarr
3 participants