Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fs-extra

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-extra - npm Package Compare versions

Comparing version 0.28.0 to 0.29.0

6

CHANGELOG.md

@@ -0,4 +1,8 @@

0.29.0 / 2016-04-27
-------------------
- **BREAKING**: removed support for Node v0.10. Everything should work except for `ensureLink()/ensureSymlink()`. Node v0.12 is still supported but will be dropped in the near future as well.
0.28.0 / 2016-04-17
-------------------
- removed `createOutputStream()`. Use https://www.npmjs.com/package/create-output-stream. See: [#192][#192]
- **BREAKING**: removed `createOutputStream()`. Use https://www.npmjs.com/package/create-output-stream. See: [#192][#192]
- `mkdirs()/mkdirsSync()` check for invalid win32 path chars. See: [#209][#209], [#237][#237]

@@ -5,0 +9,0 @@ - `mkdirs()/mkdirsSync()` if drive not mounted, error. See: [#93][#93]

2

lib/ensure/symlink-paths.js
var path = require('path')
// path.isAbsolute shim for Node.js 0.10 support
path.isAbsolute = (path.isAbsolute) ? path.isAbsolute : require('path-is-absolute')
var fs = require('graceful-fs')

@@ -5,0 +3,0 @@

{
"name": "fs-extra",
"version": "0.28.0",
"version": "0.29.0",
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",

@@ -39,3 +39,2 @@ "homepage": "https://github.com/jprichardson/node-fs-extra",

"klaw": "^1.0.0",
"path-is-absolute": "^1.0.0",
"rimraf": "^2.2.8"

@@ -51,3 +50,3 @@ },

"semver": "^4.3.6",
"standard": "^5.3.1"
"standard": "^7.0.0-beta.0"
},

@@ -54,0 +53,0 @@ "main": "./lib/index",

@@ -14,8 +14,3 @@ Node.js: fs-extra

**NOTE ~~(2016-01-13)~~(2016-04-16):** Node v0.10 (and possibly v0.12) will be unsupported AFTER Ubuntu LTS releases their next version ~~AND [Amazon Lambda
upgrades](http://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html) its Node.js runtime from v0.10~~ (see: https://aws.amazon.com/blogs/compute/node-js-4-3-2-runtime-now-available-on-lambda/).
I anticipate this will happen around late spring / summer 2016. Please prepare accordingly. After this, we'll make a strong push
for a 1.0.0 release.
Why?

@@ -96,3 +91,2 @@ ----

- [copySync](#copy)
- [createOutputStream](#createoutputstreamfile-options)
- [emptyDir](#emptydirdir-callback)

@@ -99,0 +93,0 @@ - [emptyDirSync](#emptydirdir-callback)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc