Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,13 @@ When you visit the site, you'll see the output of various cfenv calls.
changes
================================================================================

**1.2.7** - 2026/07/27

- upgrade `underscore` to `^1.13.8` to address [`CVE-2026-27601`](https://nvd.nist.gov/vuln/detail/CVE-2026-27601)
- upgrade `js-yaml` to `^4.3.0` to address [`CVE-2026-53550`](https://nvd.nist.gov/vuln/detail/CVE-2026-53550)

Both CVEs were noted in issue https://github.com/cloudfoundry-community/node-cfenv/issues/59

**1.2.6** - 2026/04/16

- upgrade `underscore` to `1.13.x` to address `CVE-2026-27601` and [GHSA-qpx9-hpmf-5gmw](https://github.com/advisories/GHSA-qpx9-hpmf-5gmw) - pr #58
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cfenv",
"main": "./lib/cfenv",
"description": "easy access to your Cloud Foundry application environment",
"version": "1.2.6",
"version": "1.2.7",
"author": "pmuellr",
"license": "Apache-2.0",
"homepage": "https://github.com/cloudfoundry-community/node-cfenv",
Expand All @@ -17,14 +17,14 @@
"watch": "jbuild watch"
},
"dependencies": {
"js-yaml": "4.1.x",
"ports": "1.1.x",
"underscore": "1.13.x"
"js-yaml": "^4.3.0",
"ports": "^1.1.0",
"underscore": "^1.13.8"
},
"devDependencies": {
"coffeescript": "1.12.x",
"expect.js": "0.3.x",
"jbuild": "1.0.x",
"mocha": "8.3.x"
"coffeescript": "^1.12.7",
"expect.js": "^0.3.1",
"jbuild": "^1.0.1",
"mocha": "^8.4.0"
}
}