59818845212f44693eb36dc4a72297eeb16b7242
[privoxy.git] / doc / webserver / announce.txt
1                Announcing Privoxy 3.0.30 stable
2 --------------------------------------------------------------------
3
4 Privoxy 3.0.30 stable fixes a couple of bugs and introduces
5 a few new features.
6
7 --------------------------------------------------------------------
8 ChangeLog for Privoxy 3.0.30
9 --------------------------------------------------------------------
10
11 - Bug fixes:
12   - Check the actual URL for redirects when https inspecting requests.
13     Previously Privoxy would only check the path which resulted in
14     rewrite results being rejected as invalid URLs.
15     Reported by withoutname in #1736.
16   - Let the hide-referrer code tolerate Referer headers with https:// URLs.
17     Previously they would always be treated like a changed host.
18   - Use the https headers if the show-request handler is reached through
19     https://. Previously Privoxy would use the http headers which
20     may be empty on a reused connection.
21   - Make CGI_PREFIX protocol-relative when building with FEATURE_HTTPS_INSPECTION.
22     This unbreaks (at least) https://config.privoxy.org/client-tags whose
23     buttons would previously use a http:// URL resulting in browser warnings.
24   - Support using https-inspection and client-header-order at the same time.
25     Previously Privoxy would crash.
26     Reported by: Kai Raven
27   - Properly reject rewrites from http to https as they currently
28     aren't supported. Previously Privoxy would wait for the client
29     to establish an encrypted connection which obviously would not happen.
30   - When https inspection is enabled and Privoxy has been compiled with
31     FEATURE_GRACEFUL_TERMINATION (not recommended for production builds),
32     the TLS backend resources are free'd later on and only if no active
33     connections are left. Prevents crashes when exiting "gracefully" at the
34     wrong time.
35
36 - General improvements:
37   - Allow to rewrite the request destination for https-inspected
38     requests behind the client's back. The documentation already sort
39     of claimed that it was supported by not especially mentioning that
40     it didn't work for https-inspected requests.
41     Fixes SF bug #923 reported by withoutname.
42   - Add support for filtering client request bodies by using
43     CLIENT-BODY-FILTER filters which can be enabled with the
44     client-body-filter action.
45     Patch submitted by Maxim Antonov.
46     Sponsored by: Robert Klemme
47   - Add the new action suppress-tag{} which can be used to prevent
48     a tagger from adding a tag. Patch submitted by Maxim Antonov.
49     Sponsored by: Robert Klemme
50   - Gracefully handle existing website keys without matching certificates.
51     This can happen if Privoxy was previously running with an invalid
52     TLS configuration that didn't allow it to create a certificate.
53   - Recycle debug bit 4 for Tagging-related messages.
54   - Improve the message shown when the client-tags CGI page
55     is requested with no tags configured.
56   - Shorten the 'donate' and 'participate' links used by templates
57     using redirects. Currently the redirects lead to the FAQ entries
58     but in the future we may want to relocate the content and using
59     redirects makes this more convenient.
60   - Log an error when a PCRE-HOST-PATTERN is used with
61     FEATURE_PCRE_HOST_PATTERNS disabled. Don't treat this a
62     fatal error so the regression tests can be used with and
63     without FEATURE_PCRE_HOST_PATTERNS.
64   - The code compiles with older C compilers again.
65   - The chdir() return code is checked to fix a compiler warning.
66   - The packages feed has been removed from the source tarball.
67     It's usually out of date when the source tarball is generated
68     for the release.
69   - Fixed harmless compiler warnings from GCC9 with -D_FORTIFY_SOURCE=2.
70   - windows: Remove obsolete '$(DEST)/doc/images' target.
71   - windows: Install the images referenced in the user manual.
72   - Remove obsolete 'gnu_regex.@OBJEXT@' target.
73   - When installing from the GNUMAkefile, don't create an 'images'
74     directory which is no longer used. The images were relocated to
75     the user-manual directory years ago.
76   - Add new FEATURES to the show-status page and resort list.
77   - Remove unused variable in the OpenSSL-specific code.
78   - Update bug tracker URL in cgi_error_unknown().
79   - Saved a couple of memory allocations when sorting client headers.
80   - Improved a couple of error messages.
81   - Saved memory allocations when using OpenSSL and checking if a
82     key already exists.
83   - The configure script will bail out if OpenSSL and mbedTLS are
84     enabled at the same time.
85   - Log a message right before exiting gracefully.
86   - A couple of structures have been rearranged to require slightly
87     less memory.
88   - When https inspection is enabled and the certificate is invalid
89     the error message is now sent with status code 403 instead of 200.
90   - The Slackware rc script template has been renamed to
91     slackware/rc.privoxy.in to silence complaints when building
92     Debian packages.
93   - When building with MbedTLS support, mbedtls_md5_ret() is used
94     instead of mbedtls_md5() which is deprecated and causes a warning
95     on Debian GNU/Linux.
96
97 - Action file improvements:
98   - Block requests to eu-tlp03.kameleoon.com/.
99   - Unblock metrics.sr.ht/.
100   - Disable fast-redirects for .fsf.org/.
101   - Disable fast-redirects for .gravater.com/.
102   - Disable fast-redirects for .ksta.de/.
103   - Block requests to tag.crsspxl.com/.
104   - Block requests to analytics.slashdotmedia.com/.
105   - Block requests to ml314.com/.
106   - Block requests to .adroll.com/.
107   - Block requests to fastlane.rubiconproject.com/.
108   - Block requests to api.theadex.com/.
109   - Block requests to ih.adscale.de/.
110   - Block requests to .s400.meetrics.net/.
111   - Block requests for pp.lp4.io/.
112   - Block requests for trc-events.taboola.com/.
113
114 - Filter file improvements:
115   - A allow-autocompletion filter has been added which changes
116     autocomplete="off" to "on" on input fields to allow autocompletion.
117     Requested by Jamie Zawinski in #370.
118     Filter based on a submission by Aaron Linville.
119   - Added an imdb filter.
120   - Added a sourceforge filter that reduces the amount of ads
121     for proprietary software.
122   - Added a github filter that removes the annoying "Sign-Up"
123     banner and the Cookie disclaimer.
124   - Removed a duplicated pcrs command from the js-annoyances filter.
125   - The crude-parental filter now provides a short reason when blocking,
126     inserts a link to Privoxy's webinterface and adds a new line at
127     the end of the generated page.
128
129 - Privoxy-Log-Parser:
130   - Highlight a few more messages.
131   - Add a handler for tagging messages.
132   - Properly deal with 'Certificate error' crunches
133     Previously the error description was highlighted as 'host'.
134   - Log truncated LOG_LEVEL_CLF messages more gracefully
135     and note that the statistics will be imprecise.
136   - Fixed perldoc typo.
137   - Bump version to 0.9.2.
138
139 - Privoxy-Regression-Test:
140   - Use http://127.0.0.1:8118/ as default Privoxy address
141     unless http_proxy is set through the environment.
142   - Add a --privoxy-cgi-prefix option that specifies the prefix
143     to use when building URLs that are supposed to reach Privoxy's
144     CGI interface. If it's not set, http://p.p/ is used, which is
145     supposed to work with the default Privoxy configuration.
146     If Privoxy has been built with FEATURE_HTTPS_INSPECTION enabled,
147     and if https inspection is activated with the +https-inspection
148     action, this option can be used with "https://p.p/" provided the
149     system running Privoxy-Regression-Test has been configured to
150     trust the certificate used by Privoxy.
151     Note that there are currently two tests in the official
152     regression-tests.action file that are expected to fail
153     when using "https://p.p/" as privoxy-cgi-prefix.
154   - Skip the connection-established response in get_status_code()
155     when looking for the status code with a CGI prefix
156     that starts with https://. We care about the status code
157     sent by the impersonated web server.
158   - Use --proxy-header when using a CGI prefix with https://
159     and a "Host:" header.
160   - Allow '|' in tokens and values to allow tag patterns like
161     "TAG:^(application|text)/(x-)?javascript$".
162   - When get_cgi_page_or_else() fails, include the URL of the
163     requested page in the log message.
164   - Added a --check-bad-ssl option that can be used to verify that
165     Privoxy detects certificate problems when accessing the test
166     sites from badssl.com.
167   - Bumped version to 0.7.2
168
169 - uagen:
170   - Update example output.
171   - Recommend the use of the https-inspection action in the documentation.
172   - Upgrade a couple of URLs to https://.
173   - Add ElectroBSD to the list of operating systems.
174   - Bumped generated Firefox version to 78 (ESR).
175   - Bumped version to 1.2.2.
176
177  - User documentation:
178   - Remove reference to 'How to Report Bugs Effectively'.
179     It was only rendered as text without URL in the README anyway
180     and there's no indication that users read it ...
181   - Let the dok-readme target fix the location embedded into the
182     README file. This used to be done by CVS but since the git migration
183     it has to be done through other means.
184   - Remove 'experimental' warning for client-specific-tag-related directives.
185     They seem to work reliably and there is no obvious reason
186     why we would change the syntax in the near future.
187   - Describe how to check if Privoxy has been built with
188     FEATURE_HTTPS_INSPECTION.
189   - Add a link to the trusted-cas-file documentation
190     that explains how the user can create the file herself.
191   - Don't explicitly mention the license for the code coming from
192     'Anonymous Coders' and Junkbusters. It's obviously licensed under
193     the GNU GPL like the rest of Privoxy or we wouldn't be allowed to
194     distribute it.
195   - Update the +hide-user-agent example with uagen output.
196   - Slightly improve the wording of the ca-key-file documentation.
197   - Explicitly mention Windows 10 as supported so search engines and
198     users looking for it can find it.
199   - Import a bunch of contributors from the ChangeLog.
200   - Remove obsolete doc/gpl.html.
201   - Upgrade a couple of links to https://.
202   - Don't prefer the SourceForge patch tracker over the
203     privoxy-devel mailing list. While at it, link to the
204     SourceForge patch tracker.
205   - Mention http-inspection in the 'my browser warns me about
206     unauthenticated content' FAQ entry.
207   - Simplify the 'Is there is a license or fee?' FAQ entry.
208   - Add another +redirect{} example.
209   - Explicitly mention that interested sponsors should include
210     the link target in their first mail.
211   - Clarify that only Privoxy team members can object to new sponsors
212     and link to the list of current team members.
213   - Note that sponsor URLs may not contain keyword spam.
214   - Garbage collect doc/webserver/images which isn't referenced anymore.
215   - Update the method to reach the proxy settings in Firefox.
216   - Update proxy_setup.jpg description to refer to Firefox.
217   - Regenerate proxy_setup.jpg with a more recent Firefox (78.0).
218   - Regenerate files-in-use.jpg without obsolete standard.action
219     with modern colors and a slightly better quality.
220   - Update URL to the actionsfile tracker.
221   - Update a support request URL.
222   - Rephrase the 'Can Privoxy run as service' FAQ entry and
223     remove an obsolete paragraph.
224   - Let the 'Where can I get updated Actions Files?' entry link to
225     the gitweb version of default.action.master.
226   - Update a link to the default.action file.
227   - Update URLs for trackers and mailing lists.
228   - Replace CVS reference with git.
229   - Mention regression-tests.action in the config file.
230   - Explicitly mention in the config file that access to the
231     CA key should be limited to Privoxy.
232   - List more client-specific-tag examples for inspiration.
233   - Add additional headers to the client-header-order example.
234   - Note that actions aren't updated after rewrites.
235   - Explicitly mention that upgrading from http to https with
236     a client-header filter is not supported
237   - Note that protocol and host have to be added when rewriting
238     the destination host for https-inspected requests.
239   - Explicitly mention that the CA key is used to sign certificates.
240   - Put openssl command in 'command' tags.
241   - The man page has been moved from section 1 to man section 8.
242
243 - Developer manual:
244   - Flesh out the build instructions for Debian.
245   - Remove the packaging instructions for RPM-based systems.
246     They don't work and we don't release RPM packages anymore anyway.
247   - Remove the packaging instructions for Solaris.
248     They don't work and we don't release Solaris packages anymore anyway.
249   - Update the suggested subject for the announce mails.
250   - Update upload instructions.
251     ftp://upload.sourceforge.net is no longer functional.
252   - Remove a couple of package-dependent upload instructions
253     that don't actually work.
254   - Remove 'cd current' that no longer works.
255   - Add regression-tests.action to the list of files that should be installed.
256   - Stop claiming that there are text versions of the manuals.
257     We stopped building them in 2008 (9ed36a3c5e6f12).
258   - Note that the 'webserver' target creates the link needed for the user-manual.
259   - Suggest to use the master branch as reference when creating
260     the ChangeLog so the steps work when the current branch differs
261     from master which is likely as the developer manual
262     suggests to use a local branch for development.
263   - Add the -s flag to the suggested 'git tag' command.  We prefer signed tags.
264   - Mention that merges into 'master' should be avoided.
265   - Add git commands that should result in a merge-free history.
266   - Mention Privoxy-Regression-Test.
267   - Add a section id to reduce link churn.
268   - Recommend the dok-tidy target when building docs for the webserver.
269   - Add another plug for the privoxy-devel mailing list.
270   - Let the intro link the copyright section in the user manual instead
271     of giving an incomplete summary of the license status.
272   - Clarify that the webserver target uploads to the SourceForge webserver.
273   - Mark the documentation for the Mac OS X installers as out of date and
274     change the SCM name back to CVS.
275   - Fix the location of the installer modules for Mac OS X.
276     They are not actually available through git (yet).
277   - Don't speak of Privoxy version 3 in the past tense.
278   - Update the list of programs required for the release process.
279   - Update description of the webserver target which uses ssh, not scp.
280   - Remove obsolete reference to config.new.
281
282 - Tests:
283   - Add another hide-referrer{conditional-block} test.
284   - Add another hide-referrer{conditional-forge} test.
285   - Fix a hide-referrer{conditional-forge} test
286     that expected an acceptable header to be forged.
287   - Fix a hide-referrer{conditional-block} test
288     that expected an acceptable Referer to be removed.
289   - Explain why the "Set Header = Host: whatever.example.org" test is
290     expected to fail when using a CGI prefix that starts with "https://".
291   - Explain why a connection-sharing test is known to fail
292     when using "https://p.p/" as CGI prefix.
293   - Add a link to Privoxy-Regression-Test to regression-tests.action
294     in case it isn't packaged.
295   - Add regression tests for pcre host patterns.
296
297 - Privoxy infrastructure:
298   - Import a Privoxy logo for the website.
299   - Update Tor onion service to HiddenServiceVersion 3.
300   - Display the "model" photos in a single row and remove placeholder images.
301   - Regenerate homepage with updated sponsor list.
302   - Use the '/sponsor' redirect for the link to the sponsor page.
303   - Git commit messages are sent to the Privoxy-commits mailing list.
304
305 -----------------------------------------------------------------
306 About Privoxy:
307 -----------------------------------------------------------------
308
309 Privoxy is a non-caching web proxy with advanced filtering capabilities for
310 enhancing privacy, modifying web page data and HTTP headers, controlling
311 access, and removing ads and other obnoxious Internet junk. Privoxy has a
312 flexible configuration and can be customized to suit individual needs and
313 tastes. It has application for both stand-alone systems and multi-user
314 networks.
315
316 Privoxy is Free Software and licensed under the GNU GPLv2.
317
318 Our TODO list is rather long. Helping hands and donations are welcome:
319
320   * https://www.privoxy.org/participate
321
322   * https://www.privoxy.org/donate
323
324 At present, Privoxy is known to run on Windows 95 and later versions
325 (98, ME, 2000, XP, Vista, Windows 7 etc.), GNU/Linux (RedHat, SuSE,
326 Debian, Fedora, Gentoo, Slackware and others), Mac OS X (10.4 and
327 upwards on PPC and Intel processors), Haiku, DragonFly, ElectroBSD,
328 FreeBSD, NetBSD, OpenBSD, Solaris, and various other flavors of Unix.
329
330 In addition to the core features of ad blocking and cookie management,
331 Privoxy provides many supplemental features, that give the end-user
332 more control, more privacy and more freedom:
333
334   *  Supports "Connection: keep-alive". Outgoing connections can be kept
335      alive independently from the client. Currently not available on all
336      platforms.
337
338   *  Supports IPv6, provided the operating system does so too,
339      and the configure script detects it.
340
341   *  Supports tagging which allows to change the behaviour based on client
342      and server headers.
343
344   *  Supports https inspection which allows to filter https requests.
345
346   *  Can be run as an "intercepting" proxy, which obviates the need to
347      configure browsers individually.
348
349   *  Sophisticated actions and filters for manipulating both server and
350      client headers.
351
352   *  Can be chained with other proxies.
353
354   *  Integrated browser based configuration and control utility at
355      http://config.privoxy.org/ (shortcut: http://p.p/). Browser-based
356      tracing of rule and filter effects. Remote toggling.
357
358   *  Web page filtering (text replacements, removes banners based on size,
359      invisible "web-bugs" and HTML annoyances, etc.)
360
361   *  Modularized configuration that allows for standard settings and user
362      settings to reside in separate files, so that installing updated actions
363      files won't overwrite individual user settings.
364
365   *  Support for Perl Compatible Regular Expressions in the configuration
366      files, and a more sophisticated and flexible configuration syntax.
367
368   *  GIF de-animation.
369
370   *  Bypass many click-tracking scripts (avoids script redirection).
371
372   *  User-customizable HTML templates for most proxy-generated pages (e.g.
373      "blocked" page).
374
375   *  Auto-detection and re-reading of config file changes.
376     
377   *  Most features are controllable on a per-site or per-location basis.
378
379
380 Home Page: 
381    https://www.privoxy.org/
382
383   - Privoxy Developers <privoxy-devel@lists.privoxy.org>