Skip to content

Commit 25b2e79

Browse files
authored
Merge branch 'master' into pass-env-variables-on-test-debug
2 parents 88b3a29 + 1d71dab commit 25b2e79

File tree

8 files changed

+59
-62
lines changed

8 files changed

+59
-62
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13+
timeout-minutes: 30
1314

1415
steps:
1516
- uses: actions/checkout@v2

.github/workflows/release-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 30
1011

1112
steps:
1213
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
* As a workaround, make an edit within the file before using Rename Symbol.
1414

1515
## 1.24.2
16+
* Support inlay hints ([#1932](https://github.com/OmniSharp/omnisharp-roslyn/issues/1932), PR: [#5107](https://github.com/OmniSharp/omnisharp-vscode/pull/5107))
17+
* Pass "shell: true" as a spawn option when launching O# (PR: [#5125](https://github.com/OmniSharp/omnisharp-vscode/pull/5125))
18+
* Add GoToTypeDefinition provider ([#4251](https://github.com/OmniSharp/omnisharp-vscode/issues/4251), PR: [#5094](https://github.com/OmniSharp/omnisharp-vscode/pull/5094))
1619
* Quote launch paths when necessary ([#5099](https://github.com/OmniSharp/omnisharp-vscode/issues/5099), PR: [#5101](https://github.com/OmniSharp/omnisharp-vscode/pull/5101))
1720
* Fix string escape for linux and unix (PR: [#5122](https://github.com/OmniSharp/omnisharp-vscode/pull/5122))
1821
* Debounce diagnostic requests ([#5085](https://github.com/OmniSharp/omnisharp-vscode/issues/5085), PR: [#5089](https://github.com/OmniSharp/omnisharp-vscode/pull/5089))

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ For MacOS and Linux users who have Mono installed, this means you will need to s
5757
You can also use the .NET 6 build of OmniSharp which runs on the .NET 6 SDK. See instructions above.
5858

5959
### What's new in 1.24.2
60+
* Support inlay hints ([#1932](https://github.com/OmniSharp/omnisharp-roslyn/issues/1932), PR: [#5107](https://github.com/OmniSharp/omnisharp-vscode/pull/5107))
61+
* Pass "shell: true" as a spawn option when launching O# (PR: [#5125](https://github.com/OmniSharp/omnisharp-vscode/pull/5125))
62+
* Add GoToTypeDefinition provider ([#4251](https://github.com/OmniSharp/omnisharp-vscode/issues/4251), PR: [#5094](https://github.com/OmniSharp/omnisharp-vscode/pull/5094))
6063
* Quote launch paths when necessary ([#5099](https://github.com/OmniSharp/omnisharp-vscode/issues/5099), PR: [#5101](https://github.com/OmniSharp/omnisharp-vscode/pull/5101))
6164
* Fix string escape for linux and unix (PR: [#5122](https://github.com/OmniSharp/omnisharp-vscode/pull/5122))
6265
* Debounce diagnostic requests ([#5085](https://github.com/OmniSharp/omnisharp-vscode/issues/5085), PR: [#5089](https://github.com/OmniSharp/omnisharp-vscode/pull/5089))

package-lock.json

Lines changed: 45 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@
6767
"node-machine-id": "1.1.12",
6868
"request-light": "0.4.0",
6969
"rxjs": "6.6.7",
70-
"semver": "^5.6.0",
70+
"semver": "5.6.0",
7171
"stream": "0.0.2",
7272
"strip-bom": "5.0.0",
7373
"strip-bom-buf": "2.0.0",
7474
"tmp": "0.0.33",
7575
"vscode-debugprotocol": "1.33.0",
7676
"vscode-extension-telemetry": "0.1.6",
7777
"vscode-languageserver-protocol": "3.16.0",
78-
"vscode-nls": "^5.0.0",
78+
"vscode-nls": "5.0.0",
7979
"yauzl": "2.10.0"
8080
},
8181
"devDependencies": {
@@ -119,7 +119,7 @@
119119
"typescript": "4.2.4",
120120
"unzipper": "0.10.11",
121121
"vsce": "1.100.2",
122-
"vscode-test": "1.5.2",
122+
"vscode-test": "1.6.1",
123123
"webpack": "5.34.0",
124124
"webpack-cli": "4.6.0"
125125
},
@@ -4071,4 +4071,4 @@
40714071
}
40724072
]
40734073
}
4074-
}
4074+
}

test/runFeatureTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function main() {
1818
const extensionTestsPath = path.resolve(__dirname, './featureTests/index');
1919

2020
// Download VS Code, unzip it and run the integration test
21-
await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
21+
await runTests({ version: "1.65.0", extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
2222
} catch (err) {
2323
console.error(err);
2424
console.error('Failed to run tests');

test/runIntegrationTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function main() {
4444
}
4545

4646
// Download VS Code, unzip it and run the integration test
47-
await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: [workspacePath, '-n', '--verbose'], extensionTestsEnv: process.env });
47+
await runTests({ version: "1.65.0", extensionDevelopmentPath, extensionTestsPath, launchArgs: [workspacePath, '-n', '--verbose'], extensionTestsEnv: process.env });
4848
} catch (err) {
4949
console.error(err);
5050
console.error('Failed to run tests');

0 commit comments

Comments
 (0)