Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | chore(808): rearrange imports to git-bug convention | Steve Moyer | 2022-06-07 | 1 | -2/+3 |
| | |||||
* | test(808): document getCWD() and clean-up arguments | Steve Moyer | 2022-06-07 | 1 | -2/+8 |
| | |||||
* | test(808): skip root help test that uses a golden file | Steve Moyer | 2022-06-07 | 1 | -4/+2 |
| | |||||
* | fix(808): remove duplication stderr/stdout set-up | Steve Moyer | 2022-06-06 | 1 | -3/+0 |
| | |||||
* | test(808): make build tag compatible with Go 1.16 | Steve Moyer | 2022-06-06 | 1 | -0/+1 |
| | |||||
* | test(808): do not run golden file tests on Windows | Steve Moyer | 2022-06-06 | 2 | -52/+63 |
| | |||||
* | fix(808): simplify handling of Windows line terminations | Steve Moyer | 2022-06-06 | 1 | -2/+1 |
| | |||||
* | chore(808): merge in LocalStorage namespace configuration | Steve Moyer | 2022-06-06 | 2 | -3/+3 |
| | |||||
* | Merge branch 'master' into fix/778-git-bug-rm-broken | Steve Moyer | 2022-06-06 | 22 | -203/+277 |
|\ | |||||
| * | Merge pull request #803 from MichaelMure/feat/configurable-local-storage | Michael Muré | 2022-06-06 | 6 | -32/+90 |
| |\ | | | | | | | Feat/configurable local storage | ||||
| | * | refactor: simplify creation of temp dir - after 1.15 | Steve Moyer | 2022-05-31 | 1 | -5/+1 |
| | | | |||||
| | * | fix: remove only t.Parallel() | Steve Moyer | 2022-05-31 | 1 | -2/+0 |
| | | | |||||
| | * | gogit: close index before deleting it on disk | Michael Muré | 2022-05-31 | 1 | -9/+8 |
| | | | |||||
| | * | test: clean up temp dir and repo correctly | Steve Moyer | 2022-05-31 | 2 | -5/+19 |
| | | | |||||
| | * | test: add verification that localStorage.Root() resolves to the correct ↵ | Steve Moyer | 2022-05-26 | 1 | -3/+36 |
| | | | | | | | | | | | | absolute filepath | ||||
| | * | refactor: use namespace instead of application of applicationName | Steve Moyer | 2022-05-26 | 5 | -28/+28 |
| | | | |||||
| | * | chore: clean-up commented code | Steve Moyer | 2022-05-25 | 1 | -3/+0 |
| | | | |||||
| | * | feat: make local storage configurable | Steve Moyer | 2022-05-25 | 6 | -22/+43 |
| | | | |||||
| * | | Merge pull request #813 from MichaelMure/fix-data-race2 | Michael Muré | 2022-06-06 | 4 | -151/+144 |
| |\ \ | | | | | | | | | Github: fix data race | ||||
| | * | | github: fix data race when closing event channel | Michael Muré | 2022-06-05 | 4 | -151/+144 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I believe the issue was twofold: When done importing, the calling context is likely still valid, so if the output channel is not read enough and reach capacity, some event producer down the line can be blocked trying to send in that channel. When closing it, this send is still trying to proceed, which is illegal in go. In rateLimitHandlerClient, there was a need to 2 different type of output channel: core.ExportResult and ImportEvent. To do so, the previous code was using a single channel type RateLimitingEvent and a series of goroutines to read/cast/send to the final channel. This could result in more async goroutine being stuck trying to send in an at-capacity channel. Instead, the code now use a simple synchronous callback to directly push to the final output channel. No concurrency needed anymore and the code is simpler. Any of those fixes could have resolved the data race, but both fixes is more correct. | ||||
| * | | | Merge pull request #811 from MichaelMure/fix-data-race | Michael Muré | 2022-06-06 | 2 | -6/+6 |
| |\ \ \ | | |/ / | |/| | | graphql: fix two invalid mutex lock leading to data races | ||||
| | * | | graphql: fix two invalid mutex lock leading to data races | Michael Muré | 2022-06-05 | 2 | -6/+6 |
| |/ / | |||||
| * | | Merge pull request #806 from MichaelMure/docs | Michael Muré | 2022-05-31 | 3 | -2/+23 |
| |\ \ | | | | | | | | | doc: more discoverable docs | ||||
| | * | | doc: more discoverable docs | Michael Muré | 2022-05-31 | 3 | -2/+23 |
| |/ / | |||||
| * | | Merge pull request #805 from MichaelMure/completion-cleanup | Michael Muré | 2022-05-31 | 8 | -12/+14 |
| |\ \ | | |/ | |/| | misc: move all completions in a dedicated folder | ||||
| | * | misc: move all completions in a dedicated folder | Michael Muré | 2022-05-31 | 8 | -12/+14 |
| |/ | |||||
* | | fix(808): replace Windows line terminators | Steve Moyer | 2022-06-06 | 1 | -1/+5 |
| | | |||||
* | | fix(778): remove extra mutex lock when resolving bug prefix | Steve Moyer | 2022-05-31 | 1 | -4/+0 |
| | | |||||
* | | test(778): execute rm bug in testEnv (hangs) | Steve Moyer | 2022-05-28 | 1 | -0/+15 |
| | | |||||
* | | test(778): execute add user in testEnv and return userID | Steve Moyer | 2022-05-28 | 1 | -0/+33 |
| | | |||||
* | | test(778): clear output after user creation | Steve Moyer | 2022-05-28 | 1 | -1/+3 |
| | | |||||
* | | test(778): verify user create results in an identity and cache | Steve Moyer | 2022-05-27 | 2 | -0/+40 |
| | | |||||
* | | test(778): verify root command returns main help text | Steve Moyer | 2022-05-27 | 2 | -0/+120 |
| | | |||||
* | | test(778): allow alternate CWD via context | Steve Moyer | 2022-05-27 | 1 | -2/+16 |
| | | |||||
* | | test(778): capture stderr and stdout during tests | Steve Moyer | 2022-05-27 | 1 | -0/+3 |
|/ | |||||
* | Merge pull request #788 from hoijui/model_touchup | Michael Muré | 2022-05-10 | 1 | -22/+28 |
|\ | | | | | Model touchup | ||||
| * | model: Multiple, minor readability and language improvements | Robin Vobruba | 2022-05-04 | 1 | -11/+11 |
| | | |||||
| * | model: Removes now outdated statement about ops and root | Robin Vobruba | 2022-05-04 | 1 | -1/+0 |
| | | |||||
| * | model: Highlight some words with special meaning | Robin Vobruba | 2022-05-04 | 1 | -4/+4 |
| | | |||||
| * | model: Links to a section further down | Robin Vobruba | 2022-05-04 | 1 | -1/+1 |
| | | |||||
| * | model: Moves example description after the example | Robin Vobruba | 2022-05-04 | 1 | -3/+5 |
| | | |||||
| * | model: Adds link explaining nounce (wikipedia) | Robin Vobruba | 2022-05-04 | 1 | -1/+1 |
| | | |||||
| * | model: strict Markdown requires empty lines before (and after) lists | Robin Vobruba | 2022-05-04 | 1 | -1/+6 |
| | | |||||
* | | Merge pull request #768 from ↵ | Michael Muré | 2022-05-04 | 2 | -2/+3 |
|\ \ | | | | | | | | | | | | | MichaelMure/dependabot/go_modules/github.com/stretchr/testify-1.7.1 build(deps): bump github.com/stretchr/testify from 1.7.0 to 1.7.1 | ||||
| * | | build(deps): bump github.com/stretchr/testify from 1.7.0 to 1.7.1 | dependabot[bot] | 2022-03-16 | 2 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.0 to 1.7.1. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.7.0...v1.7.1) --- updated-dependencies: - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> | ||||
* | | | Merge pull request #783 from ↵ | Michael Muré | 2022-05-04 | 2 | -3/+3 |
|\ \ \ | |_|/ |/| | | | | | | | | MichaelMure/dependabot/go_modules/github.com/xanzy/go-gitlab-0.64.0 build(deps): bump github.com/xanzy/go-gitlab from 0.59.0 to 0.64.0 | ||||
| * | | build(deps): bump github.com/xanzy/go-gitlab from 0.59.0 to 0.64.0 | dependabot[bot] | 2022-04-25 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) from 0.59.0 to 0.64.0. - [Release notes](https://github.com/xanzy/go-gitlab/releases) - [Changelog](https://github.com/xanzy/go-gitlab/blob/master/releases_test.go) - [Commits](https://github.com/xanzy/go-gitlab/compare/v0.59.0...v0.64.0) --- updated-dependencies: - dependency-name: github.com/xanzy/go-gitlab dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> | ||||
* | | | Merge pull request #531 from krobelus/complete-bug-ids | Michael Muré | 2022-05-01 | 29 | -1407/+706 |
|\ \ \ | | | | | | | | | Complete bug IDs where appropriate | ||||
| * | | | completion: lots of small ironing | Michael Muré | 2022-05-01 | 1 | -51/+43 |
| | | | | |||||
| * | | | ls: fix incorrect query parsing with quotes escaped by the shell | Michael Muré | 2022-05-01 | 2 | -7/+59 |
| | | | |