New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pull-git-repo

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-git-repo - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

12

index.js

@@ -329,3 +329,3 @@ var buffered = require('pull-buffered')

R.getTagParsed = function (name, cb) {
this.getRef(name, function (err, object) {
this.getTag(name, function (err, object) {
if (err) return cb(err)

@@ -507,2 +507,12 @@ Repo.getTagParsed(object, cb)

R.getTag = function (ref, cb) {
var self = this
this.getRef(ref, function gotRef(err, object, hash) {
if (err) return cb(err)
if (object.type !== 'tag')
return cb(new Error('Expected tag, got ' + object.type))
cb(null, object, hash)
})
}
R.readLog = function (head) {

@@ -509,0 +519,0 @@ var self = this

4

package.json
{
"name": "pull-git-repo",
"version": "0.4.1",
"version": "0.4.2",
"description": "utility methods for git repos using pull streams",

@@ -25,3 +25,3 @@ "main": "index.js",

"multicb": "^1.2.1",
"pull-buffered": "^0.3.1",
"pull-buffered": "^0.3.2",
"pull-cat": "^1.1.8",

@@ -28,0 +28,0 @@ "pull-git-pack": "^0.1.1",

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