This commit is contained in:
Andrew Arnott 2024-10-01 15:58:49 -07:00
Родитель f9ff7cc09a
Коммит 20d959837a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F33A420C60ED9C6F
3 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,2 +1,2 @@
# This is the default branch of the VS repo that we will use to insert into VS.
'rel/d17.12'
'main'

Просмотреть файл

@ -32,6 +32,7 @@ When building a Visual Studio extension, you should not include StreamJsonRpc in
| VS 2022.10 | 1.5.x, 2.18.x
| VS 2022.11 | 1.5.x, 2.19.x
| VS 2022.12 | 1.5.x, 2.20.x
| VS 2022.13 | 1.5.x, 2.21.x
StreamJsonRpc versions are forwards and backwards compatible "over the wire". For example it is perfectly legitimate to use StreamJsonRpc 2.4 on the server-side even if the client only uses 1.0, or vice versa. If an RPC method utilizes a newer StreamJsonRpc feature (e.g. `IAsyncEnumerable<T>` return value) and an older client that doesn't support these specially marshaled objects is used to call that method, a memory leak on the server may result.

Просмотреть файл

@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.20",
"version": "2.21-preview",
"publicReleaseRefSpec": [
"^refs/heads/main$",
"^refs/heads/v\\d+(?:.\\d+)?$"