New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pygitops

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pygitops - pypi Package Compare versions

Comparing version
0.17.0
to
0.18.0
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: pygitops
Version: 0.17.0
Version: 0.18.0
Summary: Wrapper for low-level git logic. Useful for systems automating git operations.

@@ -5,0 +5,0 @@ Project-URL: Homepage, https://github.com/wayfair-incubator/pygitops

@@ -1,2 +0,2 @@

__version__ = "0.17.0"
__version__ = "0.18.0"
__author__ = "Josh Woodward <josh.woodward2693@gmail.com>"

@@ -191,2 +191,6 @@ import logging

repo = Repo(clone_dir)
# Sync the remote URL in case the repo was transferred
# (e.g. GitHub org transfer from wayfair-staging to wayfair-shared)
if repo.remotes.origin.url != repo_url:
repo.remotes.origin.set_url(repo_url)
# pull down latest changes from `branch` if provided in kwargs, deferring to repo default branch

@@ -193,0 +197,0 @@ branch = kwargs.get("branch") or get_default_branch(repo)

@@ -7,3 +7,3 @@ [build-system]

name = "pygitops"
version = "0.17.0"
version = "0.18.0"
description = "Wrapper for low-level git logic. Useful for systems automating git operations."

@@ -10,0 +10,0 @@ readme = "README.md"