| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-12-10 | Merge pull request #87 from addaleax/fix-bug-86 | Nick Merwin | 1 | -1/+1 | |
| Fix bug #86 | |||||
| 2015-12-10 | Merge pull request #88 from fracmak/feature/service_pull_request | Nick Merwin | 2 | -0/+4 | |
| Added support for service_pull_request in jenkins | |||||
| 2015-12-10 | Merge pull request #108 from daleharvey/80 | Nick Merwin | 1 | -1/+1 | |
| Use HEAD to pick up git info | |||||
| 2015-12-10 | Merge branch 'pr/110' | Nick Merwin | 2 | -2/+2 | |
| 2015-12-10 | Merge pull request #76 from jacob-meacham/feature/user-options | Nick Merwin | 2 | -5/+13 | |
| allow users to pass options through. | |||||
| 2015-11-06 | rm unneeded options, bump node in travis | Andrii Shumada | 2 | -2/+2 | |
| 2015-10-16 | Use HEAD to pick up git info | Dale Harvey | 1 | -1/+1 | |
| 2015-08-12 | Added support for process.env.COVERALLS_ENDPOINT | Adam Meadows | 1 | -1/+6 | |
| To allow using this tool with Coveralls Enterprise, I've added support in `sendToCoveralls` to read the host from a `COVERALLS_ENDPOINT` environment variable (if it exists), else default to coveralls.io (as before). | |||||
| 2015-07-15 | Merge remote-tracking branch 'upstream/master' into fix-bug-86 | Hauke Henningsen | 1 | -1/+1 | |
| Conflicts: lib/fetchGitData.js | |||||
| 2015-07-14 | Pass CI_PULL_REQUEST through to coveralls if it is set | Ethan Langevin | 2 | -0/+9 | |
| 2015-07-13 | Fix parsing git message with REGEX_COMMIT_DETAILS | Joshua Ma | 1 | -1/+1 | |
| Given the commit message ``` tree 2d257d54add0901a72fbe492538aec4a35b4f4a5 parent 21d9ce4eb278af46561e069d6410e72a88c38036 author Joshua Ma <[email protected]> 1436838814 -0700 committer Joshua Ma <[email protected]> 1436839048 -0700 main message secondary detail ``` REGEX_COMMIT_DETAILS previously incorrectly matched `secondary detail` as the message - it lets an optional newline match (A), followed by nongreedy `[\S\s]+`, until a double-newline (B) is found. The message used is what follows B. Since there's two double-newlines, before `main message` and `secondary detail`, the first double-newline is used towards (A) and the second set is the one that matches (B). So the message ends up being `secondary detail`. This change simplifies the regex to just a nongreedy `[\S\s]*` until the first double-newline, after which the message is expected. | |||||
| 2015-04-24 | CI_PULL_REQUEST is just the url for the entire PR, have to split it and | Josh Callender | 1 | -1/+5 | |
| grab the number there. CIRCLE_PR_NUMBER is only defined for forks. | |||||
| 2015-04-24 | add support for CircleCI pull request commenting | Josh Callender | 2 | -0/+4 | |
| 2015-04-21 | Added support for service_pull_request in jenkins using the github pull ↵ | Merrifield, Jay | 2 | -0/+4 | |
| request plugin's environment variables | |||||
| 2015-04-20 | Fix bug #86 | Hauke Henningsen | 1 | -1/+1 | |
| Instead of matching the git commit file for emails which contain at least one character, match for “emails” which also may be empty. Also, use greedy regex matching in those places which is likely to be more performant than non-greedy matching. | |||||
| 2015-04-15 | Accept more valid git branch names | Hauke Henningsen | 1 | -1/+2 | |
| According to git-check-ref-format(1), branch naming excludes a number of characters, but various non-word characters are definitely allowed. This modifies the `REGEX_BRANCH` detection to match branch names containing some non-word characters, e.g. `features/foo` or `bar-baz`. | |||||
| 2015-01-29 | allow users to pass options through. | Jacob Meacham | 2 | -5/+13 | |
| 2014-11-04 | Add Wercker CI support with tests. | Steven Weathers | 2 | -1/+8 | |
| Fix minor lint error where a second semicolon appears in lib/fetchGitData.js | |||||
| 2014-09-11 | fetch all characters by selecting all whitespace and all none whitespace | Schaaf, Martin | 1 | -1/+1 | |
| 2014-09-11 | fix parsing of multiline header responses | Schaaf, Martin | 1 | -1/+1 | |
| takes not known headers into account | |||||
| 2014-07-03 | log at error level by default and only show others if --verbose switch is on. | Gregg Caines | 2 | -3/+5 | |
| 2014-06-22 | improve warning messaging when the repo token is not found. | Gregg Caines | 1 | -1/+2 | |
| 2014-06-22 | Merge pull request #50 from roman01la/master | Gregg Caines | 1 | -0/+2 | |
| add Travis commit & branch info | |||||
| 2014-05-23 | convertLcovToCoveralls should output paths with slashes even on windows. | jaubourg | 1 | -1/+1 | |
| 2014-03-27 | add Travis commit & branch info | roman01la | 1 | -0/+2 | |
| 2014-03-14 | convertLcovToCoveralls should convert absolute source paths to relative ↵ | Marc Knaup | 1 | -2/+3 | |
| paths in output. | |||||
| 2014-02-16 | add support for drone ci | deepak1556 | 1 | -0/+7 | |
| 2014-02-11 | Read service_name from coveralls.yml | Gerard Escalante | 1 | -1/+5 | |
| Also fixed a typo from the last commit. | |||||
| 2014-02-11 | Swap out yaml with js-yaml for Win compat | Gerard Escalante | 1 | -3/+2 | |
| 2014-02-11 | Windows compat fixes | Gerard Escalante | 2 | -10/+4 | |
| Changed usage of '/' as root dir. Stopped tests from wiping out environment. | |||||
| 2014-01-31 | Fixing existsSync issues for older versions of node | Jonathan Kingston | 1 | -1/+2 | |
| 2014-01-26 | Add callback to handleInput() for easier use in other projects | Patrick Gansterer | 1 | -5/+10 | |
| Since handleInput works completely asynchronous it is necessary to provide a callback function for signaling finished operation. This allows other project to call the handleInput function. | |||||
| 2013-12-17 | Fix cainus/node-coveralls#30 | Juga Paazmaya | 1 | -1/+1 | |
| 2013-12-05 | Added ability to turn on debug logging via environment variable | mattjmorrison | 1 | -6/+16 | |
| For the grunt-karma-coveralls project, I need to be able to turn on debug level logging but without using `process.argv`. This will allow me to do so. This addresses this issue: https://github.com/mattjmorrison/grunt-karma-coveralls/issues/2 and can be fixed with this commit: https://github.com/mattjmorrison/grunt-karma-coveralls/commit/4bd6e2b58647dda4a6335fa6077334d8021e23c0 | |||||
| 2013-11-08 | Ah, right, ES5 has String#trim(), keep forgetting that… | Christophe Porteneuve | 1 | -6/+2 | |
| 2013-11-08 | Fix step 3: code cleanup + faster/nimbler use of Git to obtain data ↵ | Christophe Porteneuve | 2 | -53/+31 | |
| (rev-parse and cat-file instead of multiple log calls) | |||||
| 2013-11-08 | Fix step 2: properly detect local Git branch, and just keep pre-provided one ↵ | Christophe Porteneuve | 1 | -31/+40 | |
| if any. | |||||
| 2013-11-08 | Fix step 1: for dev-local uses, properly detect local Git branch and commit | Christophe Porteneuve | 2 | -0/+38 | |
| 2013-09-06 | export both getOptions and getBaseOptions from getOptions.js | Matthew J. Morrison | 1 | -2/+2 | |
| Also updated index.js to prevent any breaking API changes and added tests around both getOptions and getBaseOptions. | |||||
| 2013-09-06 | Added getBaseOptions to allow setting up options without depending on ↵ | Matthew J. Morrison | 1 | -20/+24 | |
| process.argv | |||||
| 2013-08-24 | added codeship environment var support. | Gregg Caines | 1 | -0/+6 | |
| 2013-08-24 | removed exec-sync. version 2.2.0 candidate | Gregg Caines | 3 | -61/+93 | |
| 2013-07-30 | fixed git test | Gabe Hayes | 1 | -10/+1 | |
| 2013-07-29 | add logging when git executable is unable to be used | Gabe Hayes | 1 | -0/+1 | |
| 2013-07-29 | added full test coverage on fetchGitData | Gabe Hayes | 1 | -7/+1 | |
| 2013-07-27 | collapsed logical block | Gabe Hayes | 1 | -3/+2 | |
| 2013-07-27 | tests for fetchGitData | Gabe Hayes | 1 | -26/+37 | |
| 2013-07-26 | fetch git data from command line git | Gabe Hayes | 2 | -16/+117 | |
| - added exec-sync package to execute git commands - if a proper git hash is not passed, falls back to default values | |||||
| 2013-07-25 | change service name to circleci | Gabe Hayes | 1 | -1/+1 | |
| 2013-07-24 | add support for CircleCI | Gabe Hayes | 1 | -0/+7 | |
