Compare commits

...

2 Commits

Author SHA1 Message Date
183309e1ed release: version 0.3.1 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 21s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m22s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Successful in 3m13s
SonarQube Scan / SonarQube Trigger (push) Failing after 4m54s
2025-05-24 19:20:17 +02:00
a6321324f7 fix: fix build errors, refs NOISSUE 2025-05-24 19:20:12 +02:00
3 changed files with 9 additions and 5 deletions

View File

@ -4,6 +4,14 @@ Changelog
(unreleased)
------------
Fix
~~~
- Fix build errors, refs NOISSUE. [Simon Diesenreiter]
0.3.0 (2025-05-24)
------------------
- Ci: more CI fixes, refs NOISSUE. [Simon Diesenreiter]
- Ci: improve commit message generation script, refs NOISSUE. [Simon
Diesenreiter]

View File

@ -18,10 +18,6 @@ LdapIntegration.Instance = new LdapIntegration(AppConfiguration.Instance.LDAPCon
var builder = WebApplication.CreateBuilder(args);
var rand = new Random();
var num = rand.NextInt64();
var mod = num % AppConfiguration.Instance.AverageDaysBetweenRequests;
Console.WriteLine("Setting up user check timer");
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
userCheckTimer.OnOccurence += async (s, ea) =>

View File

@ -1 +1 @@
0.3.0
0.3.1