source: imaps-frontend/node_modules/object.assign/CHANGELOG.md@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 9.5 KB
RevLine 
[79a0317]14.1.7 / 2024-12-18
2==================
3 * [Deps] add missing `es-object-atoms` (#86)
4
54.1.6 / 2024-12-18
6==================
7 * [Refactor] use `call-bound` directly; use `es-object-atoms`
8 * [Deps] update `call-bind`, `has-symbols`
9 * [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `hasown`, `mock-property`, `ses`, `tape`
10 * [actions] split out node 10-20, and 20+
11 * [actions] remove redundant finisher
12 * [Tests] replace `aud` with `npm audit`
13
[d565449]144.1.5 / 2023-11-30
15==================
16 * [meta] republish without testing HTML file (#85)
17 * [Deps] update `call-bind`, `define-properties`
18 * [Dev Deps] use `hasown` instead of `has`
19 * [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `aud`, `npmignore`, `mock-property`, `tape`
20 * [actions] update rebase action
21
224.1.4 / 2022-08-16
23==================
24 * [meta] fix `npmignore` integration (#83)
25
264.1.3 / 2022-08-05
27==================
28 * [Refactor] make steps closer to actual spec
29 * [Refactor] simplify object coercible check
30 * [readme] remove defunct badges, add coverage and actions badges
31 * [eslint] ignore coverage output
32 * [meta] use `npmignore` to autogenerate an npmignore file
33 * [meta] remove audit-level
34 * [Deps] update `call-bind`, `define-properties`, `has-symbols`
35 * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `aud`, `functions-have-names`, `safe-publish-latest`, `ses`, `tape`
36 * [actions] use `node/install` instead of `node/run`; use `codecov` action
37 * [actions] reuse common workflows
38 * [actions] update codecov uploader
39 * [Tests] add implementation tests
40 * [Tests] use `mock-property`
41 * [Tests] disable posttest pending `aud` handling `file:` deps
42 * [Tests] migrate remaining tests to Github Actions (#81)
43 * [Tests] gitignore coverage output
44 * [Tests] test node v1-v9 on Github Actions instead of travis; resume testing all minors (#80)
45
464.1.2 / 2020-10-30
47==================
48 * [Refactor] use extracted `call-bind` instead of full `es-abstract`
49 * [Dev Deps] update `eslint`, `ses`, `browserify`
50 * [Tests] run tests in SES
51 * [Tests] ses-compat: show error stacks
52
534.1.1 / 2020-09-11
54==================
55 * [Fix] avoid mutating `Object.assign` in modern engines
56 * [Refactor] use `callBind` from `es-abstract` instead of `function-bind`
57 * [Deps] update `has-symbols`, `object-keys`, `define-properties`
58 * [meta] add `funding` field, FUNDING.yml
59 * [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`
60 * [actions] add Require Allow Edits workflow
61 * [actions] add automatic rebasing / merge commit blocking
62 * [Tests] ses-compat - add test to ensure package initializes correctly after ses lockdown (#77)
63 * [Tests] Add passing test for a source of `window.location` (#68)
64 * [Tests] use shared travis-ci config
65 * [Tests] use `npx aud` instead of `npm audit` with hoops or `nsp`
66 * [Tests] use `functions-have-names`
67
684.1.0 / 2017-12-21
69==================
70 * [New] add `auto` entry point (#52)
71 * [Refactor] Use `has-symbols` module
72 * [Deps] update `function-bind`, `object-keys`
73 * [Dev Deps] update `@es-shims/api`, `browserify`, `nsp`, `eslint`, `@ljharb/eslint-config`, `is`
74 * [Tests] up to `node` `v9.3`, `v8.9`, `v6.12`; use `nvm install-latest-npm`; pin included builds to LTS
75
764.0.4 / 2016-07-04
77==================
78 * [Fix] Cache original `getOwnPropertySymbols`, and use that when `Object.getOwnPropertySymbols` is unavailable
79 * [Deps] update `object-keys`
80 * [Dev Deps] update `eslint`, `get-own-property-symbols`, `core-js`, `jscs`, `nsp`, `browserify`, `@ljharb/eslint-config`, `tape`, `@es-shims/api`
81 * [Tests] up to `node` `v6.2`, `v5.10`, `v4.4`
82 * [Tests] run sham tests on node 0.10
83 * [Tests] use pretest/posttest for linting/security
84
854.0.3 / 2015-10-21
86==================
87 * [Fix] Support core-js's Symbol sham (#17)
88 * [Fix] Ensure that properties removed or made non-enumerable during enumeration are not assigned (#16)
89 * [Fix] Avoid looking up keys and values more than once
90 * [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))
91 * [Tests] Refactor to use my conventional structure that separates shimmed, implementation, and common tests
92 * [Tests] Create `npm run test:shams` and better organize tests for symbol shams
93 * [Tests] Remove `nsp` in favor of `requiresafe`
94
954.0.2 / 2015-10-20
96==================
97 * [Fix] Ensure correct property enumeration order, particularly in v8 (#15)
98 * [Deps] update `object-keys`, `define-properties`
99 * [Dev Deps] update `browserify`, `is`, `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`
100 * [Tests] up to `io.js` `v3.3`, `node` `v4.2`
101
1024.0.1 / 2015-08-16
103==================
104 * [Docs] Add `Symbol` note to readme
105
1064.0.0 / 2015-08-15
107==================
108 * [Breaking] Implement the [es-shim API](es-shims/api).
109 * [Robustness] Make implementation robust against later modification of environment methods.
110 * [Refactor] Move implementation to `implementation.js`
111 * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
112 * [Deps] update `object-keys`, `define-properties`
113 * [Dev Deps] update `browserify`, `tape`, `eslint`, `jscs`, `browserify`
114 * [Tests] Add `npm run tests-only`
115 * [Tests] use my personal shared `eslint` config.
116 * [Tests] up to `io.js` `v3.0`
117
1183.0.1 / 2015-06-28
119==================
120 * Cache `Object` and `Array#push` to make the shim more robust.
121 * [Fix] Remove use of `Array#filter`, which isn't in ES3.
122 * [Deps] Update `object-keys`, `define-properties`
123 * [Dev Deps] Update `get-own-property-symbols`, `browserify`, `eslint`, `nsp`
124 * [Tests] Test up to `io.js` `v2.3`
125 * [Tests] Adding `Object.assign` tests for non-object targets, per https://github.com/paulmillr/es6-shim/issues/348
126
1273.0.0 / 2015-05-20
128==================
129 * Attempt to feature-detect Symbols, even if `typeof Symbol() !== 'symbol'` (#12)
130 * Make a separate `hasSymbols` internal module
131 * Update `browserify`, `eslint`
132
1332.0.3 / 2015-06-28
134==================
135 * Cache `Object` and `Array#push` to make the shim more robust.
136 * [Fix] Remove use of `Array#filter`, which isn't in ES3
137 * [Deps] Update `object-keys`, `define-properties`
138 * [Dev Deps] Update `browserify`, `nsp`, `eslint`
139 * [Tests] Test up to `io.js` `v2.3`
140
1412.0.2 / 2015-05-20
142==================
143 * Make sure `.shim` is non-enumerable.
144 * Refactor `.shim` implementation to use `define-properties` predicates, rather than `delete`ing the original.
145 * Update docs to match spec/implementation. (#11)
146 * Add `npm run eslint`
147 * Test up to `io.js` `v2.0`
148 * Update `jscs`, `browserify`, `covert`
149
1502.0.1 / 2015-04-12
151==================
152 * Make sure non-enumerable Symbols are excluded.
153
1542.0.0 / 2015-04-12
155==================
156 * Make sure the shim function overwrites a broken implementation with pending exceptions.
157 * Ensure shim is not enumerable using `define-properties`
158 * Ensure `Object.assign` includes symbols.
159 * All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`.
160 * Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures.
161 * Add `npm run security` via `nsp`
162 * Update `browserify`, `jscs`, `tape`, `object-keys`, `is`
163
1641.1.1 / 2014-12-14
165==================
166 * Actually include the browser build in `npm`
167
1681.1.0 / 2014-12-14
169==================
170 * Add `npm run build`, and build an automatic-shimming browser distribution as part of the npm publish process.
171 * Update `is`, `jscs`
172
1731.0.3 / 2014-11-29
174==================
175 * Revert "optimize --production installs"
176
1771.0.2 / 2014-11-27
178==================
179 * Update `jscs`, `is`, `object-keys`, `tape`
180 * Add badges to README
181 * Name URLs in README
182 * Lock `covert` to `v1.0.0`
183 * Optimize --production installs
184
1851.0.1 / 2014-08-26
186==================
187 * Update `is`, `covert`
188
1891.0.0 / 2014-08-07
190==================
191 * Update `object-keys`, `tape`
192
1930.5.0 / 2014-07-31
194==================
195 * Object.assign no longer throws on null or undefined sources, per https://bugs.ecmascript.org/show_bug.cgi?id=3096
196
1970.4.3 / 2014-07-30
198==================
199 * Don’t modify vars in the function signature, since it deoptimizes v8
200
2010.4.2 / 2014-07-30
202==================
203 * Fixing the version number: v0.4.2
204
2050.4.1 / 2014-07-19
206==================
207 * Revert "Use the native Object.keys if it’s available."
208
2090.4.0 / 2014-07-19
210==================
211 * Use the native Object.keys if it’s available.
212 * Fixes [#2](https://github.com/ljharb/object.assign/issues/2).
213 * Adding failing tests for [#2](https://github.com/ljharb/object.assign/issues/2).
214 * Fix indentation.
215 * Adding `npm run lint`
216 * Update `tape`, `covert`
217 * README: Use SVG badge for Travis [#1](https://github.com/ljharb/object.assign/issues/1) from mathiasbynens/patch-1
218
2190.3.1 / 2014-04-10
220==================
221 * Object.assign does partially modify objects if it throws, per https://twitter.com/awbjs/status/454320863093862400
222
2230.3.0 / 2014-04-10
224==================
225 * Update with newest ES6 behavior - Object.assign now takes a variable number of source objects.
226 * Update `tape`
227 * Make sure old and unstable nodes don’t fail Travis
228
2290.2.1 / 2014-03-16
230==================
231 * Let object-keys handle the fallback
232 * Update dependency badges
233 * Adding bower.json
234
2350.2.0 / 2014-03-16
236==================
237 * Use a for loop, because ES3 browsers don’t have "reduce"
238
2390.1.1 / 2014-03-14
240==================
241 * Updating readme
242
2430.1.0 / 2014-03-14
244==================
245 * Initial release.
246
Note: See TracBrowser for help on using the repository browser.