Skip to content

Commit 48ec91b

Browse files
authored
0.6.0
1 parent 234d082 commit 48ec91b

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ All notable changes to the "mongodb" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.6.0] - 2021-6-13
8+
9+
### Added
10+
11+
- Added icons for time-series collections (VSCODE-263, #296)
12+
- Updated our mongosh dependency to 1.0.0 and MongoDB node driver to a fork of the 4.0.0 driver (VSCODE-264, #308)
13+
- Added support for load balanced connections (#311)
14+
15+
### Changed
16+
17+
- Made mongosh the default shell when launching the shell from a saved connection (#306)
18+
- Updated how collections and databases are created to use playgrounds instead of vscode inputs (VSCODE-262, #294)
19+
- Updated how playgrounds are run to preserve focus on the editor when the results are shown (VSCODE-214, #290, #222)
20+
- Updated the Atlas terraform snippet (#297)
21+
- Updated the collections list to sort system collections to the end of the list (#298)
22+
23+
### Fixed
24+
25+
- Fixed showing an error when large files are shown in vscode which have tokenization disabled (VSCODE-250, #290)
26+
- Fixed showing recently dropped collections and databases in the explorer (VSCODE-244, #288)
27+
728
## [0.5.0] - 2021-3-10
829

930
### Added

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "mongodb-vscode",
44
"displayName": "MongoDB for VS Code",
55
"description": "Connect to MongoDB and Atlas directly from your VS Code environment, navigate your databases and collections, inspect your schema and use playgrounds to prototype queries and aggregations.",
6-
"version": "0.5.1-dev.0",
6+
"version": "0.6.0",
77
"homepage": "https://github.com/mongodb-js/vscode",
88
"qna": "https://developer.mongodb.com/community/forums/",
99
"repository": {

src/test/suite/connectionController.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ suite('Connection Controller Test Suite', function () {
512512

513513
test('"getConnectionStringFromConnectionId" returns the driver uri of a connection', async () => {
514514
const expectedDriverUri =
515-
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.5.1-dev.0&directConnection=true&ssl=false';
515+
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.6.0&directConnection=true&ssl=false';
516516

517517
await testConnectionController.loadSavedConnections();
518518
await testConnectionController.addNewConnectionStringAndConnect(

0 commit comments

Comments
 (0)