06a9f31583
CLAUDE.md: Patch the Planet, AGPLv3, remove verbs-to-be
2026-04-03 20:33:32 -04:00
a66d728f79
CLAUDE.md: add Patch the Planet mission, AGPLv3 declaration
2026-04-03 20:29:45 -04:00
43e0ed15f1
undf: stamp patches (kdenlive-0010, krita-0001/0002); gitignore minecraft server artifacts
2026-04-03 15:06:14 -04:00
d7942ecf65
kdenlive-0010: stage patch, test, ticket; kdenlive unit test extended; CLAUDE.md updated
2026-04-03 14:54:20 -04:00
52edb7a6ea
roles: java-topology is sandbox, undefect.com is source of truth
2026-03-31 17:48:57 -04:00
3b44a7a8de
style: avoid "the", use "our" — writing style rule + sweep
2026-03-31 13:19:39 -04:00
b814149582
CLAUDE.md: update UNDF count to 959
2026-03-31 11:59:24 -04:00
16536f2b46
CLAUDE.md: update UNDF count to 955
2026-03-31 11:48:50 -04:00
dafb9a87ec
CLAUDE.md: update UNDF count to 953
2026-03-31 11:47:12 -04:00
191f018d78
undf: assign 949-951; tiled map editor 3 CWE-407 defects
...
tiled-0001: mapdocument.cpp sortObjects/sortLayers/moveLayersUp/Down/duplicate
QList.contains() inside iteration over all map layers/objects = O(N*S)
Fix: QSet O(1) lookup. MEDIUM severity. 24x speedup at N=2000,S=1000.
tiled-0002: mapobjectmodel.cpp classChanged
QList.contains(tile) inside nested loop over all map objects = O(O*T)
Fix: QSet O(1) lookup. MEDIUM severity. 14x speedup at O=2000,T=500.
tiled-0003: editpolygontool.cpp updateHandles
QList.contains() inside QHash iteration = O(H*S)
Fix: QSet O(1) lookup. MEDIUM severity. 13x speedup at H=1000,S=500.
3/3 PASS. MOAD-0002/0003/0004/0005 CLEAN.
2026-03-31 11:44:37 -04:00
9b1e6fc69a
CLAUDE.md: update UNDF count to 947
2026-03-31 10:10:12 -04:00
34c888772f
CLAUDE.md: update UNDF count to 934
2026-03-31 09:40:19 -04:00
ede0450c2b
CLAUDE.md: update UNDF count to 927
2026-03-31 09:16:58 -04:00
65389dd651
CLAUDE.md: update UNDF count to 916
2026-03-31 08:07:52 -04:00
aff709eb3a
CLAUDE.md: update UNDF count to 914
2026-03-31 07:49:39 -04:00
4560936024
CLAUDE.md: update UNDF count to 907
2026-03-31 07:39:47 -04:00
2798f926fc
CLAUDE.md: update UNDF count to 894
2026-03-30 17:40:39 -04:00
716a789008
CLAUDE.md: update UNDF count to 892
2026-03-30 17:34:31 -04:00
8044951658
CLAUDE.md: update UNDF count to 865
2026-03-30 15:25:53 -04:00
ee9d45d123
CLAUDE.md: update UNDF count to 861
2026-03-30 15:18:09 -04:00
f35e47bab3
CLAUDE.md: update UNDF count to 858
2026-03-30 15:01:20 -04:00
0623a342b1
CLAUDE.md: update UNDF count to 854
2026-03-30 14:54:23 -04:00
37dc0c5179
CLAUDE.md: update UNDF count to 850
2026-03-30 14:52:48 -04:00
6e6609dbdb
CLAUDE.md: update UNDF count to 832
2026-03-30 14:33:12 -04:00
db958a2038
CLAUDE.md: update UNDF count to 817
2026-03-30 13:05:14 -04:00
0b80195515
CLAUDE.md: update UNDF count to 813
2026-03-30 12:57:39 -04:00
d05d4bd6f0
CLAUDE.md: update UNDF count to 806
2026-03-30 11:34:10 -04:00
860b0ee52e
CLAUDE.md: update UNDF count to 805
2026-03-30 11:29:53 -04:00
8a27ea4105
CLAUDE.md: update UNDF count to 794, add image/video/office priority targets
2026-03-30 11:22:42 -04:00
7aee87ab40
CLAUDE.md: update UNDF count to 757
2026-03-30 09:39:06 -04:00
750b27a453
CLAUDE.md: update UNDF count to 749
2026-03-30 09:16:28 -04:00
ac7030d9a7
CLAUDE.md: update UNDF count to 745
2026-03-30 08:55:11 -04:00
e72c6fb013
undf: assign UNDF-2026-000000740 through UNDF-2026-000000744; stamp micronaut-core patches
2026-03-30 08:44:51 -04:00
e72461aba9
undf: assign 737-739; stamp dragonfly/valkey/kafka patches; update UNDF count to 739
2026-03-30 08:35:14 -04:00
192219a62f
undf: assign 734-736; stamp rabbitmq-0001/0002
2026-03-30 08:26:11 -04:00
9f9acfd5f5
undf: assign 732-733; stamp activemq-0002/0003
2026-03-30 08:02:58 -04:00
e72b9fccde
undf: assign 731; stamp patches; postgres-0001/asterisk-0001/haproxy-0001/nginx-0001
2026-03-30 07:57:50 -04:00
c8bde8ddac
CLAUDE.md: update UNDF count to 730
2026-03-30 07:42:00 -04:00
c830c29e8a
CLAUDE.md: update UNDF count to 728
2026-03-30 07:34:52 -04:00
0caef69f01
undf: assign 722-727; stamp opensmtpd-0002; update count to 727
2026-03-30 07:08:30 -04:00
c9e86c450c
opensmtpd-0001: mta_handle_envelope TAILQ_FOREACH O(N²) task lookup — patch + unit test
...
Add patch replacing linear TAILQ_FOREACH scan in mta_handle_envelope()
with tree_get() on a per-relay task_by_msgid splay-tree index; assign
UNDF-2026-000000201. Unit test confirms 100x op-count improvement at
N=100 tasks/relay.
2026-03-30 07:00:50 -04:00
740f17256b
undf: assign 721; stamp spidermonkey-0005
2026-03-30 06:47:50 -04:00
9cd01d9fae
CLAUDE.md: update UNDF count to 720
2026-03-29 22:29:59 -04:00
2f32199987
claude.md: update UNDF count 591→680; last run 2026-03-30
2026-03-29 20:29:42 -04:00
d4bb900583
claude: UNDF 591; 653 confirmed sites
2026-03-29 18:35:13 -04:00
8cdb7bad0e
claude: UNDF 593; 650 confirmed sites
2026-03-29 18:19:20 -04:00
78c77fc5fa
claude: UNDF count 588→592; MOAD 649 confirmed sites
2026-03-29 18:14:43 -04:00
3ff514bbf3
claude: update UNDF count to 588
2026-03-29 18:03:09 -04:00
60cd7aa41c
claude: update UNDF count to 585
2026-03-29 17:52:28 -04:00
00ac16dc1a
CLAUDE.md: UNDF count 578→584
2026-03-29 17:41:04 -04:00