You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

ipfs-utils

Package Overview
Dependencies
Maintainers
3
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.3 to 6.0.4

9

CHANGELOG.md

@@ -0,1 +1,10 @@

## [6.0.4](https://github.com/ipfs/js-ipfs-utils/compare/v6.0.3...v6.0.4) (2021-03-22)
### Bug Fixes
* allow all supported unixfs time types ([#111](https://github.com/ipfs/js-ipfs-utils/issues/111)) ([72e0097](https://github.com/ipfs/js-ipfs-utils/commit/72e0097accb58eb01480bb47085edfe25ea7bf9a))
## [6.0.3](https://github.com/ipfs/js-ipfs-utils/compare/v6.0.2...v6.0.3) (2021-03-15)

@@ -2,0 +11,0 @@

10

dist/src/files/glob-source.d.ts

@@ -9,3 +9,6 @@ declare function _exports(paths: Iterable<string> | AsyncIterable<string> | string, options?: {

mode?: number | undefined;
mtime?: Date | undefined;
mtime?: [number, number] | import("ipfs-unixfs/dist/src/types").Mtime | {
Seconds: number;
FractionalNanoseconds?: number | undefined;
} | Date | undefined;
} | undefined): AsyncGenerator<{

@@ -19,3 +22,6 @@ path: string;

mode: number | undefined;
mtime: Date | undefined;
mtime: [number, number] | import("ipfs-unixfs/dist/src/types").Mtime | {
Seconds: number;
FractionalNanoseconds?: number | undefined;
} | Date | undefined;
}, void, unknown>;

@@ -22,0 +28,0 @@ export = _exports;

3

package.json
{
"name": "ipfs-utils",
"version": "6.0.3",
"version": "6.0.4",
"description": "Package to aggregate shared logic and dependencies for the IPFS ecosystem",

@@ -68,2 +68,3 @@ "main": "src/index.js",

"delay": "^5.0.0",
"ipfs-unixfs": "^4.0.1",
"it-all": "^1.0.4",

@@ -70,0 +71,0 @@ "it-drain": "^1.0.3",

@@ -20,3 +20,3 @@ 'use strict'

* @param {number} [options.mode] - mode to use - if preserveMode is true this will be ignored
* @param {Date} [options.mtime] - mtime to use - if preserveMtime is true this will be ignored
* @param {import('ipfs-unixfs').MtimeLike} [options.mtime] - mtime to use - if preserveMtime is true this will be ignored
* @yields {Object} File objects in the form `{ path: String, content: AsyncIterator<Buffer> }`

@@ -23,0 +23,0 @@ */

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc