-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathchangelog
949 lines (540 loc) · 28.1 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
vyatta-webproxy (0.2.110+vyos2+current2) unstable; urgency=low
* Bugfix T1054
* fixes posinst scripts since squidguard has its own location for ocnfig files
-- hagbard <[email protected]> Wed, 28 Nov 2018 15:18:16 -0800
vyatta-webproxy (0.2.110+vyos2+current1) unstable; urgency=medium
[ Thomas Jepp ]
* Fix build depends.
[ Kim Hagen ]
-- Kim Hagen <[email protected]> Sun, 24 Jan 2016 15:29:59 -0500
vyatta-webproxy (0.2.110+vyos2+lithium8) unstable; urgency=low
[ Maciej Pasiak ]
* bug #596 - outgoing webproxy address
[ Alex Harpin ]
* vyatta-webproxy: check the outgoing-address is a local address
-- Alex Harpin <[email protected]> Sat, 21 Nov 2015 13:51:17 +0000
vyatta-webproxy (0.2.110+vyos2+lithium7) unstable; urgency=low
[ Viktor Loosz ]
* ldap_port value check fix
[ Alex Harpin ]
* vyatta-webproxy: formatting changes for style consistency
-- Alex Harpin <[email protected]> Sat, 10 Oct 2015 18:19:52 +0100
vyatta-webproxy (0.2.110+vyos2+lithium6) unstable; urgency=low
* vyatta-webproxy: update dh_gencontrol with new development build flag
-- Alex Harpin <[email protected]> Mon, 22 Jun 2015 07:53:57 +0100
vyatta-webproxy (0.2.110+vyos2+lithium5) unstable; urgency=low
[ Alex Harpin ]
* vyatta-webproxy: add monitoring of the squid access and cache logs
* vyatta-webproxy: set monitoring to use sudo for squid logs
-- Alex Harpin <[email protected]> Mon, 02 Mar 2015 06:46:09 +0000
vyatta-webproxy (0.2.110+vyos2+lithium4) unstable; urgency=low
[ Alex Harpin ]
* vyatta-webproxy: use 'intercept' instead of 'transparent' in squid.conf
-- Alex Harpin <[email protected]> Sat, 28 Feb 2015 18:43:54 +0000
vyatta-webproxy (0.2.110+vyos2+lithium3) unstable; urgency=low
[ Igor Golubkov ]
* allow use of 0.0.0.0 as listen address
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Mon, 09 Feb 2015 22:28:08 +0000
vyatta-webproxy (0.2.110+vyos2+lithium2) unstable; urgency=low
[ Igor Golubkov ]
* vyatta-webproxy: fixes for compatibility with active directory
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Thu, 08 Jan 2015 18:20:57 +0000
vyatta-webproxy (0.2.110+vyos2+lithium1) unstable; urgency=low
* New branch
-- Alex Harpin <[email protected]> Tue, 02 Dec 2014 08:28:09 +0000
vyatta-webproxy (0.2.110+vyos1+helium5) unstable; urgency=low
* Bug #351: fix LDAP helper options.
* Set default real to "VyOS Web Proxy" rather than "Vyatta Web Proxy".
-- Daniil Baturin <[email protected]> Thu, 16 Oct 2014 07:15:58 +0200
vyatta-webproxy (0.2.110+vyos1+helium4) unstable; urgency=low
* Fix maintainer address.
-- Daniil Baturin <[email protected]> Fri, 05 Sep 2014 23:37:36 +0200
vyatta-webproxy (0.2.110+vyos1+helium3) unstable; urgency=low
[ Daniil Baturin ]
* Bug #169: return empty string from squid_get_auth_settings(), as
[ Ewald van Geffen ]
* Bugfix 2: Add a command to clear the squid web proxy cache
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Sat, 26 Jul 2014 19:49:53 +0200
vyatta-webproxy (0.2.110+vyos1+helium2) unstable; urgency=low
* Fix version
-- Daniil Baturin <[email protected]> Sat, 15 Feb 2014 20:36:59 +0100
vyatta-webproxy (0.2.110+vyos+helium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Sat, 15 Feb 2014 20:36:16 +0100
vyatta-webproxy (0.2.110+hydrogen2) unstable; urgency=low
* Added backend for proxy LDAP authentication
* Added configuration templates for proxy LDAP authentication.
* Web proxy LDAP auth: don't allow bind-dn to be set without a
password
* Add LDAP support to SquidGuard
* Add templates for user-group and LDAP search in SquidGuard
-- Daniil Baturin <[email protected]> Mon, 02 Dec 2013 13:16:17 +0100
vyatta-webproxy (0.2.110+hydrogen1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Sun, 17 Nov 2013 01:28:05 +0100
vyatta-webproxy (0.2.110+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <[email protected]> Sat, 13 Oct 2012 13:31:52 -0700
vyatta-webproxy (0.2.110) unstable; urgency=low
* new branch
-- John Southworth <[email protected]> Fri, 12 Oct 2012 19:48:24 -0700
vyatta-webproxy (0.2.109) unstable; urgency=low
* Bugfix 7541: move auto-update detection to code that is always run
on commit
-- John Southworth <[email protected]> Fri, 23 Mar 2012 09:36:49 -0700
vyatta-webproxy (0.2.108) unstable; urgency=low
* Bugfix 7944: Replace & with _and_ so as not to break completion
-- John Southworth <[email protected]> Tue, 20 Mar 2012 09:49:55 -0700
vyatta-webproxy (0.2.107) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Sat, 03 Mar 2012 02:26:42 -0800
vyatta-webproxy (0.2.106) unstable; urgency=low
* Remove update toplevel node.def from webproxy, toplevel node.def
files go in vyatta-op
-- John Southworth <[email protected]> Thu, 27 Oct 2011 17:50:53 -0500
vyatta-webproxy (0.2.105) unstable; urgency=low
* fix perlcritic warnings for Webproxy.pm
-- John Southworth <[email protected]> Fri, 30 Sep 2011 17:08:27 -0500
vyatta-webproxy (0.2.104) unstable; urgency=low
* Bugfix 7485: set a default update hour for webproxy, so if auto-
update is configured without an update-hour then it will update at
midnight
* 0.2.103
-- John Southworth <[email protected]> Tue, 30 Aug 2011 17:21:06 -0500
vyatta-webproxy (0.2.103) unstable; urgency=low
* Bugfix 7485: set a default update hour for webproxy, so if auto-
update is configured without an update-hour then it will update at
midnight
-- John Southworth <[email protected]> Tue, 30 Aug 2011 17:21:01 -0500
vyatta-webproxy (0.2.102) unstable; urgency=low
* Bugfix: 7311 add allowed values to webproxy update hour to make it
consistent with content-inspection auto-update
-- John Southworth <[email protected]> Mon, 11 Jul 2011 18:59:46 -0500
vyatta-webproxy (0.2.101) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Thu, 07 Jul 2011 20:59:34 -0700
vyatta-webproxy (0.2.100) unstable; urgency=low
* Remove unneeded debugging output
-- John Southworth <[email protected]> Fri, 10 Jun 2011 15:03:41 -0700
vyatta-webproxy (0.2.99) unstable; urgency=low
* Bugfix 6793: validate https configuration before starting webproxy
-- John Southworth <[email protected]> Wed, 08 Jun 2011 14:23:07 -0500
vyatta-webproxy (0.2.98) unstable; urgency=low
* "update webproxy blacklists" now compatible with REST api.
-- Michael Larson <[email protected]> Thu, 05 May 2011 12:26:15 -0700
vyatta-webproxy (0.2.97) unstable; urgency=low
* revert and modify fc34cff21ac3eaff51f736fcc8fa28a3629a0402
-- Mohit Mehta <[email protected]> Mon, 11 Apr 2011 18:42:27 -0700
vyatta-webproxy (0.2.96) unstable; urgency=low
* Fix 5784: show webproxy update-log doesn't work for Vyattaguard
-- Stig Thormodsrud <[email protected]> Mon, 24 Jan 2011 15:38:42 -0800
vyatta-webproxy (0.2.95) unstable; urgency=low
* Fix 6701: for url-filtering squidguard accepts value 0 for a rule
* Fix 6693: the upper bound to the max-cache size generates an error
* Fix 6695: the upper bound to the mem-cache-size generates an error
even though it takes the configuration
* Fix 6699: no check available on the local-block-url for http://
-- Stig Thormodsrud <[email protected]> Thu, 20 Jan 2011 18:14:34 -0800
vyatta-webproxy (0.2.94) unstable; urgency=low
* new branch
-- An-Cheng Huang <[email protected]> Tue, 28 Dec 2010 13:52:57 -0800
vyatta-webproxy (0.2.93) unstable; urgency=low
* Revert global data directory till next release.
-- Stig Thormodsrud <[email protected]> Tue, 21 Dec 2010 18:49:38 -0800
vyatta-webproxy (0.2.92) unstable; urgency=low
* restart https-filter along with webproxy when running 'restart
webproxy'
-- Mohit Mehta <[email protected]> Tue, 14 Dec 2010 15:32:09 -0800
vyatta-webproxy (0.2.91) unstable; urgency=low
* code to view HTTP, HTTPS and combined blacklist log and summary
-- Mohit Mehta <[email protected]> Mon, 13 Dec 2010 11:49:13 -0800
vyatta-webproxy (0.2.90) unstable; urgency=low
* fix regex for category to include drops by rules as well. shorten
format length
-- Mohit Mehta <[email protected]> Fri, 10 Dec 2010 16:10:59 -0800
vyatta-webproxy (0.2.89) unstable; urgency=low
* Remove stray ']' in postinst.
-- Stig Thormodsrud <[email protected]> Fri, 10 Dec 2010 14:57:26 -0800
vyatta-webproxy (0.2.88) unstable; urgency=low
* use more available screen space within 80 chars
-- Mohit Mehta <[email protected]> Fri, 10 Dec 2010 12:14:06 -0800
vyatta-webproxy (0.2.87) unstable; urgency=low
* Fix "show webproxy update-log" to point to global datadir.
-- Stig Thormodsrud <[email protected]> Tue, 07 Dec 2010 16:09:37 -0800
vyatta-webproxy (0.2.86) unstable; urgency=low
[ Daniil Baturin ]
* Bug 6233, add check for listen-address to be primary and issue a
warning otherwise
[ Stig Thormodsrud ]
-- Stig Thormodsrud <[email protected]> Tue, 07 Dec 2010 15:28:51 -0800
vyatta-webproxy (0.2.85) unstable; urgency=low
* Address more of Stephen code review comments.
-- Stig Thormodsrud <[email protected]> Mon, 06 Dec 2010 18:11:15 -0800
vyatta-webproxy (0.2.84) unstable; urgency=low
[ Daniil Baturin ]
* Bug 6137, add backend for setting maximum reply body size.
* Bug 6137, add configuration templates for maximum reply body size.
[ Stig Thormodsrud ]
* Remove verb from help string.
-- Stig Thormodsrud <[email protected]> Mon, 06 Dec 2010 15:08:02 -0800
vyatta-webproxy (0.2.83) unstable; urgency=low
* Don't need use sudo when calling iptables.
* Address some of Stephen's code review comments.
* Address some of Stephen's code review comments.
-- Stig Thormodsrud <[email protected]> Sat, 04 Dec 2010 16:39:52 -0800
vyatta-webproxy (0.2.82) unstable; urgency=low
* More changes to use global data dir.
-- Stig Thormodsrud <[email protected]> Sat, 04 Dec 2010 15:47:25 -0800
vyatta-webproxy (0.2.81) unstable; urgency=low
[ Daniil Baturin ]
* Resolved bug 4555, added backend for setting maximum_object_size and
minimum_object_size
* Added templates for maximum and minimum object sizes for webproxy
(bug 4555)
[ Stig Thormodsrud ]
* Add unit size to val_help string.
-- Stig Thormodsrud <[email protected]> Sat, 04 Dec 2010 14:40:37 -0800
vyatta-webproxy (0.2.80) unstable; urgency=low
* Recreate squidguard db dir if doesn't exist (like after init-
floppy).
-- Stig Thormodsrud <[email protected]> Sat, 04 Dec 2010 14:02:17 -0800
vyatta-webproxy (0.2.79) unstable; urgency=low
[ Daniil Baturin ]
* Resolved bug 6231, replaced "clear webproxy process" with "restart
webproxy".
* Removed old templates for "clear webproxy process"
[ Stig Thormodsrud ]
-- Stig Thormodsrud <[email protected]> Fri, 03 Dec 2010 14:02:33 -0800
vyatta-webproxy (0.2.78) unstable; urgency=low
* release
-- Stig Thormodsrud <[email protected]> Thu, 02 Dec 2010 17:18:25 -0800
vyatta-webproxy (0.2.77) unstable; urgency=low
* Change squid/squidguard to use global data directory.
-- Stig Thormodsrud <[email protected]> Thu, 02 Dec 2010 17:16:37 -0800
vyatta-webproxy (0.2.76) unstable; urgency=low
* add call to update https daemon and exit 1 for scripts failures
-- Mohit Mehta <[email protected]> Thu, 02 Dec 2010 13:10:59 -0800
vyatta-webproxy (0.2.75) unstable; urgency=low
* https-filter start/stop and move ipaddr_intf hash to Misc.pm
-- Mohit Mehta <[email protected]> Wed, 01 Dec 2010 12:25:28 -0800
vyatta-webproxy (0.2.74) unstable; urgency=low
* Fix 6452: "WARNING cache_mem ..." is returned after "... webproxy
listen-address <>" is set/committed
-- Stig Thormodsrud <[email protected]> Mon, 29 Nov 2010 17:09:57 -0800
vyatta-webproxy (0.2.73) unstable; urgency=low
* Fix 6218: [squeeze] squid generates error messages when starting
-- Stig Thormodsrud <[email protected]> Mon, 29 Nov 2010 16:35:21 -0800
vyatta-webproxy (0.2.72) unstable; urgency=low
* * move vyattaguard start/stop actions to service/webproxy/node.def
-- Mohit Mehta <[email protected]> Fri, 19 Nov 2010 17:39:19 -0800
vyatta-webproxy (0.2.71) unstable; urgency=low
* use exist() from config mode and existOrig() from op mode.
-- Stig Thormodsrud <[email protected]> Tue, 16 Nov 2010 18:03:26 -0800
vyatta-webproxy (0.2.70) unstable; urgency=low
* Use $config->existsOrig() when called from op mode.
* Update .gitignore file.
-- Stig Thormodsrud <[email protected]> Sat, 06 Nov 2010 11:35:58 -0700
vyatta-webproxy (0.2.69) unstable; urgency=low
* Fix new warning in squeeze version of squid3. (related to bug 6218)
-- Stig Thormodsrud <[email protected]> Wed, 22 Sep 2010 17:41:02 -0700
vyatta-webproxy (0.2.68) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 02 Sep 2010 18:31:09 -0700
vyatta-webproxy (0.2.67) unstable; urgency=low
* remove more low-level config dir usage
-- An-Cheng Huang <[email protected]> Tue, 17 Aug 2010 18:33:49 -0700
vyatta-webproxy (0.2.66) unstable; urgency=low
* remove low-level config dir usage
-- An-Cheng Huang <[email protected]> Tue, 17 Aug 2010 18:24:48 -0700
vyatta-webproxy (0.2.65) unstable; urgency=low
* remove low-level config dir usage
-- An-Cheng Huang <[email protected]> Mon, 16 Aug 2010 16:11:17 -0700
vyatta-webproxy (0.2.64) unstable; urgency=low
* Fix 5880: webproxy source-group name should not start with number
-- Stig Thormodsrud <[email protected]> Tue, 27 Jul 2010 17:14:47 -0700
vyatta-webproxy (0.2.63) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 22 Jul 2010 17:26:35 -0700
vyatta-webproxy (0.2.62) unstable; urgency=low
* Fix spelling of clientaddr.
-- Stig Thormodsrud <[email protected]> Thu, 22 Jul 2010 10:28:44 -0700
vyatta-webproxy (0.2.61) unstable; urgency=low
* Webproxy help string clean up.
-- Stig Thormodsrud <[email protected]> Mon, 19 Jul 2010 15:27:18 -0700
vyatta-webproxy (0.2.60) unstable; urgency=low
* Fix 5739: webproxy generates continues to generate iptables errors.
-- Stig Thormodsrud <[email protected]> Thu, 24 Jun 2010 15:04:04 -0700
vyatta-webproxy (0.2.59) unstable; urgency=low
* Change webproxy to use IpTables::Mgr to enable/disable conntrack.
-- Stig Thormodsrud <[email protected]> Thu, 10 Jun 2010 15:06:52 -0700
vyatta-webproxy (0.2.58) unstable; urgency=low
* Remove leading zeros on update-hour.
-- Stig Thormodsrud <[email protected]> Wed, 21 Apr 2010 16:47:38 -0700
vyatta-webproxy (0.2.57) unstable; urgency=low
* Fix 5529: ENH: add proxy-bypass to webproxy
-- Stig Thormodsrud <[email protected]> Fri, 09 Apr 2010 16:37:36 -0700
vyatta-webproxy (0.2.56) unstable; urgency=low
* Fix 5528: EN: add support for disable url-filtering.
-- Stig Thormodsrud <[email protected]> Fri, 09 Apr 2010 10:56:03 -0700
vyatta-webproxy (0.2.55) unstable; urgency=low
* Partial fix for QC138 - The filtering on sub-directories doesn't
work correctly.
-- Stig Thormodsrud <[email protected]> Thu, 08 Apr 2010 18:12:38 -0700
vyatta-webproxy (0.2.54) unstable; urgency=low
* Remove cron file on auto-update delete.
-- Stig Thormodsrud <[email protected]> Thu, 25 Mar 2010 14:32:35 -0700
vyatta-webproxy (0.2.53) unstable; urgency=low
* Ignore error message when deleting the chain for non-transparent
proxy.
-- Stig Thormodsrud <[email protected]> Tue, 23 Mar 2010 12:00:33 -0700
vyatta-webproxy (0.2.52) unstable; urgency=low
* Add extra check for tab completion with missing database.
-- Stig Thormodsrud <[email protected]> Tue, 23 Mar 2010 11:46:59 -0700
vyatta-webproxy (0.2.51) unstable; urgency=low
* Add -D to update script if running in 'net-only' mode.
-- Stig Thormodsrud <[email protected]> Mon, 22 Mar 2010 17:55:33 -0700
vyatta-webproxy (0.2.50) unstable; urgency=low
* Add 'show webproxy update-log' for vyattaguard.
-- Stig Thormodsrud <[email protected]> Fri, 19 Mar 2010 16:05:10 -0700
vyatta-webproxy (0.2.49) unstable; urgency=low
* add hook for local squid config
-- An-Cheng Huang <[email protected]> Thu, 11 Mar 2010 14:24:35 -0800
vyatta-webproxy (0.2.48) unstable; urgency=low
* Fix 5409: iptables: Too many links when deleting webproxy from
config
-- Stig Thormodsrud <[email protected]> Fri, 05 Mar 2010 10:34:08 -0800
vyatta-webproxy (0.2.47) unstable; urgency=low
* Fix 5387: ENH: allow vyattaguard database update to specific update-
hour
-- Stig Thormodsrud <[email protected]> Wed, 03 Mar 2010 17:28:27 -0800
vyatta-webproxy (0.2.46) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Wed, 17 Feb 2010 16:16:45 -0800
vyatta-webproxy (0.2.45) unstable; urgency=low
* Add lockfile to blacklist update.
-- Stig Thormodsrud <[email protected]> Mon, 11 Jan 2010 14:35:01 -0800
vyatta-webproxy (0.2.44) unstable; urgency=low
* Change "premium-filter" to "vyattaguard".
-- Stig Thormodsrud <[email protected]> Thu, 10 Dec 2009 18:21:00 -0800
vyatta-webproxy (0.2.43) unstable; urgency=low
* Fix 4038: Implement Safe Search Feature for popular search engines
-- Stig Thormodsrud <[email protected]> Fri, 04 Dec 2009 11:00:33 -0800
vyatta-webproxy (0.2.42) unstable; urgency=low
* added required keyword to help text.
-- Michael Larson <[email protected]> Mon, 30 Nov 2009 16:37:09 -0800
vyatta-webproxy (0.2.41) unstable; urgency=low
* Add auto-update for premium-filter.
* Fix test_uf to work with srcclass.
* Add support for allow-category.
-- Stig Thormodsrud <[email protected]> Fri, 27 Nov 2009 16:52:26 -0800
vyatta-webproxy (0.2.40) unstable; urgency=low
* Add the ability to configure external classifier for premium url
filter.
-- Stig Thormodsrud <[email protected]> Tue, 24 Nov 2009 14:57:15 -0800
vyatta-webproxy (0.2.39) unstable; urgency=low
* dependency update
-- Michael Larson <[email protected]> Fri, 13 Nov 2009 14:15:06 -0800
vyatta-webproxy (0.2.38) unstable; urgency=low
* Fix 5029: url-filter no longer accepts negated time-period
-- Stig Thormodsrud <[email protected]> Tue, 20 Oct 2009 18:45:44 -0700
vyatta-webproxy (0.2.37) unstable; urgency=low
* priority pushed to node.def
-- slioch <[email protected]> Tue, 20 Oct 2009 16:21:30 -0700
vyatta-webproxy (0.2.36) unstable; urgency=low
* Fix 4960: url-filter doesn't validate source-group used by rule
-- Stig Thormodsrud <[email protected]> Fri, 25 Sep 2009 13:01:23 -0700
vyatta-webproxy (0.2.35) unstable; urgency=low
* Fix 4958: Squid Parent: child process 8748 exited due to signal 6
-- Stig Thormodsrud <[email protected]> Thu, 24 Sep 2009 15:17:20 -0700
vyatta-webproxy (0.2.34) unstable; urgency=low
* add support for persistent update status information
-- Mohit Mehta <[email protected]> Thu, 24 Sep 2009 09:03:55 -0700
vyatta-webproxy (0.2.33) unstable; urgency=low
* Fix 4954: webproxy blacklist auto-update not working.
-- Stig Thormodsrud <[email protected]> Wed, 23 Sep 2009 18:30:59 -0700
vyatta-webproxy (0.2.32) unstable; urgency=low
* Add option to install blacklist from file instead of net.
-- Stig Thormodsrud <[email protected]> Wed, 29 Jul 2009 15:59:38 -0700
vyatta-webproxy (0.2.31) unstable; urgency=low
* Remove unnecessary check when doing non-interactive update.
-- Stig Thormodsrud <[email protected]> Tue, 28 Jul 2009 15:25:04 -0700
vyatta-webproxy (0.2.30) unstable; urgency=low
* Bug4527: remove used node.def under node.tag
* Allow https as a redirect-url for url-filter.
-- Stig Thormodsrud <[email protected]> Thu, 18 Jun 2009 15:51:54 -0700
vyatta-webproxy (0.2.29) unstable; urgency=low
* Shouldn't use user entered data as acl name.
-- Stig Thormodsrud <[email protected]> Fri, 05 Jun 2009 12:06:31 -0700
vyatta-webproxy (0.2.28) unstable; urgency=low
* Change ${vyatta_sbin} to hard-coded path since webgui doesn't source
-- Stig Thormodsrud <[email protected]> Thu, 04 Jun 2009 15:30:09 -0700
vyatta-webproxy (0.2.27) unstable; urgency=low
* Change 'policy-rule' to 'rule'. Bug 4500.
-- Stig Thormodsrud <[email protected]> Thu, 04 Jun 2009 11:16:27 -0700
vyatta-webproxy (0.2.26) unstable; urgency=low
* Add default: to node.def so it'll show up with "show service
webproxy
-- Stig Thormodsrud <[email protected]> Wed, 03 Jun 2009 08:45:44 -0700
vyatta-webproxy (0.2.25) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Fri, 29 May 2009 18:37:47 -0700
vyatta-webproxy (0.2.24) unstable; urgency=low
* Check for undefined variable.
-- Stig Thormodsrud <[email protected]> Fri, 29 May 2009 17:32:03 -0700
vyatta-webproxy (0.2.23) unstable; urgency=low
* Fix spelling error in comment.
* Fix generation of local-* squidguard db's.
-- Stig Thormodsrud <[email protected]> Thu, 28 May 2009 18:15:59 -0700
vyatta-webproxy (0.2.22) unstable; urgency=low
* Add utility to test url filter.
-- Stig Thormodsrud <[email protected]> Thu, 28 May 2009 17:48:42 -0700
vyatta-webproxy (0.2.21) unstable; urgency=low
* Add a workaround for bug 4358 (Webproxy: Cache in /var/tmp isn't
-- Stig Thormodsrud <[email protected]> Tue, 26 May 2009 18:45:51 -0700
vyatta-webproxy (0.2.20) unstable; urgency=low
* Add missing description type.
-- Stig Thormodsrud <[email protected]> Tue, 26 May 2009 14:08:20 -0700
vyatta-webproxy (0.2.19) unstable; urgency=low
* Add support for webproxy "domain-block" and "domain-noncache".
* Initialize $output.
-- Stig Thormodsrud <[email protected]> Tue, 26 May 2009 11:42:53 -0700
vyatta-webproxy (0.2.18) unstable; urgency=low
* Add listen-address to local-ok.
-- Stig Thormodsrud <[email protected]> Sun, 24 May 2009 14:11:58 -0700
vyatta-webproxy (0.2.17) unstable; urgency=low
* Minor format cleanup.
* Change group-policy to policy-run to expose acl ordering.
-- Stig Thormodsrud <[email protected]> Sun, 24 May 2009 11:26:14 -0700
vyatta-webproxy (0.2.16) unstable; urgency=low
* Add description nodes for source-group, time-period, and group-
policy.
* Update copyright date.
* Fix problems with delete of 'local' groups not deleting
directory/file in blacklist directory.
* Reduce duplicate writes.
-- Stig Thormodsrud <[email protected]> Tue, 19 May 2009 18:36:32 -0700
vyatta-webproxy (0.2.15) unstable; urgency=low
* Fix 4406: webproxy daemon failed to be restarted after " update
webproxy
-- Stig Thormodsrud <[email protected]> Thu, 14 May 2009 15:46:55 -0700
vyatta-webproxy (0.2.14) unstable; urgency=low
* Change url-filter "default-policy" to "default-action".
* Forgot to delete default-policy nodes.
* Use policy group rather than source group for acl.
-- Stig Thormodsrud <[email protected]> Tue, 12 May 2009 20:02:34 -0700
vyatta-webproxy (0.2.13) unstable; urgency=low
* Remove duplicate "contact".
* Remove duplicate "contact".
* Add source-based and time-based URL filtering.
-- Stig Thormodsrud <[email protected]> Tue, 12 May 2009 16:45:12 -0700
vyatta-webproxy (0.2.12) unstable; urgency=low
* Add configurable default-policy for webproxy url-filter.
-- Stig Thormodsrud <[email protected]> Tue, 28 Apr 2009 15:58:47 -0700
vyatta-webproxy (0.2.11) unstable; urgency=low
* Change webproxy end: tag to use new COMMIT_ACTION environment
variable.
-- Stig Thormodsrud <[email protected]> Mon, 30 Mar 2009 15:19:43 -0700
vyatta-webproxy (0.2.10) unstable; urgency=low
* Fix 4246: webproxy url-filter should log ip-address url drops.
-- Stig Thormodsrud <[email protected]> Tue, 24 Mar 2009 17:12:29 -0700
vyatta-webproxy (0.2.9) unstable; urgency=low
* Add support for blocking by reply mime-type.
* Add cli for webproxy to block based on mime-type.
* Minor cleanups.
-- Stig Thormodsrud <[email protected]> Mon, 23 Mar 2009 16:25:28 -0700
vyatta-webproxy (0.2.8) unstable; urgency=low
* Disable X-Forwarded-for header.
-- Stig Thormodsrud <[email protected]> Sat, 21 Mar 2009 19:09:51 -0700
vyatta-webproxy (0.2.7) unstable; urgency=low
* Add support for url-filtering by keyword/regex.
-- Stig Thormodsrud <[email protected]> Sat, 21 Mar 2009 14:47:42 -0700
vyatta-webproxy (0.2.6) unstable; urgency=low
* Add support for regex expressions in blacklists.
-- Stig Thormodsrud <[email protected]> Tue, 17 Mar 2009 18:13:42 -0700
vyatta-webproxy (0.2.5) unstable; urgency=low
* Fix append-domain help string.
-- Stig Thormodsrud <[email protected]> Thu, 12 Mar 2009 09:00:24 -0700
vyatta-webproxy (0.2.4) unstable; urgency=low
* Fix 4174: Add the ability to configure the 'append_domain' option
for 'service webproxy' (squid.conf)
-- Stig Thormodsrud <[email protected]> Sun, 08 Mar 2009 12:49:08 -0700
vyatta-webproxy (0.2.3) unstable; urgency=low
* Fix 4151: ENH: Add command to restart the squid webproxy service.
-- Stig Thormodsrud <[email protected]> Sun, 01 Mar 2009 12:18:10 -0800
vyatta-webproxy (0.2.2) unstable; urgency=low
* Fix 4028: Add the ability to update individual blacklist category
* Fix 4007: Add ability to allow direct IP requests when URL filtering
is
-- Stig Thormodsrud <[email protected]> Mon, 12 Jan 2009 18:24:10 -0800
vyatta-webproxy (0.2.1) unstable; urgency=low
[ An-Cheng Huang ]
* add support for development build
[ Stephen Hemminger ]
* Rename VyattaWebproxy to Vyatta::Webproxy
* Convert to Vyatta::
[ Stig Thormodsrud ]
* Fix Webproxy to work with new perl module hierarchy.
* Fix 3946: Cannot configure webproxy to listen to an address on a
[ An-Cheng Huang ]
* update maintainer information
* "files" file should be removed before package build
[ Stig Thormodsrud ]
* Fix 4012: Typo in web proxy validation
* Fix 4018: Internal errors searching webproxy blacklist
[ An-Cheng Huang ]
-- An-Cheng Huang <[email protected]> Thu, 08 Jan 2009 12:20:20 -0800
vyatta-webproxy (0.2) unstable; urgency=low
3.2.0
[ Mark O'Brien ]
[ Stig Thormodsrud ]
* Fix 3900: Wrong license on vyatta-webproxy package.
* Add a warning if configuring webproxy with no nameserver.
* Fix "missing default acl" error message.
* Change webproxy default blacklist.
* Add config to disable access logs.
* Disable storage log if caching is disabled.
* Fix 3801: Updating blacklists starts webproxy when not configured
* Fix delete of a webproxy listen port.
* Limit global port change to listen addresses that have not changed.
* Changing default port requires delete of old nat rule and add with
new port.
* Add conntrack chain for webproxy.
* Fix execute permission on cron file.
* Allow blacklist to be updated from op mode or cron.
* Change auto-update interval to 'daily', 'weekly' or 'monthly'.
* - Rework webproxy to make auto update easier to support.
* Remove redundant call to pager.
* Add "show webproxy blacklist log summary" to summarize raw logs.
* Fix "show webproxy log" less prompt.
* Fix group ownership on squid/squidguard log file.
* Do squidGuard config validation before generating a squid NAT rules.
* Add simple cgi script that can be used as a redirector to indicate
why a
* Fix sort warning.
* Change squid logs to grp adm so that operator can view them.
* Add more error checking of squidguard config.
* - Change "listening-address" to "listen-address".
* - Change default to not block blacklists.
* Prompt the user to download a default blacklist if no blacklist
exists.
* Add "update webproxy blacklists".
* Fix "squidguard block-site" functionality to match PRD.
* Add "show webproxy blacklist domains|urls|search".
* Add "show webproxy blacklist category|log".
* Add squidguard allow-category.
* Change squidguard to use 1 blacklist log file.
* Change service/webproxy/squidguard to service/webproxy/url-
filtering/squidguard.
* Add 1st pass of squidguard support.
* Add "show webproxy log" command.
* Add ability to disable caching with cache-size = 0.
* Add nat redirect to make transparent proxy work.
* Fix webproxy debian until op commands are added.
[ Mark O'Brien ]
-- Mark O'Brien <[email protected]> Tue, 25 Nov 2008 19:11:16 -0800
vyatta-webproxy (0.1) unstable; urgency=low
* Initial Release.
-- Stig Thormodsrud <[email protected]> Mon, 25 Aug 2008 10:54:14 -0700