Skip to content

Commit

Permalink
0.4.0 (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anemy authored Jan 25, 2021
1 parent 8279f0f commit e8c533b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ 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.0] - 2021-1-25

### Added

- Added the ability to edit documents opened from the explorer panel (VSCODE-219, #226, #239)
- Added the ability to open and edit documents from playground results (VSCODE-222, #232)
- Added icons for connect and playground panel actions (VSCODE-179, #240)
- Added the ability to specify multiple hosts and ports in the connection form (VSCODE-208, #224)
- Added a feature where we show the overview page when the extension is first installed (VSCODE-167, #225)

### Changed

- Changed how we generate default connection names for new connections to better represent multiple hosts and ports, and srv records (VSCODE-221, #227)
- Changed how we show connectivity errors with the connection form (VSCODE-196, #217)

### Fixed

- Fix opening documents with a binary `_id` from the explorer panel (VSCODE-118, #220)
- 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)
- Fixed code lenses for partial playground executions sometimes being missing (VSCODE-226, #243)

## [0.3.0] - 2020-11-24

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

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

0 comments on commit e8c533b

Please sign in to comment.