forked from i2p/i2p.i2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.txt
19704 lines (16845 loc) · 736 KB
/
history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2021-12-21 zzz
* Transport: Async NTCP writes (MR !43)
2021-12-18 zzz
* Tunnels:
- Restore support for IP restriction in client tunnels (MR !45)
- Add support for IP restriction in exploratory tunnels
- Do not allow failed tunnels to be rebuilt
2021-12-08 zzz
* i2ptunnel: Refactor UDPTunnel, Streamr, and SOCKS UDP for I2CP ports
2021-12-07 zzz
* Debian: Add explicit dependency on libservlet3.1-java (Debian #997213)
2021-12-05 zzz
* DTG: Add notification enable/disable to menu
* Router: Tweak shutdown messages
2021-12-04 zzz
* Build: Fix minimum Java version in installer config
* DTG:
- Show I2P starting message
- Show all CRIT log messages
- Change to dark icon on Windows
* i2psnark:
- Format multiple lines in torrent comment
- Notify completed downloads on DTG
* SusiMail: Notify new messages on DTG
2021-12-03 zzz
* i2psnark: Add torrent edit page
* Tunnels:
- Refactor build completion handling
- Count consecutive build timeouts per-pool
- Immediately fail outbound tunnel when connect
to first hop fails
2021-12-01 zzz
* DTG: Add notification service to display popup messages
* Router: Reduce ban time for localhost addresses
2021-11-30 zzz
* Build: Remove BOB from installer, updater, and clients.config
* Console: NetDB search form improvements
* i2ptunnel: Increase priority for IRC and standard tunnels
2021-11-29 1.6.1 released
2021-11-29 zzz
* Tunnels: Fix NPE in BuildHandler
2021-11-29 1.6.0 (not released)
2021-11-23 zzz
* Tunnels:
- Drop request if hop throttle exceeded by 50%
- Revert banning peer in throttles
2021-11-21 zzz
* Console: Drop peer when manually banned
* Tunnels:
- Ban peer on excessive build requests
- Drop requests if previous or next peer is banned
* Update: Drop peer when banlisted
2021-11-12 zzz
* Tunnels: Improve build success when at conn limits
2021-11-09 zzz
* GeoIP 2021-11-01
2021-11-09 zzz
* Util: Update DoH server list
2021-10-23 zzz
* Debian: Update JRE dependencies
2021-10-21 idk
* Improve consistency between light and dark theme on Bandwidth Config Wizard
2021-10-20 zzz
* SSU: Send Peer Test from Bob to Alice in-session
2021-10-13 zzz
* Util: Recognize newer Intel processors
2021-10-11 zzz
* Tomcat 9.0.54
2021-10-10 zzz
* Jetty 9.3.30.v20211001
2021-10-05 zzz
* NetDB: Reduce ban time for routers without netId
2021-10-03 zzz
* Console: Add theme selection to wizard
2021-10-01 zzz
* i2ptunnel: Fix enc type configuration logic
2021-09-30 zzz
* Console: Add js to /configui to preview themes
2021-09-27 zzz
* Router: Rekey all Android/ARM routers
2021-09-25 zzz
* Tunnels:
- Implement Bloom filter for short TBM
- Reduce TBM Bloom filter size and interval for EC routers
2021-09-22 zzz
* UDP: Replace ACKSender thread with per-PeerState ack timers
2021-09-10 zzz
* I2CP: Don't call listener.readError() after external client disconnect
2021-09-05 zzz
* Update: Get backup URLs from news feed
2021-08-28 zzz
* Console: Catch error checking systray availability (gitlab issue #331)
2021-08-26 zzz
* Debian: Fix dh_installdocs build error
* Router: Increase rekey probability
* Tunnels: Enable sending short build messages
2021-08-23 1.5.0 released
2021-08-20 zzz
* Update GeoIP and translations
2021-08-13 zzz
* Crypto: Fix corruption of EC and DSA private keys on Java 17
2021-08-07 zzz
* UPnP: Fix URL handling
2021-08-02 zzz
* Console: Show restart button if there's an update
to be handled by a post-processor
2021-07-30 zzz
* Util: Update DoH server list
2021-07-28 zzz
* Tunnels: Fixes for proposal 157
2021-07-23 zzz
* Transport: Fix UPnP IPv6 NPE
2021-07-22 zzz
* Tunnels: Fixes for proposal 157
2021-07-20 zzz
* NetDB: Increase min ff version to 0.9.38
2021-07-18 zzz
* Tunnels: Updates for proposal 157
2021-07-07 zzz
* Streaming: Reduce immediate ack delay
2021-07-02 zzz
* UPnP: IPv6 address validation fix
2021-06-22 zzz
* Tests: Fix duplicate classes in i2ptest.jar
* Tunnels: Changes for new build messages (Prop. 157)
2021-06-20 zzz
* Jetty: Case-insensitive sort on directory listing, put directories first
2021-06-18 zzz
* Console: Add Permissions-Policy header
* SSU: Fix handling of bad peer test responses
* Transport: Remove 4/6 caps config
2021-06-16 zzz
* Router: Increase key pool sizes for slow machines
2021-06-13 zzz
* Tests: Fix and expand BuildMessageTestStandalone
* Tunnels: Continue work on new build messages (proposal 157)
2021-06-11 zzz
* UPnP: Bind to IPv6 addresses for search responses
2021-06-10 zzz
* Updates:
- Add preliminary support for dmg/exe updates
- Make backup news URL configurable (see gitlab MR !33)
2021-06-08 zzz
* NetDB: Prevent rare deadlock in rebuildRouterInfo()
* Tunnels:
- More work on short tunnel build messages (proposal 157)
- Fix compare logic in ITBM parser (ticket #2814)
- Extend use of high cap peers in expl. tunnels at startup, after extended downtime
- Switch from SHA256 to SipHash for peer ordering
2021-06-01 zzz
* i2psnark: Fix autostart for magnets
* Router: Fix JobQueue getLastJobBegin() and getLastJobEnd() (ticket #2809)
2021-05-23 zzz
* UPnP: Fix IPv6 address check (ticket #2811)
2021-05-21 zzz
* Router: Increase rekey probability
* RRD4J 3.8
* 2021-05-18 0.9.50 released
2021-05-14 zzz
* SAM: Remove ancient client demo code
* Update Translations
2021-05-10 zzz
* Sybil: Fix retention of analysis files when configured
to never delete
2021-05-07 zzz
* Console: /configpeer improvements
2021-05-04 zzz
* GeoIP 2021-05
2021-05-02 zzz
* Console: Update bug report URLs
2021-04-25 zzz
* Console: Add author for initial news
2021-04-24 zzz
* Jetty: Patch for CVE-2021-28165 Jetty #6072 -
Jetty server high CPU when client send data length > 17408
* SusiMail: Fix infinite loop in decoder on malformed input
2021-04-24 zlatinb
* SusiMail:
- Fix stream closed exception reading new mail
(trac ticket #2202, gitlab ticket #17)
- Fix corruption of large messages (ticket #2765)
2021-04-23 idk
* Router: Fix update on Windows from very old versions (gitlab ticket #16)
2021-04-20 zzz
* NTCP:
- Set outbound addresses at startup when force-firewalled
- More NTCP1 removal cleanup
* SSU:
- Fix setting addresses from interfaces at startup
- Don't start peer test when shutting down
2021-04-18 zzz
* Proxy: Decode IDN hostnames in error pages
2021-04-17 zzz
* Transport: IPv6 state transition fixes
2021-04-12 zzz
* SSU: Fix peer test getting stuck
2021-04-11 zzz
* Proxy: Precompress error page CSS
* SSU: IPv6-only fixes
2021-04-09 zzz
* Router: Fixes for setting up config dir in embedded applications
2021-04-08 zzz
* Debian: Fix link to compiler jar (Debian ticket #986474)
* SSU: IPv6 introducer fixes
2021-04-05 zzz
* Build: Remove launcher code
* Console: Convert update versions to times for debug page
* Sybil: Register blocklist version with update manager
2021-04-04 zzz
* Tunnels: Fix timestamp checking for ECIES records
2021-04-03 zzz
* SAM: Remove subsessions when primary session closes
* SSU: Remove restrictions on IPv6 introducers (prop. 158)
2021-04-02 zzz
* SSU: Fix dup IPv6 introducers
2021-04-01 zzz
* NetDB: Negative cache LS received with zero leases
2021-03-31 zzz
* SSU: Update address when IPv6 introducers change (prop. 158)
2021-03-30 zzz
* Transport: Fix NTCP removing IPv4 address when SSU removes IPv6 address
2021-03-29 zzz
* SSU: Don't request introducers when hidden
* Transport: Don't open UPnP ports when hidden or force-firewalled
2021-03-27 zzz
* Router: Fix decryption of blinded leasesets
2021-03-25 zzz
* i2ptunnel: Force non-SSL socket to local target for SSL ports
* SSU: Implement IPv6 introductions (proposal 158)
* Transports: Don't open UPnP ports for disabled IPv4/v6
2021-03-23 zzz
* NetDB: Sort published addresses for consistency
* SSU: Fix IPv6 transition from firewalled to non-firewalled
2021-03-22 zzz
* Sybil: Persist blocklist
* Tunnels: Don't count established routers as new in OBEP throttle (ticket #2245)
2021-03-20 zzz
* Tunnels: Fix RED dropping for part. tunnels (Gitlab MR #24)
2021-03-18 zzz
* Util:
- DoH: Update server list
- EepGet timeout fixes
- EepHead: Fix failure if headers specify chunked
- SSLEepGet: Specify hostname for SSL socket when using DoH
- SSLEepGet: Use DoH by default (reseeding) (ticket #2201)
2021-03-16 zzz
* Console: Fix netdb SSU caps search
* Transports: Enable 4/6 caps
2021-03-15 zzz
* SSU: Fix IPv6 addresses not being removed on some state transitions
* Util: Don't call out to InetAddress for IP parsing
2021-03-13 zzz
* Console: Limit share to 90% max
2021-03-11 zzz
* NetDB: Queue RI file deletion and delete in a single thread
* SSU: Limit port changes
2021-03-09 zzz
* Throttle: Don't do exponential calculation unless necessary
* Util: Consolidate dup BandwidthEstimator interfaces
2021-03-08 zzz
* NTCP: Remove NTCP 1 suppport
* SSU: Increase CoDel drop threshold at UDPSender queue
2021-03-06 zzz
* SSU: Require confirmation for IPv6 firewalled state transitions
2021-03-04 zzz
* I2CP: More prep for different release and API versions
* i2ptunnel: Add missing button icons for proxy forms
* Router: Increase rekey probability
* Transports: Prefer IPv6 temporary addresses if the kernel does
2021-03-03 zzz
* NTCP: Fix reachability status when force-firewalled
* SSU:
- Only advertise 'C' cap if we can really introduce
- Only ask for relay tag if we don't have enough
- Fix transition out of IPv4 firewalled after UPnP success
- Fix validation of current introducers
- Don't publish IPv4 address at startup when force-firewalled
- Publish empty '4' address if firewalled and no introducers
- Publish empty '6' address if firewalled
- 4/6 caps fixes
- Increase hole punch rate limit
* UPnP: Fix retention of deprecated addresses
2021-03-02 zzz
* UPnP:
- Limit event subscription time
- Subscribe to IPv6 service also
2021-03-01 zzz
* UPnP:
- Fix mappings not being renewed before expiration
- IPv6 port forwarding fixes
- Continue to forward deprecated addresses for a while
2021-02-28 zzz
* SSU: Fix set of states requiring address confirmation
* UPnP:
- Add support for IPv6 firewall addresses
- Add support for forwarding IPv6 addresses
2021-02-27 zzz
* UPnP: Move IPv6 checks from Parser to ControlPoint
2021-02-25 zzz
* NetDB: Fix NPE validating expired blinded LS2
* NTCP: Don't publish IP at startup when configured as firewalled
* SSU: Enable RelayRequest over IPv6
* Transports: Adjust conn limits for some platforms
2021-02-24 zzz
* Jetty: Fix detection of SSL connector
* SSU: Avoid outbound connections to buggy routers
2021-02-23 zzz
* Build: Prep for different release and API versions
* Transports: Add 4/6 transport caps
2021-02-21 zzz
* Console: List all Jetty servers in sidebar
* Profiles: Disable peer test (ticket #2456) and tunnel test response time stat
2021-02-20 zzz
* Router: Don't rekey previous ECIES every restart on ARM
2021-02-19 zzz
* i2psnark: Fix theme selection
2021-02-18 zzz
* Build: Remove empty jars and wars from installers
* NTP: Year 2036 fixes (gitlab ticket #12)
* 2021-02-17 0.9.49 released
2021-02-15 zzz
* Build: Test script fixes
* Pull translations from Transifex
2021-02-13 zzz
* Util: Update router su3 keys
2021-02-10 zzz
* Util: Fix up KeyStoreUtil CLI
2021-02-06 zzz
* Proxy: Update default jump servers
* NetDB:
- Ensure RI is published after netdb is initialized
- Only rewrite blind cache at shutdown if changed
* NTCP: Don't publish saved local address when hidden
2021-02-05 zzz
* GeoIP update
2021-02-03 zzz
* Tunnels: Peer selection changes
2021-01-31 zzz
* Router:
- Update list of hidden mode countries
- Force hidden mode routers to LU
- Don't publish stats in first hour of uptime
- Add H.323 to invalid ports list
- Improve crashed message in event log
* Util: Improved classification of public/local IPv6 addresses
2021-01-30 zzz
* UPnP: Fix NPE (android gitlab ticket #1)
2021-01-29 zzz
* Tests: Addresses tests
* Util: Don't allow empty string as valid IP
2021-01-24 zzz
* Tunnels: Update profiles for tunnel peers on corrupt message at endpoint
2021-01-23 zzz
* Console: New readme translations
* Eepsite: New help translations
2021-01-22 zzz
* Build: Drop old Makefile.gcj
* Console: Drop old proof page
2021-01-20 zzz
* Console: Fix link to UPnP status
* SSU: Fix deadlock with router restart
* Tests: ConvertToHash tests
2021-01-14 zzz
* Router:
- Change default encryption type to ECIES-X25519 (proposal 156)
- Move Sybil subsystem from console to router
- Limit max addresses in RI
2021-01-13 zzz
* Jetty: Fix URI in request logs
2021-01-12 zzz
* i2psnark: Don't decrement downloaded counter after receiving bad piece
2021-01-11 zzz
* Console: Delete rrd files for no-longer-configured stats at startup
2021-01-08 zzz
* i2ptunnel: Disable shared clients (DSA) (part 2)
* SSU: Fix bandwidth estimator deadlock (ticket #2798)
2021-01-07 zzz
* Router: Disable reseeding and NTP in vmCommSystem
* SSU: Implement fast retransmit (tickets #2427, #2668)
2021-01-05 zzz
* Console: Reduce limit of concurrent graph generation on slow devices
* i2psnark: Add ability to remove I2CP options
* SusiDNS: Hide last-modified on details page if empty
2021-01-04 zzz
* Build:
- Gradle build fixes
- Update external javadoc links
2021-01-02 zzz
* Sybil: Reduce default threshold
* Tunnels: Improve error handling at OBEP
2020-12-31 zzz
* Console: Use local time on graphs by default
* NetDB:
- Drop lookups with replies going to us
- Extend lookup expire time
2020-12-30 zzz
* Ratchet: Fix N pattern for ECIES build replies
2020-12-29 zzz
* Crypto: Cache AES Ciphers
* i2ptunnel: Disable shared clients (DSA)
* NetDB: Verify RI stores for a while after starting
* Ratchet: mixHash() not required after message for N pattern
2020-12-28 zzz
* Debian: Add Java 15/16 to control
2020-12-27 zzz
* SSU: Fix restoration of window after failed message
2020-12-26 zzz
* Console:
- Move flag overrides to war
- Move initial news to jar
* Router: Move some geoip files to jars
2020-12-24 zzz
* I2CP: Fix requesting leasesets for subsessions (ticket #2458)
2020-12-23 zzz
* Crypto: Increase ratchet tag window
* I2CP: Fix encrypted leaseset for ECIES and offline keys
* i2ptunnel: Fix writing config file twice on save
2020-12-22 zzz
* Console:
- Add netdb search by enc. type
- Move readme files to war
2020-12-21 zzz
* SSU: Fix partial acks not being sent
2020-12-20 zzz
* Console: Fix theme selection
* Proxy: Move error page resources to jar
* SSU: Westwood+ congestion control (ticket #2427)
2020-12-18 zzz
* Crypto: Fix use after free (ticket #2797)
2020-12-17 zzz
* SSU: Send subset of fragments (ticket #2427)
2020-12-16 zzz
* NetDB: Fix rare floodfill monitor NPE
* SSU: Fix occasional high CPU usage
2020-12-11 zzz
* Router (proposal 156):
- Change router ECIES SKM to use N pattern
- Allow encrypted messages to ECIES routers
- Allow ECIES routers to become floodfill
- Add XDH factory to VM comm system for tests
2020-12-06 zzz
* Console, webapps: Move web resources to wars
* i2psnark:
- Add support for web seeds (ticket #2780)
- Preserve file attribute strings in metainfo
* Streaming: Add Retry-After header to throttle response
* Util: Change DoH to RFC 8484 protocol (ticket #2201)
* 2020-12-01 0.9.48 released
2020-11-26 zzz
* NTCP: Enable nodelay by default
* SSU: Don't wakeup OMF after ack if no more messages are pending
2020-11-24 zzz
* Build: Fix targets for git
* NTCP: Add nodelay option for testing
2020-11-23 zzz
* Console: Serve default favicon.ico
* i2pcontrol: Basic HTML fixes and HTTP headers for static pages
2020-11-22 zzz
* NetDB: Increase min FF version for LS lookups
2020-11-21 zzz
* i2psnark: Remove old default opentrackers
* Proxy:
- Remove old default jump servers
- Fix CSP for conflict error page
2020-11-20 zzz
* NetDB: Increase exploration rate when hidden
* Tomcat 9.0.40
2020-11-19 zzz
* Build: Reproducible build fix (ticket #2279)
* Crypto: Adjust Java key cache sizes
* Debian: Update apparmor profile for usrmerge
2020-11-17 zzz
* Jetty:
- Update to 9.3.29.v20201019
- Patch to fix console not starting on Java 11.0.9.1
* NetDB: Disable sending encrypted messages to ECIES routers
* Wrapper: Add missing binaries for armv7 and aarch64
to installer (ticket #2308)
2020-11-16 zzz
* GeoIP 2020-11-01
* I2NP: Don't extend DataStructureImpl, to save space
* Imagegen: Update zxing to 3.4.1
* Wrapper: Update to 3.5.44
2020-11-11 zzz
* Data: Store timestamps as longs, not Dates, to save space
* I2CP: Don't have I2CP Messages extend DataStructureImpl, to save space
2020-11-10 zzz
* Data: SDS no longer extends DataStructureImpl to save space
* i2psnark: Larger read buffer for large files
* Ratchet: Destroy HandshakeState after fatal NS/NSR errors
2020-11-07 zzz
* Tunnels: Simplify TunnelId and HopConfig to save space
2020-11-05 zzz
* NetDB: Ensure RI republish time is less than validation time
2020-11-04 zzz
* Util: ELiminate unneeded data copying in ByteArrayOutputStream
2020-11-03 zzz
* i2ptunnel: Add checks for offline expiration of alternate destination
2020-11-02 zzz
* I2CP: Remove tunnels immediately on client disconnect
* i2psnark: Limit max size of embedded video
* i2ptunnel: Restart tunnel if offline-signed private key file updated
2020-10-30 zzz
* i2psnark: MetaInfo support for url-list (prep for BEP 19)
* Util: Fix NPE in EepGet CLI callback via PartialEepGet
2020-10-29 zzz
* Crypto: Precalculate Noise initial hashes
* i2psnark: Store BEP 47 padding file info
* Tunnels: Improved logging and handling of offline signature expiration
2020-10-28 zzz
* Tunnels: Fix tunnel tests for ECIES routers
2020-10-27 zzz
* Util:
- DNSOverHTTPS improvements
- Fix SSLEepGet handling of previous SSL state
2020-10-26 zzz
* Util: Fix EepGet allowCaching parameter
2020-10-25 zzz
* Router: Quick checks of eph. key MSB before Noise DH
* Tunnels: Additional checks on ECIES BRR to catch old/buggy routers
2020-10-23 zzz
* i2ptunnel: Remove mtn tunnel (new installs only)
* Tunnels:
- Move AES reply keys from HopConfig to TunnelCreatorConfig
- Add missing expiration field to ECIES BRR
2020-10-21 zzz
* NetDB:
- ECIES router support for encrypted lookups and stores (proposal #156)
- Reseed after a long downtime
* SSU:
- Increase socket buffer size (ticket #2781)
- Redesign of the congestion control (tickets #2412, #2649, #2654, #2713)
2020-10-17 zzz
* i2psnark: Remove references to "maggot" links
* SSU: Fix calculation of nextSendDelay (ticket #2714)
2020-10-15 zzz
* Crypto: libjbigi for aarch64 (ticket #1840)
* i2psnark: Hide BEP 48 padding directory from UI
* Router:
- More efficient initialization of Noise state
- Destroy ratchet HandshakeState after NS failure
- Add support for ratchet zero key (proposals #144, #156)
* Util: Singleton OrderedProperties comparator
2020-10-12 zzz
* DTG: Enable by default for Linux KDE and LXDE;
Hide option on /configservice if not supported
* New translations for Kurdish, Turkmen, Argentinian Spanish
* NTCP:
- Fix sending termination on idle timeout (ticket #2777)
- Catch possible race IAE in Reader
2020-10-11 zzz
* Installer: Disable pack200 (ticket #2778)
2020-10-10 zzz
* i2psnark: Cache length of metainfo
* Transport: Improved IPv6 address validation
2020-10-09 zzz
* NetDB:
- Don't use DSA-SHA1 routers for lookups, stores, or tunnel peers
- Don't use non-ElGamal routers for lookups or stores
- Prevent DSA-SHA1 routers from auto-floodfill
2020-10-07 zzz
* Build:
- Set javac release property (ticket #2775)
- Ant version 1.9.8 or higher now required
- Drop support for Xenial package build
- Fix up BOB build configuration
- Fix i2psnark standalone build
* i2ptunnel: Filter server response headers even if not compressing
2020-10-03 zzz
* Router: Support building tunnels through ECIES routers (proposal 152)
2020-09-28 zzz
* Router: Don't unregister a message without a selector (ticket #2771)
2020-09-27 zzz
* Streaming: Fix tag option handling
2020-09-26 zzz
* JBigI: GMP 6.2.0 for linux 64 bit Zen and Zen2 (ticket #1869)
2020-09-22 zzz
* i2ptunnel: Change enctype default to both for:
HTTP, IRC, and Streamr servers
IRC, SOCKS IRC, and Streamr clients
* Susimail, SAM: More defensive ByteBuffer casting (ticket #2775)
2020-09-18 zzz
* Build: More git support for release and Debian targets
2020-09-16 zzz
* i2psnark: Defensive checks for v2 format files and magnet links
* Router: Block same-country when in hidden mode (ticket #2759)
2020-09-11 zzz
* Blocklist: Refactoring, Move HTML status generation to console
* Console: Fix /configclients help message for split client config files
* Crypto: Cache HMAC256 instances
* GeoIP: Add methods to get all IPs for a country (ticket #2759)
* Router: Use MuxedSKM for ECIES routers (proposal 156 WIP)
2020-09-08 zzz
* Blocklist: Track versions of each file
* NTCP: Call afterSend() for multiple messages in NTCP2 (ticket #2769)
2020-09-04 zzz
* Console: Support remote lookup of full router hash from search form
* Tunnels: Don't try to decrypt build record if router is ECIES (proposal 152 WIP)
2020-09-02 zzz
* Installer: New Ed25519 destinations for postman's servers
* Router:
- Prep for router encryption types (Proposal 156 WIP)
- Randomize SSU intro key
- Reduce next key threshold for ratchet
- Change ratchet SparseArray from int to char to reduce space
* Util: Fix decompression of compressed zero bytes (ticket #2770)
2020-08-29 zzz
* i2ptunnel: Prevent creating bad alt destination when
tunnel is running
* 2020-08-24 0.9.47 released
2020-08-14 zzz
* Profiles: Create profiles in the nonblocking path
2020-08-10 idk
* Replace all icons with icons from a single consistent source/style, icons
used from FontAwesome suggested by design team and selected and edited by
Sadie.
2020-08-01 zzz
* Debian: Support libjson-simple-java 3 for bullseye
* I2NP: Locking for message ID
* NetDB: Track client that requested LS
* OCMOSJ: Don't send to a RAP LS
* Router: Logging fix for client start failures
* Util:
- More efficient use of random data
- Add KeyStore and SHA256 to CLI
2020-07-28 zzz
* Data: Don't check LS1 revocation signature
2020-07-22 zzz
* i2ptunnel:
- Change default encType to both for new tunnels, http client,
shared clients, and all tunnels for new installs (ticket #2751)
- Change IRC tunnel sigType to EdDSA for new installs (ticket #2749)
- Change CONNECT tunnel default sigType to EdDSA (ticket #2749)
2020-07-19 zzz
* i2psnark: Increase max pipeline, negotiate actual value (ticket #2280)
2020-07-11 zzz
* NTCP: Atomics for NTCP final state (ticket #2701)
* OCMOSJ: Don't lookup an expiring LS2 if unpublished
2020-07-07 zzz
* i2psnark: Change ETA default sort order (ticket #2733)
* Reseed: Enforce minimum version in generated bundle
2020-07-02 zzz
* i2ptunnel: Fix missing throttling section for non-HTTP servers (ticket #2758)
2020-06-28 zzz
* NetDB: Check signature in verify
2020-06-23 idk
* Update the images on the bandwidth wizard, based on undraw
assets, used under licenses/LICENSE-Undraw.txt. Design and assets
were developed by @sadie.
2020-06-22 zzz
* Sybil: Enable analysis and blocking by default
2020-06-12 zzz
* I2CP: Meta LS2 error code handling
2020-06-10 zzz
* Util: Support hostname lookups in LookupDest CLI
2020-06-07 zzz
* i2ptunnel: Fix missing tunnel quantity section for servers (ticket #2747)
* Jetty: Update servlet-api
2020-06-06 zzz
* Data: Fix creation of Encrypted LS2 (ticket #2746)
* I2CP: Fix issues with persisted leaseset private keys
* I2CP, i2ptunnel: Check for expired offline signature client-side
2020-06-03 zzz
* i2psnark: Enable dual-keys
* Router: Implement ratchet-layer acks (proposal 144)
2020-06-01 zzz
* Profiles: Make more calls nonblocking
* Transports: Make unreachable maps concurrent
2020-05-31 zzz
* Tomcat 9.0.35 (Servlet 4.0)
* Util: Update json-simple lib to 2.3.0
2020-05-30 zzz
* Streaming: Increase MTU for ratchet (proposal 155)
* Util: Fix DoH handling of Cloudflare responses
2020-05-28 zzz
* Console: RRD4J 3.6 (ticket #2716)
2020-05-27 zzz
* Installer:
- Require Java 8 (ticket #2511)
- Sign the dlls (ticket #2704)
* Jetty 9.3.28 (ticket #2098)
* UPnP: More fixes
* Util: Faster gzip
* 2020-05-25 0.9.46 released
2020-05-23 zzz
* Windows: Fix permissions in install directory
2020-05-22 zzz
* Console: Translations update
* UPnP: More fixes
2020-05-21 zzz
* Streaming: Fix timer race (ticket #2739)
2020-05-20 zzz
* i2ptunnel: Disable gzip for streamr server
* i2ptunnel, SusiDNS: Replace onblur with CSP-safe js
* Tunnels: Reduce the IBGW and client OBGW batch time
2020-05-19 zzz
* Util: Speed up zero compression
2020-05-18 zzz
* NetDB: Reseed update
* Proxy: Fix error code for incompatible encryption
* Ratchet: Prep for ratchet-layer acks (WIP)
2020-05-17 zzz
* Streamr: Add expiration timer
* UPnP:
- Fixes for multiple devices
- Fixes for device and interface changes
- Handle devices that support permanent leases only
- Prevent using public IP on Android
2020-05-15 zzz
* i2ptunnel: Remove javascript from proxy error pages
2020-05-14 zzz
* Streaming: Change pushBackRTO() log error to warn (ticket #2739)
2020-05-13 zzz
* Console:
- Fix option text on /confignet (ticket #2738)
- Changes to support handlers on /configplugins and /configreseed
- HTML fixes on /configplugins
2020-05-12 zzz
* Console: Hide sensitive properties on /configadvanced
* Console, susimail: Refactor js, stricter CSP
* i2ptunnel:
- Fix data loss in forms
- Encrypt keys in forms
- Disable more options when running
- Hide shared client warning when it doesn't apply
2020-05-11 zzz
* Console: Fix delete confirmation dialog on /configplugins
* Console, i2psnark, i2ptunnel: Refactor js, stricter CSP
2020-05-10 zzz
* i2psnark: Support file paths in add form (ticket #2100)
2020-05-10 idk
* SusiDNS: Fix trac #2419
2020-05-08 zzz
* Build: Use git revisions when available
* i2ptunnel: Disable changing some options while running
* Router: FloodfillPeerSelector cleanup (ticket #2694)
2020-05-07 zzz
* Router:
- Fix INMP NPE on non-default config (ticket #2688)
- Min version for tunnel peers
2020-05-06 zzz
* Streaming: Reduce default ack delay (ticket #2706)
2020-05-05 zzz
* Build: Use --java2 for msgfmt
* i2ptunnel:
- Add ECIES persistent key support
- Fix changing enc type on servers
- Remove experts label from dual-key option
* Ratchet: Add padding based on optimal message size
2020-05-04 zzz
* Console: Add log clear buttons (ticket #2449)
* i2ptunnel: Copy over all relevant options to other shared clients
when saving, not just tunnel quantity and length (ticket #1545)
2020-05-02 zzz
* eepsite: Fix RTL issues on Arabic help page (ticket #2731)
* i2ptunnel: Disable I2CP gzip for HTTP server tunnels
* i2psnark: Disable I2CP gzip
2020-05-01 zzz
* Ratchet: Fix NPE ratcheting IB NSR tagset
2020-05-01 idk
* i2ptunnel: Collapse/Expand UI elements for advanced features, organize
advanced features by category. Replace nested tables.
* SusiMail: Fix missing icon from dark theme (ticket #2726)