Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Anemy authored Mar 10, 2021
1 parent bd2227c commit 20737a7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to the "mongodb" extension will be documented in this file.

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

## [0.5.0] - 2021-3-10

### Added

- Add documentation details to playground auto completion items (#267)

### Fixed

- Fix launching mongodb shell with ssl in bash (VSCODE-227, #270)

## [0.4.2] - 2021-2-17

### Added
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "mongodb-vscode",
"displayName": "MongoDB for VS Code",
"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.",
"version": "0.4.3-dev.0",
"version": "0.5.0",
"homepage": "https://github.com/mongodb-js/vscode",
"qna": "https://developer.mongodb.com/community/forums/",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/connectionController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ suite('Connection Controller Test Suite', function () {

test('"getConnectionStringFromConnectionId" returns the driver uri of a connection', async () => {
const expectedDriverUri =
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.4.3-dev.0&ssl=false';
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.5.0&ssl=false';

await testConnectionController.loadSavedConnections();
await testConnectionController.addNewConnectionStringAndConnect(
Expand Down

0 comments on commit 20737a7

Please sign in to comment.