Skip to content

Commit 8e32400

Browse files
committedOct 10, 2020
Add vulnerability fix in changelog. Drop support to node < 10, at least officially (latest version of mocha does not work in node < 10). Remove sponsor.
1 parent 2be3354 commit 8e32400

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- "0.10"
5-
- "0.12"
6-
- "4"
7-
- "6"
8-
- "8"
94
- "10"
5+
- "12"
106
- "14"
117
after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Sponsored by [<img src="https://frontendrobot.com/assets/fr-full-logo-green.png"
1515

1616
## Changelog
1717

18+
### 0.11.5
19+
20+
* **Security Fix**. Fix a prototype pollution vulnerability in the `set()` function when using the "inherited props" mode (e.g. when a new `object-path` instance is created with the `includeInheritedProps` option set to `true` or when using the `withInheritedProps` default instance. The vulnerability does not exist in the default instance exposed by object path (e.g `objectPath.set()`).
21+
1822
### 0.11.0
1923

2024
* Introduce ability to specify options and create new instances of `object-path`

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "git://github.com/mariocasciaro/object-path.git"
1212
},
1313
"engines": {
14-
"node": ">=0.10.0"
14+
"node": ">= 10.12.0"
1515
},
1616
"devDependencies": {
1717
"@mariocasciaro/benchpress": "^0.1.3",

3 commit comments

Comments
 (3)

EdCafferata commented on Oct 24, 2020

@EdCafferata

done

EdCafferata commented on Oct 24, 2020

@EdCafferata

done

EdCafferata commented on Oct 24, 2020

@EdCafferata

done

Please sign in to comment.