Skip to content

Commit 528db09

Browse files
committed
chore: prepare for 2.5.2
2 parents 5663ac1 + 2f6be95 commit 528db09

File tree

48 files changed

+1513
-358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1513
-358
lines changed

.all-contributorsrc

Lines changed: 101 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,8 @@
249249
"avatar_url": "https://avatars.githubusercontent.com/u/854646?v=4",
250250
"profile": "http://www.piribisoft.com",
251251
"contributions": [
252-
"doc"
252+
"doc",
253+
"code"
253254
]
254255
},
255256
{
@@ -711,6 +712,105 @@
711712
"contributions": [
712713
"code"
713714
]
715+
},
716+
{
717+
"login": "j0srisk",
718+
"name": "Joseph Risk",
719+
"avatar_url": "https://avatars.githubusercontent.com/u/18372584?v=4",
720+
"profile": "http://josephrisk.com",
721+
"contributions": [
722+
"code"
723+
]
724+
},
725+
{
726+
"login": "Loetwiek",
727+
"name": "Loetwiek",
728+
"avatar_url": "https://avatars.githubusercontent.com/u/79059734?v=4",
729+
"profile": "https://github.com/Loetwiek",
730+
"contributions": [
731+
"code"
732+
]
733+
},
734+
{
735+
"login": "Fuochi",
736+
"name": "Fuochi",
737+
"avatar_url": "https://avatars.githubusercontent.com/u/4720478?v=4",
738+
"profile": "https://github.com/Fuochi",
739+
"contributions": [
740+
"doc"
741+
]
742+
},
743+
{
744+
"login": "demrich",
745+
"name": "David Emrich",
746+
"avatar_url": "https://avatars.githubusercontent.com/u/30092389?v=4",
747+
"profile": "https://github.com/demrich",
748+
"contributions": [
749+
"code"
750+
]
751+
},
752+
{
753+
"login": "maxnatamo",
754+
"name": "Max T. Kristiansen",
755+
"avatar_url": "https://avatars.githubusercontent.com/u/5898152?v=4",
756+
"profile": "https://maxtrier.dk",
757+
"contributions": [
758+
"code"
759+
]
760+
},
761+
{
762+
"login": "DamsDev1",
763+
"name": "Damien Fajole",
764+
"avatar_url": "https://avatars.githubusercontent.com/u/60252259?v=4",
765+
"profile": "https://damsdev.me",
766+
"contributions": [
767+
"code"
768+
]
769+
},
770+
{
771+
"login": "AhmedNSidd",
772+
"name": "Ahmed Siddiqui",
773+
"avatar_url": "https://avatars.githubusercontent.com/u/36286128?v=4",
774+
"profile": "https://github.com/AhmedNSidd",
775+
"contributions": [
776+
"code"
777+
]
778+
},
779+
{
780+
"login": "JackW6809",
781+
"name": "JackOXI",
782+
"avatar_url": "https://avatars.githubusercontent.com/u/53652452?v=4",
783+
"profile": "https://github.com/JackW6809",
784+
"contributions": [
785+
"code"
786+
]
787+
},
788+
{
789+
"login": "StancuFlorin",
790+
"name": "Stancu Florin",
791+
"avatar_url": "https://avatars.githubusercontent.com/u/1199404?v=4",
792+
"profile": "http://indicus.ro",
793+
"contributions": [
794+
"code"
795+
]
796+
},
797+
{
798+
"login": "lmiklosko",
799+
"name": "Lukas Miklosko",
800+
"avatar_url": "https://avatars.githubusercontent.com/u/44380311?v=4",
801+
"profile": "https://github.com/lmiklosko",
802+
"contributions": [
803+
"code"
804+
]
805+
},
806+
{
807+
"login": "gauthier-th",
808+
"name": "Gauthier",
809+
"avatar_url": "https://avatars.githubusercontent.com/u/37781713?v=4",
810+
"profile": "https://gauthierth.fr/",
811+
"contributions": [
812+
"code"
813+
]
714814
}
715815
]
716816
}

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ jobs:
9898
push: true
9999
build-args: |
100100
COMMIT_TAG=${{ github.sha }}
101+
BUILD_VERSION=develop
102+
BUILD_DATE=${{ github.event.repository.updated_at }}
101103
outputs: |
102104
type=image,push-by-digest=true,name=fallenbagel/jellyseerr,push=true
103105
type=image,push-by-digest=true,name=ghcr.io/${{ env.OWNER_LC }}/jellyseerr,push=true

