Skip to content

Commit b1d42f5

Browse files
authored
v0.4.1 (#256)
1 parent 9cd5c36 commit b1d42f5

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.4.1] - 2021-2-10
8+
9+
### Changed
10+
11+
- Updated the Atlas link in the overview page (#250)
12+
13+
### Fixed
14+
15+
- Fixed an issue with playground connectivity not defaulting the `directConnection` option to true (VSCODE-234, #255)
16+
- Fixed an issue around showing an error while editing a playground file without an active MongoDB connection (VSCODE-231, #251)
17+
718
## [0.4.0] - 2021-1-25
819

920
### Added

package-lock.json

Lines changed: 1 addition & 1 deletion
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.1-dev.0",
6+
"version": "0.4.1",
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.1-dev.0&ssl=false';
515+
'mongodb://localhost:27018/?readPreference=primary&appname=mongodb-vscode%200.4.1&ssl=false';
516516

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

0 commit comments

Comments
 (0)