Skip to content

Commit ad15f0e

Browse files
authored
Release 1.11.0 (swiftlang#1039)
* Release 1.11.0
1 parent 59f46d7 commit ad15f0e

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 1.11.0 - 2024-08-28
4+
5+
### Added
6+
7+
- Added New Swift File command ([#1018](https://github.com/swiftlang/vscode-swift/pull/1018))
8+
- Added the `swift.sourcekit-lsp.backgroundIndexing` setting to enable experimental background indexing in SourceKit-LSP with Swift 6 ([#992](https://github.com/swiftlang/vscode-swift/issues/992))
9+
- Added the `swift.additionalTestArguments` setting to add arguments to `swift test` and `swift build --build-tests` commands used when building and running tests within VS Code ([#1020](https://github.com/swiftlang/vscode-swift/pull/1020))
10+
- Run tests multiple times by right clicking them in the Test Explorer > Run Multiple Times ([#1009](https://github.com/swiftlang/vscode-swift/pull/1009))
11+
- Run tests until a failure (or a maximum number) by right clicking them in the Test Explorer > Run Until Failure ([#1009](https://github.com/swiftlang/vscode-swift/pull/1009))
12+
13+
### Changed
14+
15+
- Comments preceding a failing [swift-testing](https://github.com/swiftlang/swift-testing) expectations are included in the test output to match command line behavior ([#1025](https://github.com/swiftlang/vscode-swift/pull/1025))
16+
17+
### Fixed
18+
19+
- Properly forward exit code if a task is terminated by the user with CTRL/CMD+C ([#1006](https://github.com/swiftlang/vscode-swift/pull/1006))
20+
- Update path of `lldb-dap` on Darwin ([#1008](https://github.com/swiftlang/vscode-swift/pull/1008))
21+
- Mark XCTest suites as passed/failed immediately on suite completion ([#1031](https://github.com/swiftlang/vscode-swift/pull/1031))
22+
- swift-testing tags on suites should be inherited by child suites and tests ([#1015](https://github.com/swiftlang/vscode-swift/pull/1015))
23+
- More reliably detect if the test binary is a unified [swift-testing](https://github.com/swiftlang/swift-testing) + XCTest binary ([#1004](https://github.com/swiftlang/vscode-swift/pull/1004))
24+
325
## 1.10.7 - 2024-08-08
426

527
### Changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "swift-lang",
33
"displayName": "Swift",
44
"description": "Swift Language Support for Visual Studio Code.",
5-
"version": "1.10.7",
5+
"version": "1.11.0",
66
"publisher": "sswg",
77
"icon": "icon.png",
88
"repository": {
@@ -1272,7 +1272,7 @@
12721272
"coverage": "npm run compile-tests && vscode-test --coverage",
12731273
"compile-tests": "find ./assets/test -type d -name '.build' -exec rm -rf {} + && npm run compile && npm run esbuild",
12741274
"package": "vsce package",
1275-
"dev-package": "vsce package --no-update-package-json 1.10.8-dev",
1275+
"dev-package": "vsce package --no-update-package-json 1.11.1-dev",
12761276
"preview-package": "vsce package --pre-release",
12771277
"tag": "./scripts/tag_release.sh $npm_package_version",
12781278
"contributors": "./scripts/generate_contributors_list.sh"

0 commit comments

Comments
 (0)