Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add ability to search by arbitrary metadata | Miklos Vajna | 2021-02-21 | 1 | -0/+18 |
| | | | | | | | | | | | | Example: ~/git/git-bug/git-bug ls --metadata github-url=https://github.com/author/myproject/issues/42 or ~/git/git-bug/git-bug ls metadata:github-url:\"https://github.com/author/myproject/issues/42\" Fixes the cmdline part of <https://github.com/MichaelMure/git-bug/issues/567>. | ||||
* | repo: move bleve there | Michael Muré | 2020-12-08 | 3 | -46/+32 |
| | |||||
* | repo: finish RepoStorage move | Michael Muré | 2020-12-08 | 5 | -53/+27 |
| | |||||
* | query: english specialized indexing | Michael Muré | 2020-11-17 | 1 | -0/+2 |
| | |||||
* | ls: fix query quotation | Michael Muré | 2020-11-17 | 1 | -3/+10 |
| | |||||
* | Add full-text search support in the ls command | Mike Goldin | 2020-11-17 | 2 | -51/+54 |
| | |||||
* | Create a search cache index when git-bug starts up if none exists | Mike Goldin | 2020-11-17 | 2 | -1/+102 |
| | |||||
* | identity: remove support for legacy identity | Michael Muré | 2020-10-04 | 3 | -23/+7 |
| | |||||
* | cache,bug,identity: structural change | Michael Muré | 2020-10-04 | 5 | -4/+28 |
| | | | | | | - bug doesn't commit identities anymore, only make sure they are commit - cache use an IdentityResolver to load bugs with identities from the cache (deps injection) - IdentityCache now are identity.Interface | ||||
* | repo: use go-git in more places, fix push | Michael Muré | 2020-10-04 | 1 | -5/+5 |
| | |||||
* | repo: implement local/global/any config everywhere | Michael Muré | 2020-09-29 | 2 | -0/+12 |
| | |||||
* | bridge: store credentials in the Keyring instead of the git config | Michael Muré | 2020-09-29 | 1 | -3/+2 |
| | |||||
* | Update cache/lru_id_cache.go | Vincent Tiu | 2020-08-27 | 1 | -1/+1 |
| | | | Co-authored-by: Michael Muré <batolettre@gmail.com> | ||||
* | Fix bugs and cleanup code | vince | 2020-08-26 | 2 | -3/+3 |
| | |||||
* | cache: simplify cache eviction | Michael Muré | 2020-08-25 | 4 | -98/+89 |
| | |||||
* | Implement cache eviction and testing | vince | 2020-08-25 | 5 | -75/+73 |
| | |||||
* | Implement the LRU Cache | vince | 2020-08-20 | 4 | -29/+220 |
| | |||||
* | Fix concurrency error | vince | 2020-08-18 | 1 | -11/+24 |
| | |||||
* | Remove pointer and unnecessary code | vince | 2020-08-13 | 2 | -19/+1 |
| | |||||
* | Add mutex to bugCache | vince | 2020-08-13 | 2 | -0/+51 |
| | | | | This adds a mutex to the bugCache to deal with locking. | ||||
* | cache: fix BugExcerpt's timestamp not properly stored | Michael Muré | 2020-07-28 | 2 | -10/+9 |
| | | | | fix #426 | ||||
* | bug: code cleanup for the rm feature | Michael Muré | 2020-07-28 | 1 | -0/+5 |
| | |||||
* | Fix bug tests | vince | 2020-07-28 | 1 | -5/+48 |
| | |||||
* | Update docs | vince | 2020-07-28 | 1 | -1/+1 |
| | |||||
* | Remove need to specify remote | vince | 2020-07-28 | 1 | -11/+2 |
| | | | | This commit makes the removeBug command use the listRefs repo command to search for the bug, eliminating the need to input the remote the bug came from. | ||||
* | Move args parsing out of repo cache | vince | 2020-07-28 | 2 | -9/+5 |
| | |||||
* | Add test for removing bug from cache | vince | 2020-07-28 | 1 | -0/+5 |
| | |||||
* | Allow user to delete remote bugs | vince | 2020-07-28 | 1 | -3/+14 |
| | |||||
* | Add the 'rm' command | vince | 2020-07-28 | 1 | -0/+18 |
| | | | | This commit adds a command that removes a bug from the repository, given a prefix. | ||||
* | cache: split into multiple files for readability | Michael Muré | 2020-07-03 | 4 | -846/+881 |
| | |||||
* | repository: merge git.Hash in for one less /util package | Michael Muré | 2020-07-01 | 2 | -8/+7 |
| | |||||
* | Reorganize the webUI and API code | Michael Muré | 2020-06-27 | 2 | -8/+18 |
| | | | | | | | | | | Included in the changes: - create a new /api root package to hold all API code, migrate /graphql in there - git API handlers all use the cache instead of the repo directly - git API handlers are now tested - git API handlers now require a "repo" mux parameter - lots of untangling of API/handlers/middleware - less code in commands/webui.go | ||||
* | repository: remove tie to Bug, improved and reusable testing | Michael Muré | 2020-06-26 | 2 | -3/+9 |
| | | | | | | | | | - allow the creation of arbitrary Lamport clocks, freeing the way to new entities and removing Bug specific (upper layer) code. - generalize the memory-only and persisted Lamport clocks behind a common interface - rework the tests to provide reusable testing code for a Repo, a Clock, a Config, opening a path to add a new Repo implementation more easily - test previously untested components with those new tests Note: one problem found during this endeavor is that `identity.Version` also need to store one time + Lamport time for each other Entity (Bug, config, PR ...). This could possibly done without breaking change but it would be much easier to wait for https://github.com/MichaelMure/git-bug-migration to happen. | ||||
* | fix cache not rebuilding properly | Michael Muré | 2020-06-26 | 1 | -20/+3 |
| | |||||
* | bug: harmonize how time are used, fix some issues in command special formats | Michael Muré | 2020-06-25 | 2 | -10/+23 |
| | | | | This assume that the convertion from time.Time <--> Unix timestamp is lossless which seems to be. | ||||
* | query: no need for an ast package | Michael Muré | 2020-03-28 | 2 | -14/+14 |
| | |||||
* | cache: replace the all-in-one query parser by a complete one with ↵ | Michael Muré | 2020-03-28 | 6 | -251/+52 |
| | | | | AST/lexer/parser | ||||
* | cache: fix missing login in LegacyAuthorExcerpt causing panic | Michael Muré | 2020-03-05 | 1 | -1/+2 |
| | |||||
* | identity: bring back the login to hold that info from bridges (purely ↵ | Michael Muré | 2020-02-25 | 4 | -10/+35 |
| | | | | informational) | ||||
* | Merge remote-tracking branch 'origin/master' into cheshirekow-jira | Michael Muré | 2020-02-14 | 1 | -0/+12 |
|\ | |||||
| * | graphql: expose the name of Repository | Michael Muré | 2020-02-12 | 1 | -0/+12 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into cheshirekow-jira | Michael Muré | 2020-02-09 | 7 | -139/+270 |
|\| | |||||
| * | cache: add proper locking to avoid concurrent access | Michael Muré | 2020-02-09 | 3 | -31/+123 |
| | | |||||
| * | graphql: use the cache in priority for fast browsing at < 20ms instead of ↵ | Michael Muré | 2020-02-09 | 1 | -22/+86 |
| | | | | | | | | seconds | ||||
| * | more more wip | Michael Muré | 2020-02-08 | 6 | -46/+29 |
| | | |||||
| * | wip | Michael Muré | 2020-02-08 | 1 | -1/+1 |
| | | |||||
| * | cache: rework resolving of bugs, identity | Michael Muré | 2020-02-08 | 1 | -42/+30 |
| | | |||||
| * | identity: rework mutation | Michael Muré | 2020-02-08 | 1 | -2/+2 |
| | | |||||
| * | cache: don't store legacy identities IDs in bug excerpt as they are not ↵ | Michael Muré | 2020-02-03 | 1 | -6/+10 |
| | | | | | | | | reachable. Fix a panic | ||||
* | | codereview #2: some cleanup, correct use of nothing-events | Josh Bialkowski | 2019-12-18 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * return error, don't panic * skipping status export is an error * use switch in config.go * move PromptPassword to input * move client construction into getIdentityClient * use non-pointer context throughout client since it is an interface * remove some TODOs * don't emit multiple nothing-events, just one per bug only if nothing happened. * rename EditBody to EditCreateComment * add configuration notes about additional values * store bug id map in a dictionary in the config * some fixes from testing |