Skip to content

Commit

Permalink
v0.4.1 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anemy authored Feb 10, 2021
1 parent 9cd5c36 commit b1d42f5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.4.1] - 2021-2-10

### Changed

- Updated the Atlas link in the overview page (#250)

### Fixed

- Fixed an issue with playground connectivity not defaulting the `directConnection` option to true (VSCODE-234, #255)
- Fixed an issue around showing an error while editing a playground file without an active MongoDB connection (VSCODE-231, #251)

## [0.4.0] - 2021-1-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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.1-dev.0",
"version": "0.4.1",
"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.1-dev.0&ssl=false';
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.4.1&ssl=false';

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

0 comments on commit b1d42f5

Please sign in to comment.