Socket
Socket
Sign inDemoInstall

cacache

Package Overview
Dependencies
55
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 10.0.1 to 10.0.2

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="10.0.2"></a>
## [10.0.2](https://github.com/zkat/cacache/compare/v10.0.1...v10.0.2) (2018-01-07)
### Bug Fixes
* **ls:** deleted entries could cause a premature stream EOF ([347dc36](https://github.com/zkat/cacache/commit/347dc36))
<a name="10.0.1"></a>

@@ -7,0 +17,0 @@ ## [10.0.1](https://github.com/zkat/cacache/compare/v10.0.0...v10.0.1) (2017-11-15)

7

lib/entry-index.js

@@ -119,5 +119,6 @@ 'use strict'

return getKeyToEntry.then(reduced => {
return Array.from(reduced.values()).map(
entry => stream.push(formatEntry(cache, entry))
)
for (let entry of reduced.values()) {
const formatted = formatEntry(cache, entry)
formatted && stream.push(formatted)
}
}).catch({code: 'ENOENT'}, nop)

@@ -124,0 +125,0 @@ })

{
"name": "cacache",
"version": "10.0.1",
"version": "10.0.2",
"cache-version": {

@@ -5,0 +5,0 @@ "content": "2",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc