Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7f393dd
feat: add Docker image publishing to CI pipeline
claude Mar 23, 2026
4b3e126
fix: update actions/checkout to v4 in docker job
claude Mar 24, 2026
5db9ff9
fix: guard Docker image push to master/develop branches only
claude Mar 24, 2026
2861dff
Merge pull request #5355 from Ombi-app/claude/docker-image-publishing…
tidusjar Mar 24, 2026
5872161
Bump version from 4.55.7 to 4.56.0
tidusjar Mar 24, 2026
8164f1e
chore: :busts_in_silhouette: Updated Contributors [skip ci]
Mar 24, 2026
a42c0db
chore(release): :rocket: v4.57.0 [skip ci]
invalid-email-address Mar 24, 2026
8070723
fix: remove unsupported linux/arm/v7 platform from Docker build
claude Mar 24, 2026
b2131f4
Merge pull request #5357 from Ombi-app/claude/docker-image-publishing…
tidusjar Mar 24, 2026
ba8dc5a
chore: :busts_in_silhouette: Updated Contributors [skip ci]
Mar 24, 2026
9d7be70
chore(release): :rocket: v4.57.1 [skip ci]
invalid-email-address Mar 24, 2026
713a098
fix: update Dockerfile COPY commands to match current project structure
claude Mar 24, 2026
78b3b40
Merge pull request #5358 from Ombi-app/claude/docker-image-publishing…
tidusjar Mar 24, 2026
b1fb6a9
chore(release): :rocket: v4.57.2 [skip ci]
invalid-email-address Mar 24, 2026
e6c7f75
fix: disable font inlining in Angular production build
claude Mar 24, 2026
3c1ad0c
Merge pull request #5359 from Ombi-app/claude/docker-image-publishing…
tidusjar Mar 24, 2026
edf909e
chore: :busts_in_silhouette: Updated Contributors [skip ci]
Mar 24, 2026
9e1aaee
chore(release): :rocket: v4.57.3 [skip ci]
invalid-email-address Mar 24, 2026
951f66e
Change Ombi logo URLs from imgur to those hosted on the website
Mar 27, 2026
7d53825
Fix the schema for the firsttimersonly badge
Mar 27, 2026
294a724
Add alt-text for the Ombi logo image
Mar 27, 2026
84a170e
Merge pull request #5360 from Touchstone64/point-the-notification-tem…
tidusjar Mar 27, 2026
922598b
chore(release): :rocket: v4.57.4 [skip ci]
invalid-email-address Mar 27, 2026
227e519
fix: src/Ombi.Notifications/Ombi.Notifications.csproj to reduce vulne…
snyk-bot Mar 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,51 @@ jobs:
artifacts/**/*.tar.gz
artifacts/**/*.zip

docker:
needs: [ unit-test, versioning ]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4

- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
type=raw,value=${{ needs.versioning.outputs.version }},enable=${{ needs.versioning.outputs.version != '' }}
type=raw,value=develop,enable=${{ github.ref == 'refs/heads/develop' }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: ./src
file: ./src/dockerfile
push: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

update-apt:
needs: [ release, versioning ]
runs-on: ubuntu-latest
Expand Down
108 changes: 68 additions & 40 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,71 @@
## [4.57.4](https://github.com/Ombi-app/Ombi/compare/v4.57.3...v4.57.4) (2026-03-27)



## [4.57.3](https://github.com/Ombi-app/Ombi/compare/v4.57.2...v4.57.3) (2026-03-24)


### Bug Fixes

* disable font inlining in Angular production build ([e6c7f75](https://github.com/Ombi-app/Ombi/commit/e6c7f7556c10364c587a9d622eb99083896fdfe6))



## [4.57.2](https://github.com/Ombi-app/Ombi/compare/v4.57.1...v4.57.2) (2026-03-24)


### Bug Fixes

* update Dockerfile COPY commands to match current project structure ([713a098](https://github.com/Ombi-app/Ombi/commit/713a098f9c8bef5f06464654a986e9b638a1ad84))



## [4.57.1](https://github.com/Ombi-app/Ombi/compare/v4.57.0...v4.57.1) (2026-03-24)


### Bug Fixes

* remove unsupported linux/arm/v7 platform from Docker build ([8070723](https://github.com/Ombi-app/Ombi/commit/8070723b45481ce1ecc8299bc45177322fe36dd4))



# [4.57.0](https://github.com/Ombi-app/Ombi/compare/v4.55.7...v4.57.0) (2026-03-24)


### Bug Fixes

* guard Docker image push to master/develop branches only ([5db9ff9](https://github.com/Ombi-app/Ombi/commit/5db9ff926b25047439fc7299e708226e37d2aa8a))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([cb6e7ce](https://github.com/Ombi-app/Ombi/commit/cb6e7ce96cbe25a9ad02a69d710440d0a032b5b1))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([cbeb8a3](https://github.com/Ombi-app/Ombi/commit/cbeb8a325e56634695348b2737cd4796138e8342))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([116775e](https://github.com/Ombi-app/Ombi/commit/116775ecbccafdcb70948f4f464444d370ff2bfb))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([5a561c9](https://github.com/Ombi-app/Ombi/commit/5a561c974c8000cbb361ee35aa0091e1dea91ae2))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([8474267](https://github.com/Ombi-app/Ombi/commit/8474267fbd59e841597f62593db4401792c9f495))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([ff56bce](https://github.com/Ombi-app/Ombi/commit/ff56bce713cc1f3f021cb3de0fd61f4035ec0138))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([3cb52a2](https://github.com/Ombi-app/Ombi/commit/3cb52a27aa39c3972f855ee22307957cfd53609b))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([9446001](https://github.com/Ombi-app/Ombi/commit/94460017111d493e9678a11684d01c239fc97cf9))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([12c6c8a](https://github.com/Ombi-app/Ombi/commit/12c6c8a37d57375dc5520a66bf3cedb9ef5b57c5))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([b16dcef](https://github.com/Ombi-app/Ombi/commit/b16dcef1925ca087cc677873c7abae450f2f1d7f))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([f04cf8d](https://github.com/Ombi-app/Ombi/commit/f04cf8d8ce2d8899fefb2e55c5e5647d1da3ced4))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([f14ea54](https://github.com/Ombi-app/Ombi/commit/f14ea540912bc738d2cacef96a851424867cdb90))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([6ed8ebc](https://github.com/Ombi-app/Ombi/commit/6ed8ebc64bc4418d771f5dde734e9a8048d812a0))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([6aeeafb](https://github.com/Ombi-app/Ombi/commit/6aeeafb02fe8eb9f51de4f69bbda036889f4c226))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([cbf7421](https://github.com/Ombi-app/Ombi/commit/cbf742197286cef05d344112683f0d86c1620f08))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([9c785fb](https://github.com/Ombi-app/Ombi/commit/9c785fb7dcbcb43b26af5aabc8746cccd2c69744))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([32ecec1](https://github.com/Ombi-app/Ombi/commit/32ecec1cdf7b4858c0a37e9588f88cc9e0379bb3))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([7497cf2](https://github.com/Ombi-app/Ombi/commit/7497cf2b6d4c5ca1d8f140d3198b66e9b098030d))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([6d92d48](https://github.com/Ombi-app/Ombi/commit/6d92d4839889417e3fd3b2b95c82133ae4d17f7a))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([3236324](https://github.com/Ombi-app/Ombi/commit/3236324efd0c40c173738fe5fbd68f9f18e638cd))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([2e2aacd](https://github.com/Ombi-app/Ombi/commit/2e2aacd1767f6c6b7571f6d40e6454caa939f4a0))
* **translations:** 🌐 New translations from Crowdin [skip ci] ([c282583](https://github.com/Ombi-app/Ombi/commit/c2825833c17b64b70ba5166ca2d5e34c2a35b783))
* update actions/checkout to v4 in docker job ([4b3e126](https://github.com/Ombi-app/Ombi/commit/4b3e1268d71edbce1690716b206cd7f3a3c8acd7))


### Features

* add Docker image publishing to CI pipeline ([7f393dd](https://github.com/Ombi-app/Ombi/commit/7f393dd7d1f3cde4828121fa1f78a073b27df3a5))



## [4.55.7](https://github.com/Ombi-app/Ombi/compare/v4.55.6...v4.55.7) (2026-03-01)


Expand Down Expand Up @@ -297,43 +365,3 @@



## [4.49.4](https://github.com/Ombi-app/Ombi/compare/v4.49.3...v4.49.4) (2025-08-23)



## [4.49.3](https://github.com/Ombi-app/Ombi/compare/v4.49.2...v4.49.3) (2025-08-17)


### Bug Fixes

* **plex-api:** update Plex Watchlist URL ([11fd7a5](https://github.com/Ombi-app/Ombi/commit/11fd7a5fc853da75974a16bf4fdecd72a836f54b))



## [4.49.2](https://github.com/Ombi-app/Ombi/compare/v4.49.1...v4.49.2) (2025-07-12)


### Performance Improvements

* **discover:** :zap: Improve the loading performance on the discover page ([97d5167](https://github.com/Ombi-app/Ombi/commit/97d5167db6c9f915021f32b96b281d7db3741d7f))



## [4.49.1](https://github.com/Ombi-app/Ombi/compare/v4.49.0...v4.49.1) (2025-07-12)


### Bug Fixes

* **auth:** Fixed an issue where refreshing the page as a power user would stop the application from loading [#5242](https://github.com/Ombi-app/Ombi/issues/5242) ([cee4014](https://github.com/Ombi-app/Ombi/commit/cee40146ee02f7fb79e2019d6fe2f9d5c5dbdfc8))



# [4.49.0](https://github.com/Ombi-app/Ombi/compare/v4.48.5...v4.49.0) (2025-07-11)


### Features

* Added the ability for the Watchlist to automatically refresh the users token. This will reduce the need for the user to log in ([067c029](https://github.com/Ombi-app/Ombi/commit/067c029f42e9fd853d060fdb2093013b15ac14c0))



Loading
Loading