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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,14 @@ When you visit the site, you'll see the output of various cfenv calls.
changes
================================================================================

**1.2.5** - 2025/12/01

- upgrade `js.yaml` to 4.1.x for [CVE-2025-64718][] - [pr #56][]

[pr #56]: https://github.com/cloudfoundry-community/node-cfenv/pull/56

[CVE-2025-64718]: https://www.cve.org/CVERecord?id=CVE-2025-64718

**1.2.4** - 2021/04/03

- upgrade most dependencies, but not CoffeeScript, since the latest
Expand Down
80 changes: 40 additions & 40 deletions lib/cfenv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/server.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 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.4",
"version": "1.2.5",
"author": "pmuellr",
"license": "Apache-2.0",
"homepage": "https://github.com/cloudfoundry-community/node-cfenv",
Expand All @@ -17,7 +17,7 @@
"watch": "jbuild watch"
},
"dependencies": {
"js-yaml": "4.0.x",
"js-yaml": "4.1.x",
"ports": "1.1.x",
"underscore": "1.12.x"
Comment on lines +20 to 22
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great to have more flexibility:

Suggested change
"js-yaml": "4.1.x",
"ports": "1.1.x",
"underscore": "1.12.x"
"js-yaml": "^4.1.1",
"ports": "^1.1.0",
"underscore": "^1.13.7"

ports hasn't been updated in 12 years, underscore@1.12.1 is 5 years old

At least for underscore something can be done, 1.13.7 is 16 months old, in 2 months it will also start triggering security warnings, but at least it will be easier to justify them.

},
Expand Down