Skip to content

Commit 20737a7

Browse files
authored
0.5.0
1 parent bd2227c commit 20737a7

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.5.0] - 2021-3-10
8+
9+
### Added
10+
11+
- Add documentation details to playground auto completion items (#267)
12+
13+
### Fixed
14+
15+
- Fix launching mongodb shell with ssl in bash (VSCODE-227, #270)
16+
717
## [0.4.2] - 2021-2-17
818

919
### 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.4.3-dev.0",
6+
"version": "0.5.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.4.3-dev.0&ssl=false';
515+
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.5.0&ssl=false';
516516

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

0 commit comments

Comments
 (0)