Skip to content

Tags: hiekay/sourcegraph

Tags

v2.13.5

Toggle v2.13.5's commit message
use node 10.13.0

v2.13.4

Toggle v2.13.4's commit message
Revert "enable experimentalFeatures.canonicalURLRedirect by default"

This reverts commit 4ffb62c, which caused sourcegraph/sourcegraph#807.

v2.13.3

Toggle v2.13.3's commit message
Use correct repository search path for github enterprise (sourcegraph…

…#985)

v2.13.2

Toggle v2.13.2's commit message
Reduce the number of aws code commit repos fetched per api call from …

…50 to 25 (sourcegraph#857)

v2.13.1

Toggle v2.13.1's commit message
Use git wire protocol v2 (sourcegraph#757)

v2.13.0

Toggle v2.13.0's commit message
add authz.Provider.Validate method

v3.0.0-alpha.4

Toggle v3.0.0-alpha.4's commit message
frontend: correct docker:cmd directive form

`serve` is treated as a shell form and hence runs:

```
/sbin/tini -- /usr/local/bin/frontend /bin/sh -c serve
```

Which is incorrect. Instead, we want `["serve"]` which is treated as parameters
to `ENTRYPOINT` by Docker, i.e.:

```
/sbin/tini -- /usr/local/bin/frontend serve
```

v3.0.0-alpha.3

Toggle v3.0.0-alpha.3's commit message
frontend: specify default serve command arg

So that we do not need to specify it as part of deployment, i.e. we can remove:

https://github.com/sourcegraph/deploy-sourcegraph/blob/0cbd3d084f97ad8f984d307e7d85f0f8983bd5cb/base/frontend/sourcegraph-frontend.Deployment.yaml#L28

v3.0.0-alpha.2

Toggle v3.0.0-alpha.2's commit message
searcher: correctly use background context

v3.0.0-alpha.1

Toggle v3.0.0-alpha.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fetch SRC_GIT_SERVERS from frontend if not configured (sourcegraph#616)

* pkg/gitserver: refactor address fetching for client (no functionality change)

* httpapi: add method for fetching SRC_GIT_SERVERS from frontend

* cmd/searcher: refactor MaxConcurrentFetchTar to be mutable at runtime

* pkg/gitserver: if SRC_GIT_SERVERS is not set, fetch from frontend

* fix closing of AddrsReady channel

* frontend: always use localhost for InternalClient URL

* use atomic.Value

* fix import

* properly update SetMaxConcurrentFetchTar at runtime

* localhost -> 127.0.0.1

* use sync.Once

* fix gitserverAddrList default value

* ensure error for division by zero is always clear

* ensure we wait for one successful gitserver address fetch first

* set default SRC_GIT_SERVERS when testing