Skip to content

Commit 5338e5a

Browse files
authored
0.3.0
(#214)
1 parent 26f7eb7 commit 5338e5a

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,34 @@ 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.3.0] - 2020-11-24
8+
9+
### Added
10+
11+
- Added a resources panel to the overview page (VSCODE-168, #208)
12+
- Added a button to change currently connected connection name in overview page (VSCODE-189, #191)
13+
14+
### Changed
15+
16+
- Moved playground output to the editor, logs remain in the output section (VSCODE-177, #198)
17+
- Playground results are now displayed in EJSON or text (VSCODE-203, #206)
18+
- Connect commands route to overview page instead of directly to connection form (VSCODE-170, #210)
19+
- Connection form shows in modal in overview page (VSCODE-173, #190)
20+
- Index creation template now uses `createIndex` instead of `ensureIndex` (#205)
21+
22+
### Removed
23+
24+
- Removed custom font in overview page (#192)
25+
- Removed sql pipeline stage operator (#211)
26+
27+
### Fixed
28+
29+
- Fix x509 username being required in connection string building and parsing (VSCODE-202, #203)
30+
- Fix viewing documents Binary UUID _ids (VSCODE-118, #213)
31+
- Fix opening mongodb shell on windows with git bash (VSCODE-200, #201)
32+
- Fix opening mongodb shell on windows with an ssl file with a space in it (#201)
33+
- Fix password encoding of connection strings when copying connection string and opening in mongodb shell (VSCODE-198, #207)
34+
735
## [0.2.1] - 2020-10-20
836

937
### 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.2.2-dev.0",
6+
"version": "0.3.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
@@ -511,7 +511,7 @@ suite('Connection Controller Test Suite', function () {
511511

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

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

0 commit comments

Comments
 (0)