Skip to content

Commit 52d66b5

Browse files
committed
Merge remote-tracking branch 'origin/main' into VSCODE-574-export-to-playground
# Conflicts: # src/participant/prompts/index.ts
2 parents 1eb6bf5 + b2b5b3b commit 52d66b5

File tree

16 files changed

+1230
-1366
lines changed

16 files changed

+1230
-1366
lines changed

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,20 @@
4040
"outFiles": [
4141
"${workspaceFolder}/dist/**/*.js"
4242
]
43+
},
44+
{
45+
"name": "Run Tests",
46+
"type": "extensionHost",
47+
"request": "launch",
48+
"runtimeExecutable": "${execPath}",
49+
"args": [
50+
"${workspaceFolder}/out/test/suite", // TODO: VSCODE-641 - remove suite
51+
"--disable-extensions",
52+
"--extensionDevelopmentPath=${workspaceFolder}",
53+
"--extensionTestsPath=${workspaceFolder}/out/test/suite"
54+
],
55+
"outFiles": ["${workspaceFolder}/out/**/*.js"],
56+
"preLaunchTask": "npm: compile:extension",
4357
}
4458
],
4559
"compounds": [

CHANGELOG.md

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

3+
## [v1.9.3](https://github.com/mongodb-js/vscode/releases/tag/v1.9.3) - 2024-10-24
4+
5+
## What's Changed
6+
* chore: Adapt message content access to latest vscode API VSCODE-640 by @nirinchev in https://github.com/mongodb-js/vscode/pull/857
7+
* fix: Replace regex fragment matching with streaming KMP VSCODE-639 by @nirinchev in https://github.com/mongodb-js/vscode/pull/837
8+
9+
**Full Changelog**: https://github.com/mongodb-js/vscode/compare/v1.9.2...v1.9.3
10+
11+
12+
## [v1.9.2](https://github.com/mongodb-js/vscode/releases/tag/v1.9.2) - 2024-10-21
13+
14+
## What's Changed
15+
* fix(chat): show empty docs msg, schema set msg content correctly VSCODE-628 by @Anemy in https://github.com/mongodb-js/vscode/pull/851
16+
* chore(participant): move docs references after content VSCODE-629 by @Anemy in https://github.com/mongodb-js/vscode/pull/852
17+
* fix: use new connection form by @paula-stacho in https://github.com/mongodb-js/vscode/pull/815
18+
* chore(chat): update docs chatbot request headers VSCODE-634 by @Anemy in https://github.com/mongodb-js/vscode/pull/853
19+
* chore: use the latest vsce that adds the chat-participant tag VSCODE-638 by @alenakhineika in https://github.com/mongodb-js/vscode/pull/855
20+
21+
22+
**Full Changelog**: https://github.com/mongodb-js/vscode/compare/v1.9.1...v1.9.2
23+
24+
325
## [v1.9.1](https://github.com/mongodb-js/vscode/releases/tag/v1.9.1) - 2024-09-30
426

527
## What's Changed
@@ -390,25 +412,3 @@ To dig deeper please feel free to follow the links mentioned below:
390412
- Fixed showing recently dropped collections and databases in the explorer (VSCODE-244, #288)
391413

392414

393-
## [v0.5.0](https://github.com/mongodb-js/vscode/releases/tag/v0.5.0) - 2021-03-10
394-
395-
### Added
396-
397-
- Add documentation details to playground auto completion items (#267)
398-
399-
### Fixed
400-
401-
- Fix launching mongodb shell with ssl in bash (VSCODE-227, #270)
402-
403-
404-
## [v0.4.2](https://github.com/mongodb-js/vscode/releases/tag/v0.4.2) - 2021-02-17
405-
406-
### Added
407-
408-
- Add icon to refresh collection documents list (#264)
409-
410-
### Changed
411-
412-
- Updated the Atlas link to have https (#259)
413-
414-

0 commit comments

Comments
 (0)