Skip to content

Tags: hhy5277/sourcegraph-1

Tags

v2.13.6

Toggle v2.13.6's commit message
ignore erroneous test (2.13 ONLY)

v2.12.3

Toggle v2.12.3's commit message
imprecise totalCount to avoid requiring admin permission

(this is a temporary hack for 2.12; the non-admin caller of this method is removed in 2.13 and later)

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