Remy Suen
Remy Suen
We should provide labels when calling `workspace/applyEdit` so that clients can use the `label` parameter to present something meaningful to the user if it wishes.
We should inspect the client's `capabilities.textDocument.signatureHelp.signatureInformation.documentationFormat` property to determine what kind of markup the client supports. If it supports Markdown then we should use Markdown in the `documentation` field of...
The Docker builder will create an error if the IP address of an `EXPOSE` instruction is invalid. We should publish a diagnostic for this same error. ```Dockerfile FROM scratch EXPOSE...
`SessionAuthenticationMiddleware` was removed in [Django 2](https://docs.djangoproject.com/en/3.0/releases/2.0/). This middleware should not be used anymore. The server won't even start otherwise. ``` $ ./src/manage.py runserver Watching for file changes with StatReloader Performing...
**Describe your environment** - OpenTelemetry C++ 1.2.0 - OpenTelemetry C++ Contrib at 3808bc3be386fbcc58d39cd858fb375d7e1fafa3 - Nginx 1.19.9 I haven't narrowed down how to reproduce the issue yet but I'm getting a...
**Describe your environment** I'm compiling inside a `k8s.gcr.io/ingress-nginx/controller:v0.46.0` Docker image but the same thing can be seen in the output of the [GitHub Actions](https://github.com/open-telemetry/opentelemetry-cpp-contrib/runs/4544578053?check_suite_focus=true) so I don't think it's environment-specific...
1. Run the code below. 2. You will see that stuff gets printed indicating a dirty index. 3. `cd merge-commit-bug` 4. `git status` ``` > git status On branch master...
The C++ partial implementation template of both [`fastWalk`](https://github.com/nodegit/nodegit/blob/38bcb340bbac946d3a389d3b13ffe1f62f0958b6/generate/templates/manual/revwalk/fast_walk.cc#L17) and [`fileHistoryWalk`](https://github.com/nodegit/nodegit/blob/d23ba8723dc56d1167a67c9bd80c2d05fba4c4b1/generate/templates/manual/revwalk/file_history_walk.cc#L23) is calling the `reserve(size_type)` function from `std::vector`. That function will crash if the value given is a negative number. **fastWalk**...
If `Revwalk.SORT.TOPOLOGICAL` is used in a revwalk, Node will crash. This is caused by [libgit #4102](https://github.com/libgit2/libgit2/issues/4102). This is [blocking](https://bugs.eclipse.org/bugs/show_bug.cgi?id=511822) the Orion project from upgrading to NodeGit 0.17.0.
It seems that `Revwalk`'s `fileHistoryWalk(*)` function does **not** find merge commits. If you run `git log` on `test/repos/workdir/package.json` (that's what's done in the test, `./package.json` will work too), you can...