Athou
911a5ca099
reorder imports using google java format
2026-07-29 20:36:03 +02:00
Athou
64fb5ef3a2
fix warning
2026-07-29 18:24:14 +02:00
renovate[bot]
53346997b6
chore(deps): update debian docker tag to v13.6
2026-07-14 05:14:26 +00:00
Athou
1bd9b71215
use google java formatter to avoid downloading eclipse during build
2026-07-05 11:14:17 +02:00
Athou
ca8438623d
prevent access to ULA and CGNAT addresses
2026-07-05 08:48:02 +02:00
Athou
a5f84a3f6d
search now also works for starred entries ( #2217 )
2026-07-04 17:57:08 +02:00
Athou
bdf2a6a915
the Pocket service has been discontinued
2026-07-03 22:40:38 +02:00
renovate[bot]
1b7bc11f9d
chore(deps): update ibm-semeru-runtimes:open-jdk-25.0.3.0-jre docker digest to 43ec947
2026-07-02 14:59:22 +00:00
Athou
2b7f75d9ef
fix tests
2026-07-02 02:56:08 +02:00
renovate[bot]
1ffc544ab0
chore(deps): update debian:13.5 docker digest to d07d1b5
2026-06-24 07:28:54 +00:00
Athou
00d7be735a
static random fields should not be used with graalvm as they are seeded at compile time and thus not random anymore
2026-06-13 12:03:50 +02:00
Athou
1388fba8e4
apply xml cleaning to opml files
2026-06-13 11:32:57 +02:00
Athou
c43644861f
use a secure algorithm to generate image urls so that only server-side generated urls can be used
2026-06-13 11:21:16 +02:00
renovate[bot]
3599fdec65
chore(deps): update debian:13.5 docker digest to fe7312b
2026-06-11 16:02:59 +00:00
Athou
f7fcb659f7
fix build
2026-06-07 07:34:00 +02:00
renovate[bot]
41e2d89abc
chore(deps): update ibm-semeru-runtimes:open-jdk-25.0.3.0-jre docker digest to 9ff5b13
2026-06-02 16:48:04 +00:00
Athou
1faba92ecc
remove unused relationships
2026-05-27 07:28:19 +02:00
Athou
03eb09c68c
limit the number of favicon retries
2026-05-23 11:17:59 +02:00
Athou
5755ff762b
Trie is thread-safe, no need to recreate one every time
2026-05-22 20:29:48 +02:00
Athou
a4592e5199
fix tests
2026-05-21 04:48:43 +02:00
renovate[bot]
3368cead8b
chore(deps): update debian:13.5 docker digest to 4ae6766
2026-05-20 04:16:03 +00:00
renovate[bot]
9a467bc27b
chore(deps): update debian docker tag to v13.5
2026-05-20 01:03:45 +00:00
Athou
ce983f4906
fix flaky test
2026-05-10 21:19:35 +02:00
Athou
4a8be29616
add support for declared icons in feeds ( #2048 )
2026-05-10 21:05:33 +02:00
renovate[bot]
c395916af9
chore(deps): update debian:13.4 docker digest to e2d08da
2026-05-09 04:41:33 +00:00
Athou
f207bfaddd
format empty records and anonymous types as a single line
2026-05-08 17:56:26 +02:00
renovate[bot]
4b28d1c635
chore(deps): update ibm-semeru-runtimes docker tag to open-jdk-25.0.3.0-jre
2026-05-01 11:59:50 +00:00
Athou
9452c3e74c
remove warning
2026-04-27 18:01:02 +02:00
Athou
f826f1d543
create comparator only once
2026-04-27 18:01:02 +02:00
Athou
fd13c80e5a
allow reuse of TLS connections
2026-04-27 17:52:40 +02:00
Athou
75871348d5
compile pattern once
2026-04-27 17:46:50 +02:00
renovate[bot]
f2f3111d49
chore(deps): update debian:13.4 docker digest to 35b8ff7
2026-04-22 06:50:35 +00:00
Athou
b1ec50c3cb
increase timeout to prevent flaky tests
2026-04-20 11:06:03 +02:00
Athou
da3977b0e2
fix error message not correctly returned
2026-04-20 08:39:24 +02:00
Athou
6d2fb5acc2
refactor
2026-04-10 15:17:27 +02:00
Athou
ec35d846cf
Merge branch 'perf/batch-guid-check-on-feed-refresh' of https://github.com/ingokegel/commafeed into ingokegel-perf/batch-guid-check-on-feed-refresh
2026-04-10 14:22:32 +02:00
Ingo Kegel
1d23907652
Use batched IN clause for GUID existence check during feed refresh
...
Instead of fetching all existing GUID hashes for a feed from the database only check the GUIDs present in the current feed XML using a SQL IN clause. GUIDs are partitioned into batches of 1000.
Also adds an integration test verifying that refreshing an up-to-date feed does not create duplicate entries.
2026-04-10 10:13:37 +02:00
renovate[bot]
47a8ad5244
chore(deps): update debian:13.4 docker digest to 3352c2e
2026-04-07 06:43:23 +00:00
Athou
3d5bc9ef0e
adapt to passay 2.0 api
2026-04-07 02:11:37 +02:00
Ingo Kegel
76dbbdfbf9
batch guid existence check on feed refresh
...
Instead of querying the database once per entry to check if it already
exists, fetch all existing guids for a feed in a single query upfront
and filter new entries in memory before the per-entry loop.
The per-entry findExisting call inside addEntry is kept as a safety net
for concurrent inserts, but is now only reached for new entries.
Profiling in real usage showed a ~50% reduction in guidHash queries,
with the check falling from the most expensive query to sixth in the ranking.
2026-03-18 18:56:40 +01:00
renovate[bot]
5d8c09ccda
chore(deps): update debian docker tag to v13.4
2026-03-17 00:35:37 +00:00
Athou
7b2e0fffbd
reduce timeout for tests to speed up shutdown
2026-03-04 14:19:56 +01:00
Athou
eaa5bc896e
stop the application between tests to make sure that there are no active transactions when we truncate the tables
2026-03-04 13:58:06 +01:00
Athou
78c017ddaf
wait for tasks to complete when shutting down
2026-03-04 12:49:06 +01:00
renovate[bot]
b951ed1fcd
chore(deps): update debian:13.3 docker digest to 3615a74
2026-02-24 21:53:17 +00:00
Athou
8fe2d0bc0e
fix typo
2026-02-21 23:58:49 +01:00
Athou
33a0568895
delay task so that it doesn't run at the same time at OrphanedContentsCleanupTask
2026-02-20 15:55:09 +01:00
Athou
721d728906
prevent SSRF by blocking redirects from public websites to local addresses
2026-02-20 15:07:11 +01:00
Athou
3fd5cfdecd
add a setting to mark entries of a feed as read after a number of days ( #2041 )
2026-02-20 13:24:40 +01:00
Athou
6fe326f052
cleanup
2026-02-19 23:21:09 +01:00