forked from EFForg/https-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
1809 lines (1601 loc) · 78.5 KB
/
Changelog
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
2018.6.21
* Fix: URLs with a hostname of '.' cause endless loop to be triggered
* Bundled ruleset updates
2018.6.13
* Improve popup page performance and slightly reduce memory usage
* Measure and slightly improve memory usage for rulesets
* Fix CORS issues in Firefox. This bug was previously breaking embedded
videos or css on many websites. Chrome browser was not affected by this
bug
* Add "Reset to Defaults" option to reset the default ruleset states
* Add "Show Devtools tab" option to hide CDT tab
* Bundled ruleset updates
2018.4.11
* Reduce out-of-band ruleset update TTL from 48 to 24 hours
* Bundled ruleset updates
2018.4.3
* Applies the out-of-band ruleset updates, sourced from
https://www.https-rulesets.org/. Clients perform a periodic check for new
rulesets to download, which are verified with the Web Crypto API using a
pinned key, then applied.
* Ruleset updates
2018.3.13
* The unused `cacert` platform was removed from rulesets for simplicity
* Organizing the add-on files into a clean directory structure
* Ruleset updates
2018.2.26
* Many/most mixed content blocking issues are solved when enabling the
"Block all unencrypted requests" option thanks to the injection of the
upgrade-insecure-requests header. This means this option can be more
easily used for daily browsing with less site breakage.
* Rulesets are alphabetically sorted in HTTPS Everywhere popup, with the
first-party site (if covered) at the top.
* Fixes an obscure Android bug where rulesets don't appear in popup for the
first window that is opened after restart.
* Many ruleset bugs have been solved (some dating 3 years back!)
2018.1.29
* Ruleset updates
2018.1.11
* Ruleset updates
2017.12.6
* Remove unnecessary files from release
* Ruleset updates
2017.11.21
* Ruleset updates
2017.10.30
* Introduce migrations, migrate settings from localStorage to storage api
* Firefox: full WebExtensions version
2017.10.24
* Significant code refactor
* Fixes for Fennec
* Ruleset updates
2017.10.4
* Markup and small UI changes
* Modularize JS, clean up control flow
* Ruleset updates
2017.9.12
* Decrease memory footprint by using JSON in default.rulesets
* Markup changes
* Ruleset updates
2017.8.31
* Add counter badge to indicate how many rulesets are active
* Use Map instead of Object for targets (improves lookups)
* Fix race condition with persistent storage
* Ruleset updates
2017.8.19
* Fix wildcard matching
* Remove usage of HTML string assignment
* Ruleset updates
2017.8.17
* Firefox: Fix localStorage reference for users with cookies disabled
2017.8.15
* Incorporating numerous fixes for WebExtensions to work within Firefox
* Firefox: Creating Embedded WebExtension wrapper to migrate legacy settings
* Removing legacy XPCOM codebase, unifying Firefox and Chrome codebase
* Ruleset updates
Firefox 5.2.21 / Chrome 2017.7.18
* Ruleset updates
Firefox 5.2.20 / Chrome 2017.7.5
* Ruleset updates
Firefox 5.2.19 / Chrome 2017.6.20
* Chrome: Allow advanced users to enable rulesets which cause MCB
* Chrome: Fix - removal of custom rulesets should persist
* Ruleset updates
Firefox 5.2.18 / Chrome 2017.6.5
* FF: Suppress request to check.torproject.org if SSL Observatory is disabled
* Chrome: Adding "View All Rules" link to Atlas
* Chrome: Allow removal of user-added, custom rulesets
* Ruleset updates
Firefox 5.2.17 / Chrome 2017.5.22
* Ruleset updates
Firefox 5.2.16 / Chrome 2017.5.8
* Ruleset updates
Firefox 5.2.15 / Chrome 2017.4.19
* Ruleset updates
Firefox 5.2.14 / Chrome 2017.4.5
* Ruleset updates
Firefox 5.2.13 / Chrome 2017.3.17
* Ruleset updates
Firefox 5.2.12 / Chrome 2017.3.9
* Excepting loopback hostnames from 'HTTPS Nowhere' functionality
* Ruleset updates
Firefox 5.2.11 / Chrome 2017.2.13
* Ruleset updates
Firefox 5.2.10 / Chrome 2017.1.25
* Removing targets which are HSTS preloaded in all supported browsers
* Ruleset updates
Firefox 5.2.9 / Chrome 2016.12.19
* Ruleset updates
* In HTTP Nowhere mode, attempt HTTPS before block
Firefox 5.2.8 / Chrome 2016.11.30
* Ruleset fixes
Firefox 5.2.7 / Chrome 2016.11.8
* Ruleset fixes
Firefox 5.2.6 / Chrome 2016.10.20
* Ruleset fixes
* Fix for domain isolation in Tor Browser with SSL Observatory
Firefox 5.2.5 / Chrome 2016.9.21
* Ruleset fixes
* Removing deprecated torbutton options
Firefox 5.2.4 / Chrome 2016.9.1
* Ruleset fixes
* Chrome Dev: Possible fix to "Extension Corrupted" errors
* Firefox Android: Fixing numerous issues with UI and functionality
* Firefox: Expanding SSL Observatory popup window
Firefox 5.2.3
* Bugfix release: fixing a possible DLL hijacking vulnerability
Firefox 5.2.2 / Chrome 2016.8.24
* Ruleset fixes
Firefox 5.2.1
* Bugfix release: fix CSS to prevent large icons
Chrome 2016.7.19
* New release fixing icon inclusion problem
Firefox 5.2.0 / Chrome 2016.7.18
* Ruleset fixes
* Updating icons
* 'Block all unencrypted requests' now allows requests to .onion addresses
Firefox 5.1.10 / Chrome 2016.6.9
* Ruleset fixes
* Fixing Tor Browser race condition
Firefox 5.1.9 / Chrome 2016.5.10
* Adds large Bitly branded domain ruleset
* Additional ruleset fixes
Firefox 5.1.6 / Chrome 2016.4.4
* Ruleset fixes
* Fix bug in Chromium, Firefox to limit FQDN
Firefox 5.1.5 / Chrome 2016.3.23
* Ruleset fixes
* Improve coverage tests
* Add trivialize-rules tool and trivialized rulesets
* Remove checker as submodule & add to mainline repo
Firefox 5.1.4 / Chrome 2016.2.23
* Fixes for Firefox Dev Edition
* Chrome: Fix regressions in custom rule functions
* Firefox: Fix custom ruleset regression
Firefox 5.1.3 / Chrome 2016.2.18
* Performance & memory usage improvements for Chrome
* Introduce temporary disable option on Chrome
* Bugfix: make custom rules disableable
* Improvements to tests
* Switch to using JSON to store rulesets
Firefox 5.1.2 / Chrome 2015.12.16
* Ruleset fixes
Firefox 5.1.1 / Chrome 2015.8.25
* Ruleset fixes
* Clean up some unused code that was causing review problems on AMO.
Firefox 5.1.0
* Signed by AMO so it won't get a warning in Firefox
Firefox 5.0.9
* Fixed missing translations from 5.0.8
Firefox 5.0.8 / Chrome-2015.8.13
* Ruleset fixes
* Restore checkbox icons on Firefox
* Add a link to the HTTPS Everywhere Atlas
Firefox 5.0.7 / Chrome-2015.7.17
* Ruleset fixes, in particular disable broken Netflix rule
* Fix "Add a rule" functionality in Chrome.
Chrome-2015.7.15
* Fix a broken ruleset that caused Chrome version to fail to rewrite all URLs.
Firefox 5.0.6 / Chrome-2015.7.13
* Ruleset fixes
* Move options from "Enable / Disable rules" into icon menu
* EFF 25th birthday edition!
Firefox 5.0.5 / Chrome-2015.5.28
* Ruleset fixes
* Fix ordering of locales to default to English again.
Firefox 5.0.4 / Chrome-2015.5.12
* Ruleset fixes
Firefox 5.0.3 / Chrome-2015.4.23
* Ruleset fixes
Firefox 5.0.2 / Chrome-2015.4.7
* Ruleset fixes
Firefox 5.0.1 / Chrome-2015.3.31 (2015-03-31)
* Disabled some broken rulesets.
* Fixed and updated many rulesets.
* Better null checking in Firefox.
* Add "Block All HTTP Requests" in Chrome.
Firefox 5.0 / Chrome-2015.3.23 (2015-03-23)
* First stable 5.0 release
Versus 4.0.3:
* Many new rulesets.
* Improved automated ruleset testing.
* Many new translations in Firefox version.
* Support for Firefox electrolysis (aka e10s aka process separation).
Firefox 5.0development.4 (2015-03-20)
* Ruleset updates
5.0development.3 (2015-03-10)
* Added automated ruleset testing.
* Disabled many rules that failed ruleset tests.
* Fix cookie securing so it works for wildcard cookies
even when a wildcard target host is not present.
* User rule creation in Chromium is only offered on HTTPS.
* Enabling and disabling user rules on Chromium works.
* Candidate for 5.0 series stable release.
5.0development.2 (2014-12-22)
* Merged mobile support from 4.0 branch.
* New translations imported:
Catalan, Chinese (Taiwan), Croatian (Croatia),
Estonian, Faroese, French (Canada), Khmer, Malay (Malaysia),
Portuguese (Brazil), Romanian, Serbian, Sinhala (Sri Lanka),
Slovak (Slovakia), Slovenian (Slovenia), Thai, Ukrainian
* Various ruleset fixes.
* Candidate for a 5.0 series stable release.
5.0development.1 (2014-11-25)
* Support for multi-process Firefox (aka electrolysis or e10s).
* Merge latest rulesets.
Firefox 4.0.3 / Chrome-2015.01.22 (2015-01-22)
* Ruleset updates.
* Update SSL Observatory code to match Firefox API changes in hashing.
* Bring code in line with guidelines for addons.mozilla.org.
4.0.2 (2014-10-15)
* Disable SSL 3 to Prevent POODLE attack:
https://github.com/EFForg/https-everywhere/pull/674
* NEW: HTTP Nowhere mode. Block all plaintext http
* Updates to Yahoo APIs, Fastly, VMWare, Netflix, Mashable, LinkedIn ,
Gitorious, Mozilla, msecnd, Hotmail, Live, Eniro, Steam, Phoronix,
net-security.org, Flickr, Craigslist, Apache.org, Joomla.org, Samsung,
Google IMages, Expedia, Akamai, Trip Advisor, Ikea, CEll, Leo.org, Facebook,
F-Secure, Dropbox, Courage Campaign, Box, Atlassian, Internet Archive,
localbitcoins.com, SOny, SciVerse, Web.com, Urgan Dictionary, Pornhub,
Fool.com, ClickBank, MGID, Which?, Microsoft, Barnes and Noble, Royal
Institute of GB, Wall Street Journal
4.0.1 (2014-09-11)
* Significant new coverage: Reddit, Quora
* Fixes include:
Frontier Networks, Hotmail / Live, Microsoft, Mozilla, Ohio State, Rackspace, SJ.se, Timbo.se
https://github.com/EFForg/https-everywhere/issues/310
https://github.com/EFForg/https-everywhere/issues/500
https://trac.torproject.org/projects/tor/ticket/11402
https://trac.torproject.org/projects/tor/ticket/11418
https://trac.torproject.org/projects/tor/ticket/12583
https://trac.torproject.org/projects/tor/ticket/12104
https://trac.torproject.org/projects/tor/ticket/9466
https://github.com/EFForg/https-everywhere/issues/144
* Enhancements to MCB detection and subsequent ruleset fixes
https://github.com/EFForg/https-everywhere/issues/529
chrome-2014.8.22 (2014-08-22)
* Rulesets from 4.0.0
* German translation
4.0.0 (2014-08-04)
* Ruleset fixes to wikimedia, stanford-university, joyent, and gaytorrents.
* Merge Android Firefox branch, so Android now has the same release cycle
as the stable HTTPS Everywhere branch for Firefox.
* Remove old unused ContentPolicy code.
5.0development.0 (2014-07-28)
* Various rules for new gaming sites:
https://github.com/EFForg/https-everywhere/pull/387
* Add exception for flashproxy:
https://github.com/EFForg/https-everywhere/issues/357
* Updates to joyent, moevideo, FreeDesktop, Gfycat, Bytemark, tchibo,
Kantonalbank rules, godaddy, Bing, Pcwelt.de, Gamestar.de, o2-online,
heise.de, mozdev.org, Wikimedia, Spotify, Stanford-University, various Swiss
websites, SourceForge, utwente.nl, teamfortress.com, Fastly, mozilla.org,
AmazonAws, Technology Review, jitsi, googlecode.com, CDT, and other rules.
* Add Denh.am, justeatuk, owncloud, seanmckaybeck.com, strimoid.pl,
elkosmasgr, mantisbt, IAPC, ReadTheDocs, tox.im, and other rules.
* Initialize Convergence's NSS.js with nss library path:
https://github.com/EFForg/https-everywhere/pull/315
* Add filter for OCSP and other requests that should be unrewritten:
https://github.com/EFForg/https-everywhere/pull/332
* Add testing framework and a few basic extension tests:
https://github.com/EFForg/https-everywhere/pull/338
* Fix Chrome redirect loop detection:
https://github.com/EFForg/https-everywhere/issues/289
* Fix loading of user rules:
https://github.com/EFForg/https-everywhere/pull/293
* Fix SSL Obs. preferences XML parsing bug.
* Add experimental "HTTP Nowhere" mode (blocks all HTTP requests):
https://github.com/EFForg/https-everywhere/pull/379
chrome-2014.6.26 (2014-06-25)
* Ruleset fixes (same as 3.5.3)
* Fix redirect loop detection for HTTPS to HTTPS redirects (Github #289)
* Remove item from rule cache when it is disabled by the user
3.5.3 (2014-06-25)
* Ruleset fixes to Mozilla, PCWorld, MacWorld, Google Books, 4chan blog,
BuzzFeed, BBC, googlecode, TechDirt, Wikia, Technology Review, Google
Translate, CDT, Science Direct, Sourceforge
* Fix rulesets.sqlite path, allowing global installation (Github #255)
* Revert components/ssl-observatory.js to 3.4.5, possibly fixing crash bug
(Github #262)
* Update observatory whitelist
4.0development.17 (2014-05-23)
* Re-enable ability to see all rulesets in enable/disable dialog.
* Fix allowing global installation:
https://github.com/EFForg/https-everywhere/pull/255
* Better observatory whitelisting:
https://github.com/EFForg/https-everywhere/pull/276
* Add option for SSL obs. revoked cert warnings:
https://github.com/EFForg/https-everywhere/pull/278
* Numerous ruleset updates
3.5.1 (2014-04-25)
* Revert https://github.com/EFForg/https-everywhere/pull/134 due to YouTube
breakage.
* Re-enable ability to see all rulesets in enable/disable dialog.
* Added more Debian coverage.
* Fixes to Doubleclick, Guardian, Heroku, Home Depot, HypeMachine, IMDB,
Justin.tv, Kikatek, Mozilla, MyFitnessPal, Pinterest, XKCD, Reuters,
Technet, Tumblr, Wordpress, Yandex, Youtube, Flickr.
* Fix Australis icon positioning:
https://github.com/EFForg/https-everywhere/pull/216
chrome-2014.4.25
* Ruleset fixes (same as 3.5.1)
chrome-2014.4.16
* Make Chrome build script compatible with Chrome release scripts.
* Fix disappearing icon: https://github.com/EFForg/https-everywhere/pull/220
* Fix XKCD images
chrome-2014.4.14.1
* Revert back to chrome-2014.1.3 because of bug in Chrome release script.
chrome-2014.4.14
* Add SV localization
* Add persistent user-generated rules, thanks to Vijay P.:
https://github.com/EFForg/https-everywhere/pull/60
* Use onBeforeRedirect for redirect loop detection:
https://github.com/EFForg/https-everywhere/pull/199
* Remove unneeded onBeforeSendHeaders listener:
https://github.com/EFForg/https-everywhere/pull/172
* Fix host-only cookie bug:
https://github.com/EFForg/https-everywhere/pull/166
* Split incognito mode:
https://github.com/EFForg/https-everywhere/pull/165
* Cleanup pageAction icon code:
https://github.com/EFForg/https-everywhere/pull/173
* Add and modify some rulesets (same as 3.5)
3.5 (2014-04-14)
* Merge all non-ruleset changes from 4.0development.16
* Merge all new/modified rulesets from 4.0development.16 that are
in the Alexa Top 1000 using utils/alexa-ruleset-checker.py. For a full list,
see utils/alexa-logs/07042014.log.
4.0development.16 (2014-04-14)
* Restore code that loads custom rule files:
https://github.com/EFForg/https-everywhere/pull/156
* Use loadContext interface to get windows associated with requests
* Reduce annoying logging messages
* Report cert warning pages to SSL Observatory
* Remove SSL Observatory observers when disabled
* Don't set LOAD_REPLACE flag:
https://github.com/EFForg/https-everywhere/pull/134
* Add script to merge rulesets in Alexa Top 1M, thanks to Claudio Moretti:
https://github.com/EFForg/https-everywhere/pull/149
* 8 new rules
* 59 modified rules
4.0development.15 (2014-02-05)
* Replace the single XML ruleset library with an sqlite database of rulesets
that are loaded on demand
- reduces startup time by a factor of 10-20:
https://trac.torproject.org/projects/tor/ticket/10174
- reduces RAM usage https://trac.torproject.org/projects/tor/ticket/4804
- Is scalable: https://trac.torproject.org/projects/tor/ticket/6118
Further analysis in this thread:
https://lists.eff.org/pipermail/https-everywhere/2014-January/001919.html
* Implement a cleanup case to recover from some Observatory UI code bugs that
would leave the Observatory off incorrectly.
https://trac.torproject.org/projects/tor/ticket/10728
* Fix observatory - private browsing mode interaction
https://trac.torproject.org/projects/tor/ticket/10208
* Ship 848 new rulesets
* Update cert whitelist
3.5android.0 (2014-01-31)
* First Firefox for Android release! :D
* Major UI changes for mobile compatibility
* Android channel update URL set to
https://www.eff.org/files/https-everywhere-android-update-2048.rdf
* Updated rulesets: Freenode, Imgur
3.4.5 (2014-01-03)
* Updated license
* Updated README.md
* Updated contributors list
* Fix a performance bug when re-enabling HTTPS-Everywhere from its menu
* Observatory cert whitelist update
* Updated rules: Atlassian, Brightcove, MIT, Pidgin, Microsoft, Whonix,
Skanetrafiken, Stack-Exchange, Stack-Exchange-mixedcontent
chrome-2014.1.3
* Various ruleset fixes
* Various performance improvements, thanks to Nick Semenkovich and Jacob
Hoffman-Andrews!
* Add LRU caching for rules
* Refactor out unused code
* Reload page when rule is disabled
* Upgrade URI.js
* Add fi translation
3.4.4tbb (2013-12-06)
* Pseudorelease, just for Tor Browser Bundle usage
* Tiny ruleset tweaks (XKCD is back)!
* Create an about:config setting that overrules mixedcontent ruleset disablement
3.4.3 (2013-12-03)
* Fixes: Cloudfront / Amazon MP3 player, Cornell/Arxiv, FlickR,
AmazonAWS/spiegel.tv
* Disable broken: Barns and Noble, Behance, Boards.ie, Elsevier, Kohls,
OpenDNS, Spin.de, Svenskakyrkan
* Deprecate the ContentPolicy API, fixing a crash bug
lurking since Firefox 20:
https://bugzilla.mozilla.org/show_bug.cgi?id=939180
* Fix really silly Observatory UI bug that would leave the Observatory off
for non-Tor users after they turned it on
* Update Observatory blacklist
* Bump maxVersion from Firefox 25 to 28.
4.0development.14 (2013-11-21)
* Deprecate the ContentPolicy API, fixing a crash bug
lurking since Firefox 20:
https://bugzilla.mozilla.org/show_bug.cgi?id=939180
* Fix really silly Observatory UI bug that would leave the Observatory off
for non-Tor users after they turned it on
* Ship 438 new rulesets
* Update Observatory blacklist
4.0development.13 (2013-10-04)
* HTTPS Everywhere builds are now deterministic!
* Numerous new and updated rules
3.4.2 (2013-10-04)
* HTTPS Everywhere builds are now deterministic!
* Global memory leak bug fixes
* Updated rules: Craigslist, Apple.com, Microsoft, CloudFront, UKLocalGov,
Bing, Cengage
* New rules from dev: IPTorrents.com, TvTorrents
4.0development.12 (2013-09-12)
* Fix clients1.google.com OSCP meltdown
https://trac.torproject.org/projects/tor/ticket/9713
* Updated rules: ConnMan, Viddler.com, ISC, GNOME, Dozuki, Thingiverse, Box,
ComputerWorld, Makerbot, McClatchy Interactive.com, Mozilla, Ohio State
University, printrbot, Thingiverse, Tradedoubler, XiTi.com, Flameeyes, Open
Clipart Library, Musopen, CERN, FilZilla, Google Services, Linux Foundation,
Debian, Python.org, Ardour, Netmarble, Drexel University, Guifi.net,
net-security.org, University of California, WordPress blogs, Perl.org
* New rules: Akira.org, AntiPolygraph.org, Banu.com, break.com, Click and
Pledge.com, DataCoup.com, linux-sunxi.org, Lockbox.com, PSC.edu, University
of Greifswald, University of Rostock, WIMM.com, ZeusClicks.com,
gayorrents.net, Addison.com.hk, Auto Ad Manager.com, Blutmagie.de,
Brixwork.com, HDtracks.com, hostname.sk, iPXE.org, Linn Records.com,
Navigant Research.com, OpenLDAP.org, Quotes and Sayings.com, Solid-Run.com,
TU-Dresden.de, Tux.Org, Ultrasurf.us, Zamzar.com, chaox.net, digilinux.ru,
iNaturalist.org, IUCNredlist.org, jensge.org, Libre Graphics World.org,
NAB.org, PengPod.com, pythonhosted.org, randombit.net, factorable.net,
JoeyH.name, Acunetix.com, Alex Cabal.com, Altera.com, Commotionwireless.net,
CounterMail.com, dotplex.de, Dyne.org, finalrewind.net, Keelog.com,
Mailinator.com, My Shadow.com, OpenMailBox.org, PwdHash.com, Silent
Sender.com, Standard Ebooks.com, Tarasic.com.tw, Barracuda.com
4.0development.11 (2013-08-30)
* Notify users who have been accidentally updated from stable to dev
https://trac.torproject.org/projects/tor/ticket/9600
* Added and updated numerous rules, including Craigslist
* Fixes toolbar button size
https://trac.torproject.org/projects/tor/ticket/9511
* Declare loop variables with var to avoid global memory leaks
* Updated localizations
3.4.1
* Fix typo resulting in variable leak in get_prefs(), thanks to Jérémy
Bobbio
3.4
* Do not upgrade stable users to the development branch!
* The previous release moved extension code from the development branch into
the stable branch, and changed many stable rules
chrome-2013.8.17
* Urgent bugfix release for
https://trac.torproject.org/projects/tor/ticket/9507
- release from the stable / 3.0 branch, not master
- don't ship the development ruleset library, it's not ready for prime
time yet
- avoid performance hits from repeatedly re-testing rulesets
- other possible weirdness
chrome-2013-8.16
* Includes all fixes from 3.3, 3.3.1, and 4.0development.10
* This will be the first Chromium release where the bulk of the rules that
are broken because of mixed content will be disabled by default
4.0development.10
* Numerous rules added, modified, and deleted
* Added utils/find_rules.py, python script by Osama Khalid to apply HTTPS
Everywhere rules to URLs
* Updated readme to include more dependencies
3.3.2
* We merged in a bunch of non-ruleset changes from 4.0development.9:
https://trac.torproject.org/projects/tor/ticket/9480
(Notable changes from this merge include a rewriting of fetch-source.js,
improvements to the CSS such that the icon changes color when disabled
and shows the number of applied rules when active, fixing bugs in
HTTPSRules.js and ApplicableList.js that led to undefined functions,
and rewriting makexpi.sh to accept a --fast flag.)
* The tickets described below were fixed by the merge from 4.0development.9:
https://trac.torproject.org/projects/tor/ticket/8998
https://trac.torproject.org/projects/tor/ticket/9374
* Add a script find_rules.py by Osama Khalid to utils/. It applies HTTPS
Everywhere rules to URLs.
* Add merge-rulesets.py from master to utils/.
* Removed default parameters for a js function that caused breakage
in older versions of FF.
* Changed mixed content blocking in FF to be based on the user's active
content blocking preferences rather than if the FF version is >=23.0.
* [Zurcher_Katonalbank] Add rule
* [LegitScript] www now supports SSL
* [DebianOwnCA] Debian self-signed cert rules
* [Debian] Update rule for non-self-signed domains
* [UKLocalGov] Add havering.gov.uk
* [aeriagames] Use CDN with valid cert
* [spu.ac.th] Disable (https site not found)
* Added rules from mishari for Loxinfo, SPU, Silkspan, Settrade,
Powerbuy, opengarden.com, Naiin, MyHappyOffice, Mirakar,
MarketingOops, Makewebeasy, m2fjob, LandandHouse, Jaymart,
Etravelway, Craigslist, Blognone, TrueCorp, dealfish, 3bbwifi,
thepiratebay, and priceza.
* [Ubuntu] Add rule for ubuntuforums.org
* [EuroBillTracker.xml] Add EuroBillTracker rule
* [wikidot] Exclusion for iframes
* [StockCharts] Add reason for disabling
* [9gag] Disable rule for breaking AJAX.
* [MayFirstPeopleLink] Updated rule
* [Derpiboo.ru] Add rule
* [Fedora Project] Split start
* [Lurkmore.to] Add rule
* [2ch.so] Add rule
* [FSF] Added the status and u subdomains
* [Reddit] Exclude blog
* [Desk.com] Fix
* [Cheezburger] Fix
* Updated debian dependencies in readme
* [Adtech.de] Add exclusion
3.3.1
* [Wikimedia] removed mixedcontent
4.0development.9
* Includes all fixes from 3.3
3.3
* This major release fixed the following mixed content blocker (MCB)
related bugs in time for Firefox 23:
https://trac.torproject.org/projects/tor/ticket/9196
https://trac.torproject.org/projects/tor/ticket/8774
https://trac.torproject.org/projects/tor/ticket/8776
* In effect, this update disables rulesets that cause mixed content errors
by default, and adds platform="mixedcontent" to 950 new rules. This is
necessary to prevent a massive amount of websites from breaking by default
for our users when Firefox 23 comes out.
* [Internet Archive] Moved to stable
* [Linaro] Default off per webmaster request
* [Applicom] Default off per webmaster request
chrome-2013.7.10
* In Chrome version, fixed css, "What is this?" link in popup, and added
favicons to popup (thanks to Jay Weisskopf)
* Includes all fixes from 3.2.4
3.2.4 (2013-07-10)
* [Yandex] remove maps from exclusions
* [Amazon Web Services] Add exclusion
https://trac.torproject.org/projects/tor/ticket/8907
* [Hotmail / Live] Add exclusion
https://trac.torproject.org/projects/tor/ticket/9026
* [Mozilla] Point labs to mozillalabs.org
https://mail1.eff.org/pipermail/https-everywhere-rules/2013-July/001636.html
* [Yandex] Exclude ll
* [Brightcove] Add exclusion
https://mail1.eff.org/pipermail/https-everywhere-rules/2013-May/001587.html
* [NYTimes] Add exclusion, disabled
* [News Corporation] Exclude 2013 images
https://trac.torproject.org/projects/tor/ticket/9040
* [imgbox] Fix typo
https://trac.torproject.org/projects/tor/ticket/8690
3.2.3 (2013-06-28)
* https://trac.torproject.org/projects/tor/query?group=status&milestone=HTTPS-E+3.2.3
chrome-2012.6.4
* The "factors of 12" chromium beta
* Various ruleset fixes:
https://www.eff.org/r.5bSj
https://trac.torproject.org/projects/tor/ticket/8584
https://trac.torproject.org/projects/tor/ticket/8571
* Disable Myspace by default due to mixed content
4.0development.8 (2013-06-04)
* Fix broken ruleset dialog in Firefox 22+
https://trac.torproject.org/projects/tor/ticket/8997
* The toolbar button changes to indicate active rulesets:
https://trac.torproject.org/projects/tor/ticket/4886
* Ship 31 new rulesets
* New translations: Japanese and Sinhala
* Updated translations: Hungarian, Lithuanian, Slovenian
* Ruleset fixes from 3.2.2:
https://www.eff.org/r.5bSj
* Observatory cert whitelist update
3.2.2 (2013-05-22)
* Quick turn-around release to unbreak support.apple.com
* Fixes for a number of other ruleset bugs:
https://www.eff.org/r.5bSj
* Incremental observatory cert whitelist update
3.2.1 (2013-05-17)
* Implement XHR outstanding request limits to work around TCP connection
exhaustion if the SSL Observatory server is slow or down:
https://trac.torproject.org/projects/tor/ticket/8670
https://bugzilla.mozilla.org/show_bug.cgi?id=856748
* Overdue update to the Observatory cert whitelist
* Other known ruleset fixes: EA, Yandex, Apple
https://trac.torproject.org/projects/tor/ticket/8584
https://trac.torproject.org/projects/tor/ticket/8571
4.0development.7 (2013-05-17)
* Implement XHR outstanding request limits to work around TCP connection
exhaustion if the SSL Observatory server is slow or down:
https://trac.torproject.org/projects/tor/ticket/8670
https://bugzilla.mozilla.org/show_bug.cgi?id=856748
* Add a note hinting users how to toggle rulesets (thanks to Pavel Kazakov)
https://trac.torproject.org/projects/tor/ticket/4967
* Ship all fixes from 3.2:
https://www.eff.org/r.b9Qc
* Other known ruleset fixes: EA, Yandex
https://trac.torproject.org/projects/tor/ticket/8571
* Ship 1308 new rulesets!
* Numerous new and updated translations
chrome-2012.4.30
* The "May day somewhere" chromium beta
* Ship all ruleset bugfixes from the Firefox 3.2 release:
https://www.eff.org/r.b9Qc
* Flag/disable mixed content rulesets: Apple Support, BBC, Dell support,
FBI, Wordpress, Zend
https://www.eff.org/r.1bQt
* Disable VistaX64
https://trac.torproject.org/projects/tor/ticket/8801
3.2 (2013-04-25)
* Related trac bugs for this release:
https://www.eff.org/r.b9Qc
* New: MoinMoin
* Fixes: Adobe, Bahn.de, Cloudfront, Dell, Droplr, FBI, Google Maps,
Joomla, Juno Download, Lenovo, New York Times, SEC, Soundcloud,
Tweakers.net, Univ Strasbourg, Vkontakte, Zend
* Disable broken: AirAsia, Netvibes, Newgrounds, Pirate Bay, Russia Today, SVT,
Wolfram Alpha
* Maybe fixed: Quantcast/Tumblr:
https://trac.torproject.org/projects/tor/ticket/8406 (maybe fixed)
* Sync languages and translations from the master branch.
* New languages: Finnish, Norwegian (Bokmål), Slovak, Bulgarian.
* All HTTPS Everywhere users will be now prompted about using the
SSL Observatory.
chrome-2012.3.7
* The "cookies uncrumbled" chromium beta
* Ship all ruleset bugfixes from Firefox 3.1.4
* Stop securing HTTP (non-S) cookies in weird cases!!!
https://trac.torproject.org/projects/tor/ticket/7492
4.0development.6 (2013-03-07)
* Disabled 26 broken or problematic rulesets
* Ship all ruleset fixes from 3.1.4
* Ship 232 new rulesets
* Numerous ruleset fixes
* Update cert whitelist
3.1.4 (2013-03-07)
* The circles are stable releasee
* Fixes:
AmazonAWS/Atomsforpeace.info, Disqus, Eventbrite, ImageShack.us, MySQL,
NuGet, NYTimes, Ooyala, Opera, Scientific American, SourceForge,
University of Southampton, UserVoice, WebType, Zendesk
https://trac.torproject.org/projects/tor/ticket/8056
https://trac.torproject.org/projects/tor/ticket/8349
https://trac.torproject.org/projects/tor/ticket/7690
https://trac.torproject.org/projects/tor/ticket/8025
https://trac.torproject.org/projects/tor/ticket/8077
https://trac.torproject.org/projects/tor/ticket/8199
https://trac.torproject.org/projects/tor/ticket/8198
* Disable broken:
American Public Media (for real this time), Asymmetric Publications,
Salsa Labs, Vimeo
https://trac.torproject.org/projects/tor/ticket/7650
https://trac.torproject.org/projects/tor/ticket/8280
https://trac.torproject.org/projects/tor/ticket/7569
* Update cert whitelist
chrome-2013.1.18
* "Internet Freedom" chromium beta
* Import all ruleset fixes from Firefox 3.1.3
4.0development.5 (2013-1-18)
* Internet Freedom Day development release
* Fix the implementation of safeToSecureCookie
- Get https://trac.torproject.org/projects/tor/ticket/7491 right(er)
- Fix https://trac.torproject.org/projects/tor/ticket/7855
* Fix a ruleset processing bug, which would prevent <target host="*.z.com">
from matching x.y.z.com
* Ship all ruleset fixes from 3.1.2 and 3.1.3
- Except Etsy, where we're trying to fix rather than disable the ruleset
https://trac.torproject.org/projects/tor/ticket/7774
* Ship 354 new rulesets
* Update cert whitelist
* Update translations: Korean, Polish, French
3.1.3 (2013-1-18)
* Internet Freedom Day stable bugfix release
* Fixes: CloudFront/Spotify, AmazonAWS (Amazon MP3s and product images), Libav,
Google Maps, UserEcho
https://trac.torproject.org/projects/tor/ticket/7931
https://trac.torproject.org/projects/tor/ticket/7888
https://trac.torproject.org/projects/tor/ticket/7594
https://trac.torproject.org/projects/tor/ticket/7539
https://trac.torproject.org/projects/tor/ticket/7698
* Disable broken: Coursera, EBay, Etsy, OpenOffice, Ping.fm, Pinterest :(
https://trac.torproject.org/projects/tor/ticket/7336
https://trac.torproject.org/projects/tor/ticket/7825
https://trac.torproject.org/projects/tor/ticket/7774
https://trac.torproject.org/projects/tor/ticket/7695
https://trac.torproject.org/projects/tor/ticket/7777
https://trac.torproject.org/projects/tor/ticket/7865
* Update cert whitelist
3.1.2 (2013-1-2)
* Release 3.1.2, since 3.1.1 was accidentally mis-tagged
* Fixes for: AmazonAWS/Datawrapper, Cachefly, Cloudfront/C-SPAN, Hetzner.de
KeyDrive/Snapnames, QT, openDesktop, OpenTTD, WhiskeyMedia
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-December/001432.html
https://trac.torproject.org/projects/tor/ticket/7608
https://trac.torproject.org/projects/tor/ticket/7567
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-December/001432.html
https://trac.torproject.org/projects/tor/ticket/7560
https://trac.torproject.org/projects/tor/ticket/7796
* Disable broken: FlossManuals, Pastebin, Poste.it, Ustream, TED, AusGamers
https://trac.torproject.org/projects/tor/ticket/7731
https://trac.torproject.org/projects/tor/ticket/7850
https://trac.torproject.org/projects/tor/ticket/7840
https://trac.torproject.org/projects/tor/ticket/7548
* Increase Observatory deployment (65%->85%)
* Update cert whitelist
chrome-2012.12.17
* The "overdue bugfixes" chromium beta
* Ship all ruleset bugfixes from Firefox 3.1 and 3.0.4
* Additional fixes for: AmazonAWS/Datawrapper, Cachefly, Cloudfront/C-SPAN,
Hetzner.de, KeyDrive/Snapnames, QT
* Additionally disable: Automattic
4.0development.4 (2012-12-17)
* Fix nasty bug that prevented Firefox downloads from Mozilla's CDN
https://trac.torproject.org/projects/tor/ticket/7717
* Fix download from qt-project.org
* Ship 72 new rulesets
* Include all rulset fixes from 3.1
3.1 (2012-12-12)
* Hacky solution to a very nasty bug in which <securecookie> directives
would cause cookies to be flagged as secure even if they were set from
HTTP origins!
https://trac.torproject.org/projects/tor/ticket/7491
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-November/001397.html
* Fixes: Akamai, Biomed central, BYU, Cachefly / Topix, DuckDuckGo, Focus.de,
Fortum, Mashable, Mail.ru, MayFirst/People Link, MIT, Rackspace,
Salsa Labs, SurveyMonkey, Tumblr
* Disable: Adtech.de, AllthingsD American Public Media, Dafont, MediaFire,
Verizon, vk.com, Wired, Conde Nast
* Observatory-only translations into Hebrew and Croatian
* Offer the SSL Observatory popup to a larger cohort of users
4.0development.3 (2012-12-3)
* Hacky solution to a very nasty bug in which <securecookie> directives
would cause cookies to be flagged as secure even if they were set from
HTTP origins!
https://trac.torproject.org/projects/tor/ticket/7491
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-November/001397.html
* Ship 245 new rulesets
* Fixes include: Internet Archive, Rackspace
* Disable broken: American Public Media, Verizon, Nieuwsblad.be, MyOpenID
* (Plus fixes and rulesets disabled between 4.0dev2 and 3.0.4)
* Observatory-only translations: Croatian, Hebrew
3.0.4 (2012-11-9)
* Fixes:
ACLU, Amazon, Barnes & Noble, CharityNavigator, Cloudfront/Turntable.fm,
Coursera, itella.fi, posti.fi, Uservoice
https://trac.torproject.org/projects/tor/ticket/7336
https://trac.torproject.org/projects/tor/ticket/7273
https://trac.torproject.org/projects/tor/ticket/7227
* Disable broken:
Asterisk, Boston Globe (separated out from NYTimes.com), Extabit, Gawker,
Google Services (Followers widget), NPR, SF.se, SonyMusic, Statcounter, WebType
https://trac.torproject.org/projects/tor/ticket/7270
https://trac.torproject.org/projects/tor/ticket/7243
https://trac.torproject.org/projects/tor/ticket/7361
https://trac.torproject.org/projects/tor/ticket/7120
https://trac.torproject.org/projects/tor/ticket/7278
https://trac.torproject.org/projects/tor/ticket/7363
https://trac.torproject.org/projects/tor/ticket/7294
* No longer cacert: lawblog.de
* Offer the SSL Observatory popup to a larger cohort of users
* Update translations: Spanish, Russian, Turkish, Swedish
chrome-2012.10.31
* The "ghosts and goblins" chromium alpha
* Work around a nasty bug that was affecting some high-volume Live Youtube streams
(but not other live YouTube streams)
https://trac.torproject.org/projects/tor/ticket/7127
* Other Fixes:
AdaCore, Akamai/MTV3 Katsomo, Akamai/HP, Atlassian, Bahn.de, MySQL, NPR, PBS,
Phronoix Media/Openbenchmarking, SSRN, Spoki
https://trac.torproject.org/projects/tor/ticket/7219
https://trac.torproject.org/projects/tor/ticket/7180
https://trac.torproject.org/projects/tor/ticket/7135
https://trac.torproject.org/projects/tor/ticket/7206
https://trac.torproject.org/projects/tor/ticket/7198
* Disable broken/buggy:
CBS/Last.fm, Citibank Australia, Bytename, HP, NIFTY, Microchip, MyOpenID, NttDocomo
https://trac.torproject.org/projects/tor/ticket/6587
https://trac.torproject.org/projects/tor/ticket/7226
https://trac.torproject.org/projects/tor/ticket/7111
https://trac.torproject.org/projects/tor/ticket/7161
https://trac.torproject.org/projects/tor/ticket/7114
https://trac.torproject.org/projects/tor/ticket/7138
https://trac.torproject.org/projects/tor/ticket/7107
3.0.3 (2012-10-29)
* Work around a nasty bug that was affecting some high-volume Live Youtube streams
(but not other live YouTube streams)
https://trac.torproject.org/projects/tor/ticket/7127
* Other Fixes:
AdaCore, Akamai/MTV3 Katsomo, Akamai/HP, Atlassian, Bahn.de, DemocracyNow, MySQL, NuGet,
PBS, Phronoix Media/Openbenchmarking, SSRN, Spoki
https://trac.torproject.org/projects/tor/ticket/7219
https://trac.torproject.org/projects/tor/ticket/7180
https://trac.torproject.org/projects/tor/ticket/7135
https://trac.torproject.org/projects/tor/ticket/7206
https://trac.torproject.org/projects/tor/ticket/7198
* Disable broken/buggy:
CBS/Last.fm, Citibank Australia, Bytename, HP, NIFTY, Microchip, MyOpenID, NttDocomo
https://trac.torproject.org/projects/tor/ticket/6587
https://trac.torproject.org/projects/tor/ticket/7226
https://trac.torproject.org/projects/tor/ticket/7111
https://trac.torproject.org/projects/tor/ticket/7161
https://trac.torproject.org/projects/tor/ticket/7114
https://trac.torproject.org/projects/tor/ticket/7138
https://trac.torproject.org/projects/tor/ticket/7107
* Updated translations:
Greek, Russian, Latvian
* New translation:
Turkish
* Offer the SSL Observatory popup to a larger cohort of users
4.0development.2 (2012-10-25)
* Ship 67 new rulesets
* Fix broken logouts from non-US Google accounts:
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-October/001347.html
* Other fixes:
Microsoft (Bing login button), ZeniMax, Ubuntuone, TrueCrypt, Springer,
Optical Society, IMDB, Facebook, EzineArticles, Broadband Reports, Apache,
Akamai (exclude Zynga content to prevent breakage of some Zynga games),
Costco, Atlassian, Akamai/MTV3 Katsomo
* Disable broken/buggy:
HP, Bytename, NIFTY, Microchip, NttDocomo
* Updated translations:
Greek, Russian, Latvian
* New translation:
Turkish
chrome-2012.10.18
* The "even more perfect" chromium alpha
* Fixes from the last two Firefox releases:
Microsoft (Bing login button), ZeniMax, Ubuntuone, TrueCrypt, Springer,
Optical Society, IMDB, Facebook, EzineArticles, Broadband Reports, Apache,
Akamai (exclude Zynga content to prevent breakage of some Zynga games),
Costco Akamai/SVTplay.se, Bahn.de, European Southern Observatory, IEEE,
Indeed, Java, Librivox, Pinterest, New York Times, Springer, Vimeo,
Shannon Health, O'Reilly Media
* Also fix: DemocracyNow, NuGet
* Disable: NIFTY
3.0.2 (2012-10-16)
* Some fixes that should have shipped in 3.0.1, but actually didn't:
European Southern Observatory, Indeed, LibriVox
* New fixes:
Microsoft (Bing login button), ZeniMax, Ubuntuone, TrueCrypt, Springer
(fix / reenable), Optical Society, IMDB, Facebook, EzineArticles,
Broadband Reports, Apache, Akamai (exclude Zynga content to prevent
breakage of some Zynga games), Costco
4.0development.1 (2012-10-11)
* Merge the 4.0 branch, which ships 884 new rulesets and expands
hundreds of others
3.0.1 and 4.0development.1:
* Fixes: adition.com, Akamai/SVTplay.se, Bahn.de, European Southern Observatory,
IEEE, Indeed, Java, Librivox, Pinterest, New York Times, Springer, Vimeo,
Shannon Health, O'Reilly Media
https://trac.torproject.org/projects/tor/ticket/7080
https://mail1.eff.org/pipermail/https-everywhere/2012-October/001583.html
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-October/001339.html
https://mail1.eff.org/pipermail/https-everywhere-rules/2012-October/001343.html
* Disable broken: Springer