Skip to content

Commit e8c533b

Browse files
authored
0.4.0 (#244)
1 parent 8279f0f commit e8c533b

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
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.4.0] - 2021-1-25
8+
9+
### Added
10+
11+
- Added the ability to edit documents opened from the explorer panel (VSCODE-219, #226, #239)
12+
- Added the ability to open and edit documents from playground results (VSCODE-222, #232)
13+
- Added icons for connect and playground panel actions (VSCODE-179, #240)
14+
- Added the ability to specify multiple hosts and ports in the connection form (VSCODE-208, #224)
15+
- Added a feature where we show the overview page when the extension is first installed (VSCODE-167, #225)
16+
17+
### Changed
18+
19+
- Changed how we generate default connection names for new connections to better represent multiple hosts and ports, and srv records (VSCODE-221, #227)
20+
- Changed how we show connectivity errors with the connection form (VSCODE-196, #217)
21+
22+
### Fixed
23+
24+
- Fix opening documents with a binary `_id` from the explorer panel (VSCODE-118, #220)
25+
- Fixed playground log output panel to not display when a playground is open and when a playground is run and there was no log output (#234)
26+
- Fixed code lenses for partial playground executions sometimes being missing (VSCODE-226, #243)
27+
728
## [0.3.0] - 2020-11-24
829

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

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

0 commit comments

Comments
 (0)