about summary refs log tree commit diff stats
path: root/internal
Commit message (Collapse)AuthorAgeLines
* feat: improve search relevance by boosting keyword matchesAlan Pearce2024-05-29-4/+46
|
* fix: missing alternate forms of packages with the same nameAlan Pearce2024-05-29-1/+1
| | | | e.g. for git: git, gitFull, gitMinimal, etc..
* feat: support cleartext HTTP/2 (i.e. from a reverse proxy)Alan Pearce2024-05-25-1/+8
|
* refactor: don't log request Host, it's irrelevant to this serverAlan Pearce2024-05-25-6/+1
|
* build: just use nix version as internal versionAlan Pearce2024-05-25-21/+3
|
* refactor: split server cmd and moduleAlan Pearce2024-05-24-8/+29
| | | | | It should now be possible to run the server from inside another go application by importing the main module and running its Start() function
* fix: check for nil pointers in NewMuxAlan Pearce2024-05-24-0/+6
|
* refactor: use a single value for per-source import timeoutsAlan Pearce2024-05-23-69/+60
|
* feat: stream files directly from fetcher to importerAlan Pearce2024-05-23-287/+288
| | | | | Use IndexMeta to store the information relevant to making conditional updates in future runs.
* fix: abort import of source on batch processing errorsAlan Pearce2024-05-23-7/+36
|
* fix(web): fetch host from request, not header, where it's expectedAlan Pearce2024-05-22-1/+1
|
* fix: make fetcher check on creation that it supports Source.ImporterAlan Pearce2024-05-20-41/+57
|
* fix(importer): abort import of current source in case of errorAlan Pearce2024-05-20-6/+22
| | | | | | | The switch to logger.Error is to make clear that the operation is aborted, whereas the remaining warning (fetching the git revision) is not so important so it remains a warning and does not skip the current iteration
* perf: make channel-nixpkgs importer only fetch necessary filesAlan Pearce2024-05-20-5/+14
| | | | i.e. don't fetch options.json when Source.Type = "packages"
* refactor: make repository URLs by Repo.Type (currently no change)Alan Pearce2024-05-20-12/+29
| | | | | "currently no change" because only GitHub repos are supported, but more ready to support other types
* refactor: use enum for Repository.TypeAlan Pearce2024-05-20-4/+8
|
* refactor: make declaration/definition URLs from Source.RepoAlan Pearce2024-05-20-19/+8
|
* docs: add comments to default configurationAlan Pearce2024-05-20-44/+51
|
* feat(config): use enums' string representations to print defaultsAlan Pearce2024-05-20-0/+8
|
* fix: nix cannot read date/time TOML values from default configAlan Pearce2024-05-20-2/+25
|
* feat(config): print durations and URLs with human valuesAlan Pearce2024-05-20-19/+23
|
* feat: show default configuration with --print-default-configAlan Pearce2024-05-20-0/+9
|
* feat: render markdown in packages' LongDescriptionAlan Pearce2024-05-17-2/+2
|
* feat: use attribute instead of name for packagesAlan Pearce2024-05-17-1/+3
|
* fix: missing last page of search resultsAlan Pearce2024-05-17-1/+2
|
* fix: store only data from current entity in indexAlan Pearce2024-05-17-4/+5
|
* fix: nil pointer when updating all sourcesAlan Pearce2024-05-17-1/+1
|
* feat: error on non-matching configuration entriesAlan Pearce2024-05-17-0/+5
|
* refactor: reduce debug loggingAlan Pearce2024-05-17-5/+0
|
* feat: automatically add/remove sources to/from indexAlan Pearce2024-05-17-2/+70
|
* fix: don't panic when re-indexing if fetcher did not updateAlan Pearce2024-05-17-2/+2
|
* feat: support searching packagesAlan Pearce2024-05-17-105/+122
|
* feat(index): enable storage of package dataAlan Pearce2024-05-17-1/+18
|
* refactor: export functions for parsing enum typesAlan Pearce2024-05-17-4/+4
|
* perf: flush index batch in groups of 10000Alan Pearce2024-05-17-5/+26
|
* fix(logging): track whether headers are written properlyAlan Pearce2024-05-17-3/+20
|
* feat: decode brotli-compressed filesAlan Pearce2024-05-17-16/+59
|
* refactor: separate fetch and import logicAlan Pearce2024-05-16-344/+444
|
* fix: rebuild index when --replace is specifiedAlan Pearce2024-05-16-4/+4
|
* refactor: remove unnecessary and incorrect bleve config optionAlan Pearce2024-05-16-1/+0
|
* feat: extract and store package set (e.g. nodePackages)Alan Pearce2024-05-16-1/+8
|
* refactor: use interface to unify Options and PackagesAlan Pearce2024-05-16-104/+130
|
* refactor: remove unused interfaceAlan Pearce2024-05-16-4/+0
|
* feat(importer): process packages from nixpkgs package.jsonAlan Pearce2024-05-16-5/+299
|
* refactor: remove toml special casesAlan Pearce2024-05-16-4/+4
|
* refactor(importer): move functions to utils fileAlan Pearce2024-05-16-50/+60
|
* feat: add caching header (except on error pages)Alan Pearce2024-05-15-1/+12
|
* feat: monitor import jobs via sentryAlan Pearce2024-05-15-12/+1
|
* feat: add browser search engines via opensearch descriptionAlan Pearce2024-05-15-1/+51
| | | | https://developer.mozilla.org/en-US/docs/Web/OpenSearch
* style: use consistent naming for config valueAlan Pearce2024-05-15-21/+21
|