aboutsummaryrefslogtreecommitdiffstats
path: root/git_deps
Commit message (Collapse)AuthorAgeFilesLines
* extract process_hunk_line() methodAdam Spiers2018-09-091-24/+30
|
* extract debug_hunk() methodAdam Spiers2018-09-091-0/+5
|
* extract record_dependency_source() methodAdam Spiers2018-09-091-19/+26
|
* extract process_new_dependency() methodAdam Spiers2018-09-091-30/+37
|
* extract register_new_dependent() methodAdam Spiers2018-09-091-5/+8
|
* reflow some doc stringsAdam Spiers2018-09-091-11/+11
|
* extract run_blame() methodAdam Spiers2018-09-091-7/+10
|
* fix gitfile-handler to work on Python 3Adam Spiers2018-05-171-1/+5
|
* update dagre based on security advice from npmAdam Spiers2018-05-171-5/+5
|
* newer npm made whitespace consistent in package.jsonAdam Spiers2018-05-161-1/+1
|
* remove unneeded metadata variablesAdam Spiers2018-05-161-4/+0
| | | | https://github.com/blue-yonder/pyscaffold/issues/%3162
* update JQuery to 3.0.x1.0.0rc41.0.0Adam Spiers2018-05-161-1/+1
| | | | | | According to GitHub this will avoid a couple of known security vulnerabilities, although I don't think they are likely to have much impact in this context anyway.
* fix Python 3 uses of subprocess.check_outputAdam Spiers2018-05-163-6/+8
| | | | https://stackoverflow.com/questions/15817420/subprocess-and-type-str-doesnt-support-the-buffer-api/15817457#15817457
* fix broken importAdam Spiers2018-05-161-1/+1
| | | | | | NO idea how this worked before. Fixes #72.
* fix flake8 issuesAdam Spiers2018-05-151-1/+1
|
* StandardError was removed in Python 3Adam Spiers2018-05-151-1/+1
|
* notify of new dependency even if target already doneAdam Spiers2018-05-151-8/+12
| | | | | | | | | When a new dependency is discovered, its target may have already been placed on the TODO list via a different source (and maybe even analysed for dependencies), e.g. if find_dependencies() was previously called on it, or if it was previously found via recursion. In this case we still need to notify listeners of the dependency, even though we won't add it to the TODO list.
* allow DependencyDetector to be reusedAdam Spiers2018-05-151-0/+6
| | | | | | | | Avoid any errors if find_dependencies() is called repeatedly. Previously this could fail when recursion was enabled, because a commit could be processed via recursion, and then again via a subsequent call to the TODO list, at which point the sanity check that each blame line hadn't been seen before would fail.
* improve blame line trackingAdam Spiers2018-05-151-4/+9
|
* use dependent_sha1 temporary variableAdam Spiers2018-05-151-6/+7
| | | | Avoid calling hex() repeatedly
* improve debuggingAdam Spiers2018-05-151-24/+32
|
* move Repository instantiation to GitUtilsAdam Spiers2018-05-152-8/+15
|
* extract GitUtils.ref_commit() functionAdam Spiers2018-05-152-7/+16
|
* extract commit_summary() function into gitutils.pyAdam Spiers2018-05-152-2/+6
| | | | This helper can be reused elsewhere, e.g. in git-explode.
* move oneline() to gitutils.pyAdam Spiers2018-05-152-6/+9
| | | | | It has nothing to do with DependencyDetector, and this will let us reuse it from git-explode too.
* fix gitfile handler to work when # is URL-encodedAdam Spiers2018-05-151-0/+27
| | | | | For some reason, Chrome sometimes passes the URL with the # URL-encoded as %23.
* reuse abort from utils.pyAdam Spiers2018-05-151-4/+1
|
* fix handling of annotated tagsAdam Spiers2018-05-151-1/+4
| | | | | | pygit2.revparse_single(annotated_tag) returns a pygit2.Tag object, and this extra layer of indirection has to be resolved to obtain the pygit2.Commit.
* hack to get webserver working againAdam Spiers2018-05-151-0/+1
| | | | | webcola requires d3 which is not there before bundle.js is loaded. But why wasn't this ever a problem before?
* output webserver root when debuggingAdam Spiers2018-05-151-1/+4
|
* move instantiation of standard logger to utils.pyAdam Spiers2018-05-152-8/+10
|
* move debug logger setup to utils.pyAdam Spiers2018-05-152-13/+15
| | | | This is cleaner and will allow it to be reused elsewhere.
* remove unused add_linkAdam Spiers2018-05-151-3/+0
|
* fix invalid reference to json_errAdam Spiers2018-05-151-1/+1
| | | | | | Bug was discovered by PEP8 :-) Sem-Ver: bugfix
* fix PEP8 issuesAdam Spiers2018-05-154-10/+15
|
* convert into a proper Python moduleAdam Spiers2018-05-1526-0/+5821
Sem-Ver: api-break