addon-sdk/source/lib/method/History.md

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 # Changes
     3 ## 1.0.2 / 2012-12-26
     5   - Delegate to polymorphic methods from `.define` and `.implement` so, they
     6     can be overidden.
     8 ## 1.0.1 / 2012-11-11
    10   - Fix issues with different `Error` types as they all inherit from
    11     `Error`.
    13 ## 1.0.0 / 2012-11-09
    15   - Add browser test integration.
    16   - Fix cross-browser incompatibilities & test failures.
    17   - Add support for host objects.
    18   - Add optional `hint` argument for method to ease debugging.
    19   - Remove default implementation at definition time.
    21 ## 0.1.1 / 2012-10-15
    23  - Fix regression causing custom type implementation to be stored on objects.
    25 ## 0.1.0 / 2012-10-15
    27  - Remove dependency on name module.
    28  - Implement fallback for engines that do not support ES5.
    29  - Add support for built-in type extensions without extending their prototypes.
    30  - Make API for default definitions more intuitive.
    31    Skipping type argument now defines default:
    33       isFoo.define(function(value) {
    34         return false
    35       })
    37  - Make exposed `define` and `implement` polymorphic.
    38  - Removed dev dependency on swank-js.
    39  - Primitive types `string, number, boolean` no longer inherit method
    40    implementations from `Object`.
    42 ## 0.0.3 / 2012-07-17
    44   - Remove module boilerplate
    46 ## 0.0.2 / 2012-06-26
    48   - Name changes to make it less conflicting with other library conventions.
    49   - Expose function version of `define` & `implement` methods.
    50   - Expose `Null` and `Undefined` object holding implementations for an
    51     associated types.
    53 ## 0.0.1 / 2012-06-25
    55   - Initial release

mercurial