Skip to content

Commit 8f33c6b

Browse files
committed
v4.5.14
1 parent f0dd919 commit 8f33c6b

9 files changed

+27
-16
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
4.5.14
2+
- [Fix] handle no `deleteCount` to `splice()` in Opera (#465)
3+
- [Refactor] remove unnecessary comparison
4+
- [meta] remove unused Makefile and associated utilities
5+
- [meta] add `funding` field
6+
- [meta] Rename CHANGES to CHANGELOG.md
7+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `replace`, `semver`; add `safe-publish-latest`
8+
- [Tests] fix negative Date tests to handle TZData
9+
- [Tests] use shared travis-ci configs
10+
- [Tests] remove `jscs`
11+
- [Tests] clarify toPrecision's range increased in ES2018
12+
- [actions] add automatic rebasing / merge commit blocking
13+
114
4.5.13
215
- [Fix] exclude deprecated Firefox keys (#460)
316
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `jasmine-node`, `replace`, `semver`

README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ In many cases, this means that these shams cause many ES5 methods to
2020
silently fail. Decide carefully whether this is what you want.
2121
**Note:** `es5-sham.js` requires `es5-shim.js` to be able to work properly.
2222

23-
2423
## Tests
2524

2625
The tests are written with the Jasmine BDD test framework.
@@ -168,15 +167,14 @@ simply `npm install` and `npm test`.
168167
provisions of this method, which you cannot possibly
169168
obtain in legacy engines.
170169

171-
### Example of applying ES compatability shims in a browser project
170+
### Example of applying ES compatibility shims in a browser project
172171

173172
```html
174-
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.7/es5-shim.min.js"></script>
175-
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.7/es5-sham.min.js"></script>
173+
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.14/es5-shim.min.js"></script>
174+
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.14/es5-sham.min.js"></script>
176175
<script src="https://cdnjs.cloudflare.com/ajax/libs/json3/3.3.2/json3.min.js"></script>
177-
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.34.2/es6-shim.min.js"></script>
178-
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.34.2/es6-sham.min.js"></script>
179-
<script src="https://wzrd.in/standalone/es7-shim@latest"></script>
176+
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.5/es6-shim.min.js"></script>
177+
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.5/es6-sham.min.js"></script>
180178
<script src="other-libs.js"></script>
181179
```
182180
[npm-url]: https://npmjs.org/package/es5-shim

es5-sham.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* https://github.com/es-shims/es5-shim
3-
* @license es5-shim Copyright 2009-2015 by contributors, MIT License
3+
* @license es5-shim Copyright 2009-2020 by contributors, MIT License
44
* see https://github.com/es-shims/es5-shim/blob/master/LICENSE
55
*/
66

es5-sham.map

+1-1
Original file line numberDiff line numberDiff line change

0 commit comments

Comments
 (0)