Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 1.11.0 - 2024-08-28

### Added

- Added New Swift File command ([#1018](https://github.com/swiftlang/vscode-swift/pull/1018))
- 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))
- 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))
- Run tests multiple times by right clicking them in the Test Explorer > Run Multiple Times ([#1009](https://github.com/swiftlang/vscode-swift/pull/1009))
- 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))

### Changed

- 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))

### Fixed

- 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))
- Update path of `lldb-dap` on Darwin ([#1008](https://github.com/swiftlang/vscode-swift/pull/1008))
- Mark XCTest suites as passed/failed immediately on suite completion ([#1031](https://github.com/swiftlang/vscode-swift/pull/1031))
- swift-testing tags on suites should be inherited by child suites and tests ([#1015](https://github.com/swiftlang/vscode-swift/pull/1015))
- 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))

## 1.10.7 - 2024-08-08

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "swift-lang",
"displayName": "Swift",
"description": "Swift Language Support for Visual Studio Code.",
"version": "1.10.7",
"version": "1.11.0",
"publisher": "sswg",
"icon": "icon.png",
"repository": {
Expand Down Expand Up @@ -1259,7 +1259,7 @@
"coverage": "npm run compile-tests && vscode-test --coverage",
"compile-tests": "find ./assets/test -type d -name '.build' -exec rm -rf {} + && npm run compile && npm run esbuild",
"package": "vsce package",
"dev-package": "vsce package --no-update-package-json 1.10.8-dev",
"dev-package": "vsce package --no-update-package-json 1.11.1-dev",
"preview-package": "vsce package --pre-release",
"tag": "./scripts/tag_release.sh $npm_package_version",
"contributors": "./scripts/generate_contributors_list.sh"
Expand Down