.github/workflows/preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,7 @@ jobs:
3333
push: true
3434
build-args: |
3535
COMMIT_TAG=${{ github.sha }}
36+
BUILD_VERSION=${{ steps.get_version.outputs.VERSION }}
37+
BUILD_DATE=${{ github.event.repository.updated_at }}
3638
tags: |
3739
fallenbagel/jellyseerr:${{ steps.get_version.outputs.VERSION }}

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,27 @@ All help is welcome and greatly appreciated! If you would like to contribute to
5858

5959
- Be sure to follow both the [code](#contributing-code) and [UI text](#ui-text-style) guidelines.
6060
- Should you need to update your fork, you can do so by rebasing from `upstream`:
61+
6162
```bash
6263
git fetch upstream
6364
git rebase upstream/develop
6465
git push origin BRANCH_NAME -f
6566
```
6667

68+
### Helm Chart
69+
70+
Tools Required:
71+
72+
- [Helm](https://helm.sh/docs/intro/install/)
73+
- [helm-docs](https://github.com/norwoodj/helm-docs)
74+
75+
Steps:
76+
77+
1. Make the necessary changes.
78+
2. Test your changes.
79+
3. Update the `version` in `charts/jellyseerr-chart/Chart.yaml` following [Semantic Versioning (SemVer)](https://semver.org/).
80+
4. Run the `helm-docs` command to regenerate the chart's README.
81+
6782
### Contributing Code
6883
6984
- If you are taking on an existing bug or feature ticket, please comment on the [issue](https://github.com/fallenbagel/jellyseerr/issues) to avoid multiple people working on the same thing.

Dockerfile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,17 @@ RUN echo "{\"commitTag\": \"${COMMIT_TAG}\"}" > committag.json
3838

3939
FROM node:22-alpine
4040

41-
# Metadata for Github Package Registry
42-
LABEL org.opencontainers.image.source="https://github.com/Fallenbagel/jellyseerr"
41+
# OCI Meta information
42+
ARG BUILD_DATE
43+
ARG BUILD_VERSION
44+
LABEL \
45+
org.opencontainers.image.authors="Fallenbagel" \
46+
org.opencontainers.image.source="https://github.com/fallenbagel/jellyseerr" \
47+
org.opencontainers.image.created=${BUILD_DATE} \
48+
org.opencontainers.image.version=${BUILD_VERSION} \
49+
org.opencontainers.image.title="Jellyseerr" \
50+
org.opencontainers.image.description="Open-source media request and discovery manager for Jellyfin, Plex, and Emby." \
51+
org.opencontainers.image.licenses="MIT"
4352

4453
WORKDIR /app
4554

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ Thanks goes to these wonderful people from Overseerr ([emoji key](https://allcon
335335
<td align="center" valign="top" width="14.28%"><a href="https://github.com/AhmedNSidd"><img src="https://avatars.githubusercontent.com/u/36286128?v=4?s=100" width="100px;" alt="Ahmed Siddiqui"/><br /><sub><b>Ahmed Siddiqui</b></sub></a><br /><a href="https://github.com/sct/overseerr/commits?author=AhmedNSidd" title="Code">💻</a></td>
336336
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JackW6809"><img src="https://avatars.githubusercontent.com/u/53652452?v=4?s=100" width="100px;" alt="JackOXI"/><br /><sub><b>JackOXI</b></sub></a><br /><a href="https://github.com/sct/overseerr/commits?author=JackW6809" title="Code">💻</a></td>
337337
<td align="center" valign="top" width="14.28%"><a href="http://indicus.ro"><img src="https://avatars.githubusercontent.com/u/1199404?v=4?s=100" width="100px;" alt="Stancu Florin"/><br /><sub><b>Stancu Florin</b></sub></a><br /><a href="https://github.com/sct/overseerr/commits?author=StancuFlorin" title="Code">💻</a></td>
338+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lmiklosko"><img src="https://avatars.githubusercontent.com/u/44380311?v=4?s=100" width="100px;" alt="Lukas Miklosko"/><br /><sub><b>Lukas Miklosko</b></sub></a><br /><a href="https://github.com/sct/overseerr/commits?author=lmiklosko" title="Code">💻</a></td>
339+
<td align="center" valign="top" width="14.28%"><a href="https://gauthierth.fr/"><img src="https://avatars.githubusercontent.com/u/37781713?v=4?s=100" width="100px;" alt="Gauthier"/><br /><sub><b>Gauthier</b></sub></a><br /><a href="https://github.com/sct/overseerr/commits?author=gauthier-th" title="Code">💻</a></td>
338340
</tr>
339341
</tbody>
340342
</table>

charts/jellyseerr-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kubeVersion: ">=1.23.0-0"
33
name: jellyseerr-chart
44
description: Jellyseerr helm chart for Kubernetes
55
type: application
6-
version: 2.3.0
7-
appVersion: "2.5.0"
6+
version: 2.3.2
7+
appVersion: "2.5.1"
88
maintainers:
99
- name: Jellyseerr
1010
url: https://github.com/Fallenbagel/jellyseerr

charts/jellyseerr-chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jellyseerr-chart
22

3-
![Version: 2.3.0](https://img.shields.io/badge/Version-2.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
3+
![Version: 2.3.2](https://img.shields.io/badge/Version-2.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.1](https://img.shields.io/badge/AppVersion-2.5.1-informational?style=flat-square)
44

55
Jellyseerr helm chart for Kubernetes
66

charts/jellyseerr-chart/templates/persistentvolumeclaim.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ metadata:
44
name: {{ include "jellyseerr.configPersistenceName" . }}
55
labels:
66
{{- include "jellyseerr.labels" . | nindent 4 }}
7+
{{- with .Values.config.persistence.annotations }}
8+
annotations:
9+
{{- toYaml . | nindent 4 }}
10+
{{- end }}
711
spec:
812
{{- with .Values.config.persistence.accessModes }}
913
accessModes:

docs/getting-started/docker.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docker run -d \
3737
-p 5055:5055 \
3838
-v /path/to/appdata/config:/app/config \
3939
--restart unless-stopped \
40-
fallenbagel/jellyseerr
40+
ghcr.io/fallenbagel/jellyseerr
4141
```
4242
:::tip
4343
If you are using emby, make sure to set the `JELLYFIN_TYPE` environment variable to `emby`.
@@ -55,7 +55,7 @@ docker stop jellyseerr && docker rm Jellyseerr
5555
```
5656
Pull the latest image:
5757
```bash
58-
docker pull fallenbagel/jellyseerr
58+
docker pull ghcr.io/fallenbagel/jellyseerr
5959
```
6060
Finally, run the container with the same parameters originally used to create the container:
6161
```bash
@@ -78,7 +78,7 @@ Define the `jellyseerr` service in your `compose.yaml` as follows:
7878
---
7979
services:
8080
jellyseerr:
81-
image: fallenbagel/jellyseerr:latest
81+
image: ghcr.io/fallenbagel/jellyseerr:latest
8282
container_name: jellyseerr
8383
environment:
8484
- LOG_LEVEL=debug
@@ -146,7 +146,7 @@ Then, create and start the Jellyseerr container:
146146
<Tabs groupId="docker-methods" queryString>
147147
<TabItem value="docker-cli" label="Docker CLI">
148148
```bash
149-
docker run -d --name jellyseerr -e LOG_LEVEL=debug -e TZ=Asia/Tashkent -p 5055:5055 -v "jellyseerr-data:/app/config" --restart unless-stopped fallenbagel/jellyseerr:latest
149+
docker run -d --name jellyseerr -e LOG_LEVEL=debug -e TZ=Asia/Tashkent -p 5055:5055 -v "jellyseerr-data:/app/config" --restart unless-stopped ghcr.io/fallenbagel/jellyseerr:latest
150150
```
151151

152152
#### Updating:

0 commit comments

Comments
 (0)