Skip to content

Commit 99f81cb

Browse files
authored
Merge branch 'master' into develop
2 parents de81082 + 25127b6 commit 99f81cb

4 files changed

Lines changed: 34 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 29 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
## [4.59.5](https://github.com/Ombi-app/Ombi/compare/v4.59.4...v4.59.5) (2026-05-20)
1+
2+
## [4.53.5](https://github.com/Ombi-app/Ombi/compare/v4.53.4...v4.53.5) (2026-04-20)
3+
4+
5+
### Bug Fixes
6+
7+
* reset sqlite_sequence after cache table deletes to prevent Int32 overflow ([#5398](https://github.com/Ombi-app/Ombi/issues/5398)) ([02e7c8e](https://github.com/Ombi-app/Ombi/commit/02e7c8e3c013b9c4620c381e143ecbded25f694d)), closes [#5224](https://github.com/Ombi-app/Ombi/issues/5224)
8+
9+
10+
11+
## [4.53.4](https://github.com/Ombi-app/Ombi/compare/v4.53.2...v4.53.4) (2026-01-08)
12+
13+
14+
### Bug Fixes
15+
16+
* small fix to search by decade ([7da1721](https://github.com/Ombi-app/Ombi/commit/7da1721a557e7aa2e92e760a7672b2dd2c88b060))
17+
18+
19+
20+
## [4.47.1](https://github.com/Ombi-app/Ombi/compare/v4.47.0...v4.47.1) (2025-01-05)
21+
22+
23+
24+
## [4.53.2](https://github.com/Ombi-app/Ombi/compare/v4.53.1...v4.53.2) (2026-01-08)
225

326

427
### Bug Fixes
@@ -313,6 +336,11 @@
313336

314337
## [4.51.4](https://github.com/Ombi-app/Ombi/compare/v4.51.3...v4.51.4) (2025-10-14)
315338

339+
## [4.47.1](https://github.com/Ombi-app/Ombi/compare/v4.47.0...v4.47.1) (2025-01-05)
340+
341+
342+
# [4.47.0](https://github.com/Ombi-app/Ombi/compare/v4.46.8...v4.47.0) (2025-01-03)
343+
316344

317345
### Bug Fixes
318346

@@ -350,28 +378,3 @@
350378
* **translations:** 🌐 New translations from Crowdin [skip ci] ([102c84e](https://github.com/Ombi-app/Ombi/commit/102c84edb0df41f2f9ca27fd9d76f1e9cb22e755))
351379

352380

353-
### Features
354-
355-
* improve contributor guidance ([d045f32](https://github.com/Ombi-app/Ombi/commit/d045f32b85fd4c019239e13a6a0eefb842ed1b31))
356-
* **TvSender:** add logging for missing seasons in Sonarr during monitoring updates ([0d219e4](https://github.com/Ombi-app/Ombi/commit/0d219e4612ce047d7a507c2447ed6d76d616768e))
357-
358-
359-
### Reverts
360-
361-
* Revert "Update src/Ombi/Controllers/V1/TokenController.cs" ([0294dba](https://github.com/Ombi-app/Ombi/commit/0294dba4cc8d27ace0503fd2518b4419c3f0f08f))
362-
363-
364-
365-
## [4.50.2](https://github.com/Ombi-app/Ombi/compare/v4.50.1...v4.50.2) (2025-10-04)
366-
367-
368-
369-
## [4.50.1](https://github.com/Ombi-app/Ombi/compare/v4.50.0...v4.50.1) (2025-09-26)
370-
371-
372-
### Bug Fixes
373-
374-
* **sonarr:** :bug: Ensure we are monitoring shows that already exist in Sonarr [#5257](https://github.com/Ombi-app/Ombi/issues/5257) ([bf83c95](https://github.com/Ombi-app/Ombi/commit/bf83c95da05feefa956ea73a3959304af94483dd))
375-
376-
377-

src/Ombi.Schedule/Jobs/Radarr/RadarrSync.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ public async Task Execute(IJobExecutionContext job)
4444
// Let's remove the old cached data
4545
using var tran = await _ctx.Database.BeginTransactionAsync();
4646
await _ctx.Database.ExecuteSqlRawAsync("DELETE FROM RadarrCache");
47+
// Reset auto-increment to prevent Int32 overflow (see #5224)
48+
await _ctx.Database.ExecuteSqlRawAsync("DELETE FROM sqlite_sequence WHERE name = 'RadarrCache'");
4749
await tran.CommitAsync();
4850
_logger.LogInformation("[RadarrSync] RadarrCache cleared");
4951

src/Ombi.Schedule/Jobs/Sonarr/SonarrSync.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ await strat.ExecuteAsync(async () =>
6969
{
7070
using var tran = await _ctx.Database.BeginTransactionAsync();
7171
await _ctx.Database.ExecuteSqlRawAsync("DELETE FROM SonarrCache");
72+
// Reset auto-increment to prevent Int32 overflow (see #5224)
73+
await _ctx.Database.ExecuteSqlRawAsync("DELETE FROM sqlite_sequence WHERE name = 'SonarrCache'");
7274
await tran.CommitAsync();
7375
});
7476

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "4.59.5"
2+
"version": "4.53.5"
33
}

0 commit comments

Comments
 (0)