source: trip-planner-front/node_modules/object.assign/CHANGELOG.md@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 7.6 KB
Line 
14.1.2 / 2020-10-30
2==================
3 * [Refactor] use extracted `call-bind` instead of full `es-abstract`
4 * [Dev Deps] update `eslint`, `ses`, `browserify`
5 * [Tests] run tests in SES
6 * [Tests] ses-compat: show error stacks
7
84.1.1 / 2020-09-11
9==================
10 * [Fix] avoid mutating `Object.assign` in modern engines
11 * [Refactor] use `callBind` from `es-abstract` instead of `function-bind`
12 * [Deps] update `has-symbols`, `object-keys`, `define-properties`
13 * [meta] add `funding` field, FUNDING.yml
14 * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `browserify`, `covert`, `for-each`, `is`, `tape`, `functions-have-names`; add `aud`, `safe-publish-latest`; remove `jscs`
15 * [actions] add Require Allow Edits workflow
16 * [actions] add automatic rebasing / merge commit blocking
17 * [Tests] ses-compat - add test to ensure package initializes correctly after ses lockdown (#77)
18 * [Tests] Add passing test for a source of `window.location` (#68)
19 * [Tests] use shared travis-ci config
20 * [Tests] use `npx aud` instead of `npm audit` with hoops or `nsp`
21 * [Tests] use `functions-have-names`
22
234.1.0 / 2017-12-21
24==================
25 * [New] add `auto` entry point (#52)
26 * [Refactor] Use `has-symbols` module
27 * [Deps] update `function-bind`, `object-keys`
28 * [Dev Deps] update `@es-shims/api`, `browserify`, `nsp`, `eslint`, `@ljharb/eslint-config`, `is`
29 * [Tests] up to `node` `v9.3`, `v8.9`, `v6.12`; use `nvm install-latest-npm`; pin included builds to LTS
30
314.0.4 / 2016-07-04
32==================
33 * [Fix] Cache original `getOwnPropertySymbols`, and use that when `Object.getOwnPropertySymbols` is unavailable
34 * [Deps] update `object-keys`
35 * [Dev Deps] update `eslint`, `get-own-property-symbols`, `core-js`, `jscs`, `nsp`, `browserify`, `@ljharb/eslint-config`, `tape`, `@es-shims/api`
36 * [Tests] up to `node` `v6.2`, `v5.10`, `v4.4`
37 * [Tests] run sham tests on node 0.10
38 * [Tests] use pretest/posttest for linting/security
39
404.0.3 / 2015-10-21
41==================
42 * [Fix] Support core-js's Symbol sham (#17)
43 * [Fix] Ensure that properties removed or made non-enumerable during enumeration are not assigned (#16)
44 * [Fix] Avoid looking up keys and values more than once
45 * [Tests] Avoid using `reduce` so `npm run test:shams:corejs` passes in `node` `v0.8` ([core-js#122](https://github.com/zloirock/core-js/issues/122))
46 * [Tests] Refactor to use my conventional structure that separates shimmed, implementation, and common tests
47 * [Tests] Create `npm run test:shams` and better organize tests for symbol shams
48 * [Tests] Remove `nsp` in favor of `requiresafe`
49
504.0.2 / 2015-10-20
51==================
52 * [Fix] Ensure correct property enumeration order, particularly in v8 (#15)
53 * [Deps] update `object-keys`, `define-properties`
54 * [Dev Deps] update `browserify`, `is`, `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`
55 * [Tests] up to `io.js` `v3.3`, `node` `v4.2`
56
574.0.1 / 2015-08-16
58==================
59 * [Docs] Add `Symbol` note to readme
60
614.0.0 / 2015-08-15
62==================
63 * [Breaking] Implement the [es-shim API](es-shims/api).
64 * [Robustness] Make implementation robust against later modification of environment methods.
65 * [Refactor] Move implementation to `implementation.js`
66 * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
67 * [Deps] update `object-keys`, `define-properties`
68 * [Dev Deps] update `browserify`, `tape`, `eslint`, `jscs`, `browserify`
69 * [Tests] Add `npm run tests-only`
70 * [Tests] use my personal shared `eslint` config.
71 * [Tests] up to `io.js` `v3.0`
72
733.0.1 / 2015-06-28
74==================
75 * Cache `Object` and `Array#push` to make the shim more robust.
76 * [Fix] Remove use of `Array#filter`, which isn't in ES3.
77 * [Deps] Update `object-keys`, `define-properties`
78 * [Dev Deps] Update `get-own-property-symbols`, `browserify`, `eslint`, `nsp`
79 * [Tests] Test up to `io.js` `v2.3`
80 * [Tests] Adding `Object.assign` tests for non-object targets, per https://github.com/paulmillr/es6-shim/issues/348
81
823.0.0 / 2015-05-20
83==================
84 * Attempt to feature-detect Symbols, even if `typeof Symbol() !== 'symbol'` (#12)
85 * Make a separate `hasSymbols` internal module
86 * Update `browserify`, `eslint`
87
882.0.3 / 2015-06-28
89==================
90 * Cache `Object` and `Array#push` to make the shim more robust.
91 * [Fix] Remove use of `Array#filter`, which isn't in ES3
92 * [Deps] Update `object-keys`, `define-properties`
93 * [Dev Deps] Update `browserify`, `nsp`, `eslint`
94 * [Tests] Test up to `io.js` `v2.3`
95
962.0.2 / 2015-05-20
97==================
98 * Make sure `.shim` is non-enumerable.
99 * Refactor `.shim` implementation to use `define-properties` predicates, rather than `delete`ing the original.
100 * Update docs to match spec/implementation. (#11)
101 * Add `npm run eslint`
102 * Test up to `io.js` `v2.0`
103 * Update `jscs`, `browserify`, `covert`
104
1052.0.1 / 2015-04-12
106==================
107 * Make sure non-enumerable Symbols are excluded.
108
1092.0.0 / 2015-04-12
110==================
111 * Make sure the shim function overwrites a broken implementation with pending exceptions.
112 * Ensure shim is not enumerable using `define-properties`
113 * Ensure `Object.assign` includes symbols.
114 * All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`.
115 * Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures.
116 * Add `npm run security` via `nsp`
117 * Update `browserify`, `jscs`, `tape`, `object-keys`, `is`
118
1191.1.1 / 2014-12-14
120==================
121 * Actually include the browser build in `npm`
122
1231.1.0 / 2014-12-14
124==================
125 * Add `npm run build`, and build an automatic-shimming browser distribution as part of the npm publish process.
126 * Update `is`, `jscs`
127
1281.0.3 / 2014-11-29
129==================
130 * Revert "optimize --production installs"
131
1321.0.2 / 2014-11-27
133==================
134 * Update `jscs`, `is`, `object-keys`, `tape`
135 * Add badges to README
136 * Name URLs in README
137 * Lock `covert` to `v1.0.0`
138 * Optimize --production installs
139
1401.0.1 / 2014-08-26
141==================
142 * Update `is`, `covert`
143
1441.0.0 / 2014-08-07
145==================
146 * Update `object-keys`, `tape`
147
1480.5.0 / 2014-07-31
149==================
150 * Object.assign no longer throws on null or undefined sources, per https://bugs.ecmascript.org/show_bug.cgi?id=3096
151
1520.4.3 / 2014-07-30
153==================
154 * Don’t modify vars in the function signature, since it deoptimizes v8
155
1560.4.2 / 2014-07-30
157==================
158 * Fixing the version number: v0.4.2
159
1600.4.1 / 2014-07-19
161==================
162 * Revert "Use the native Object.keys if it’s available."
163
1640.4.0 / 2014-07-19
165==================
166 * Use the native Object.keys if it’s available.
167 * Fixes [#2](https://github.com/ljharb/object.assign/issues/2).
168 * Adding failing tests for [#2](https://github.com/ljharb/object.assign/issues/2).
169 * Fix indentation.
170 * Adding `npm run lint`
171 * Update `tape`, `covert`
172 * README: Use SVG badge for Travis [#1](https://github.com/ljharb/object.assign/issues/1) from mathiasbynens/patch-1
173
1740.3.1 / 2014-04-10
175==================
176 * Object.assign does partially modify objects if it throws, per https://twitter.com/awbjs/status/454320863093862400
177
1780.3.0 / 2014-04-10
179==================
180 * Update with newest ES6 behavior - Object.assign now takes a variable number of source objects.
181 * Update `tape`
182 * Make sure old and unstable nodes don’t fail Travis
183
1840.2.1 / 2014-03-16
185==================
186 * Let object-keys handle the fallback
187 * Update dependency badges
188 * Adding bower.json
189
1900.2.0 / 2014-03-16
191==================
192 * Use a for loop, because ES3 browsers don’t have "reduce"
193
1940.1.1 / 2014-03-14
195==================
196 * Updating readme
197
1980.1.0 / 2014-03-14
199==================
200 * Initial release.
201
Note: See TracBrowser for help on using the repository browser.