Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | Snappy v1.0.4, September 15th 2011: |
michael@0 | 2 | |
michael@0 | 3 | * Speeded up the decompressor somewhat; typically about 2–8% |
michael@0 | 4 | for Core i7, in 64-bit mode (comparable for Opteron). |
michael@0 | 5 | Somewhat more for some tests, almost no gain for others. |
michael@0 | 6 | |
michael@0 | 7 | * Make Snappy compile on certain platforms it didn't before |
michael@0 | 8 | (Solaris with SunPro C++, HP-UX, AIX). |
michael@0 | 9 | |
michael@0 | 10 | * Correct some minor errors in the format description. |
michael@0 | 11 | |
michael@0 | 12 | |
michael@0 | 13 | Snappy v1.0.3, June 2nd 2011: |
michael@0 | 14 | |
michael@0 | 15 | * Speeded up the decompressor somewhat; about 3-6% for Core 2, |
michael@0 | 16 | 6-13% for Core i7, and 5-12% for Opteron (all in 64-bit mode). |
michael@0 | 17 | |
michael@0 | 18 | * Added compressed format documentation. This text is new, |
michael@0 | 19 | but an earlier version from Zeev Tarantov was used as reference. |
michael@0 | 20 | |
michael@0 | 21 | * Only link snappy_unittest against -lz and other autodetected |
michael@0 | 22 | libraries, not libsnappy.so (which doesn't need any such dependency). |
michael@0 | 23 | |
michael@0 | 24 | * Fixed some display issues in the microbenchmarks, one of which would |
michael@0 | 25 | frequently make the test crash on GNU/Hurd. |
michael@0 | 26 | |
michael@0 | 27 | |
michael@0 | 28 | Snappy v1.0.2, April 29th 2011: |
michael@0 | 29 | |
michael@0 | 30 | * Relicense to a BSD-type license. |
michael@0 | 31 | |
michael@0 | 32 | * Added C bindings, contributed by Martin Gieseking. |
michael@0 | 33 | |
michael@0 | 34 | * More Win32 fixes, in particular for MSVC. |
michael@0 | 35 | |
michael@0 | 36 | * Replace geo.protodata with a newer version. |
michael@0 | 37 | |
michael@0 | 38 | * Fix timing inaccuracies in the unit test when comparing Snappy |
michael@0 | 39 | to other algorithms. |
michael@0 | 40 | |
michael@0 | 41 | |
michael@0 | 42 | Snappy v1.0.1, March 25th 2011: |
michael@0 | 43 | |
michael@0 | 44 | This is a maintenance release, mostly containing minor fixes. |
michael@0 | 45 | There is no new functionality. The most important fixes include: |
michael@0 | 46 | |
michael@0 | 47 | * The COPYING file and all licensing headers now correctly state that |
michael@0 | 48 | Snappy is licensed under the Apache 2.0 license. |
michael@0 | 49 | |
michael@0 | 50 | * snappy_unittest should now compile natively under Windows, |
michael@0 | 51 | as well as on embedded systems with no mmap(). |
michael@0 | 52 | |
michael@0 | 53 | * Various autotools nits have been fixed. |
michael@0 | 54 | |
michael@0 | 55 | |
michael@0 | 56 | Snappy v1.0, March 17th 2011: |
michael@0 | 57 | |
michael@0 | 58 | * Initial version. |