From f2702debdefe85076dfe6cec06703a94a80b16eb Mon Sep 17 00:00:00 2001 From: Sami Vaarala Date: Mon, 2 Jan 2017 06:20:07 +0200 Subject: [PATCH] Releases: 'global' binding --- RELEASES.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASES.rst b/RELEASES.rst index 8a75bba639..7c70093225 100644 --- a/RELEASES.rst +++ b/RELEASES.rst @@ -2369,6 +2369,11 @@ Planned 2.1.0 (XXXX-XX-XX) ------------------ +* Add a "global" property to the global object to provide easy access to the + global object itself without needing idioms like + "new Function('return this')()"; implemented based on + https://github.com/tc39/proposal-global (GH-1259, GH-1260) + * Spawn the ArrayBuffer object backing a typed array lazily when its .buffer property is first read, reducing memory usage in common cases where the view is constructed directly without needing the ArrayBuffer object (GH-1225)