Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/mongodb-js/oidc-mock…
Browse files Browse the repository at this point in the history
…-provider-0.6.10
  • Loading branch information
mcasimir authored Jan 29, 2024
2 parents 95a1bcd + b03533f commit df1ffbd
Show file tree
Hide file tree
Showing 18 changed files with 712 additions and 1,445 deletions.
5 changes: 0 additions & 5 deletions .depcheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ ignores:
- "vscode"
- "webpack-cli"
- "@mongodb-js/oidc-plugin"
- css-loader
- less
- less-loader
- node-loader
- postcss-loader
- style-loader
- ts-loader
- mongodb-runner
17 changes: 7 additions & 10 deletions .github/workflows/actions/test-and-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,7 @@ runs:
if: ${{ runner.os != 'Windows' }}
shell: bash

- name: Set BROWSER_AUTH_COMMAND
run: |
BROWSER_AUTH_COMMAND=$(echo "$(which node) $(pwd)/src/test/fixture/curl.js")
echo "BROWSER_AUTH_COMMAND=$BROWSER_AUTH_COMMAND" >> $GITHUB_ENV
shell: bash

- name: Run Tests
env:
BROWSER_AUTH_COMMAND: ${{ env.BROWSER_AUTH_COMMAND }}
run: |
npm run test
shell: bash
Expand All @@ -97,13 +89,18 @@ runs:
- name: Sign .vsix
if: runner.os == 'Linux'
env:
ARTIFACTORY_HOST: ${{ inputs.ARTIFACTORY_HOST }}
ARTIFACTORY_PASSWORD: ${{ inputs.ARTIFACTORY_PASSWORD }}
ARTIFACTORY_USERNAME: ${{ inputs.ARTIFACTORY_USERNAME }}
GARASIGN_PASSWORD: ${{ inputs.GARASIGN_PASSWORD }}
GARASIGN_USERNAME: ${{ inputs.GARASIGN_USERNAME }}
run: |
bash scripts/sign-vsix.sh
set -e
FILE_TO_SIGN=$(find . -maxdepth 1 -name '*.vsix' -print -quit)
if [ -z "$FILE_TO_SIGN" ]; then
echo "Error: No .vsix file found in the current directory." >&2
exit 1
fi
node scripts/sign-vsix.js "${FILE_TO_SIGN}"
ls *.vsix.sig
shell: bash

Expand Down
37 changes: 19 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [v1.5.0](https://github.com/mongodb-js/vscode/releases/tag/v1.5.0) - 2024-01-24

## What's Changed
* VSCODE-505: stream support in UI by @shaketbaby in https://github.com/mongodb-js/vscode/pull/643
* feat(webview): use new connection form, remove old form VSCODE-491 by @Anemy in https://github.com/mongodb-js/vscode/pull/636
* fix: add explicit ordering for stream processor context menu actions by @pulkitkalra-mdb in https://github.com/mongodb-js/vscode/pull/654
* chore: close connection string input when opening form VSCODE-507 by @Anemy in https://github.com/mongodb-js/vscode/pull/656
* fix: ensure extension output populates ObjectIds in stream by @pulkitkalra-mdb in https://github.com/mongodb-js/vscode/pull/657
* feat(connect-form): add OIDC device auth flow with preference VSCODE-503 by @Anemy in https://github.com/mongodb-js/vscode/pull/658
* feat(connections): add edit connection context menu action VSCODE-406 by @Anemy in https://github.com/mongodb-js/vscode/pull/655
* chore(deps): update mongodb and devtools dependencies by @Anemy in https://github.com/mongodb-js/vscode/pull/662
* chore: cancel connection attempt when removing connection, update assert to expect in webview and connection controller tests by @Anemy in https://github.com/mongodb-js/vscode/pull/667

## New Contributors
* @pulkitkalra-mdb made their first contribution in https://github.com/mongodb-js/vscode/pull/654

**Full Changelog**: https://github.com/mongodb-js/vscode/compare/v1.4.0...v1.5.0


## [v1.4.0](https://github.com/mongodb-js/vscode/releases/tag/v1.4.0) - 2024-01-09

## What's Changed
Expand Down Expand Up @@ -431,21 +450,3 @@ To dig deeper please feel free to follow the links mentioned below:
- Fixed an issue with the tree explorer freezing when double clicking an open schema


## [v0.0.4](https://github.com/mongodb-js/vscode/releases/tag/v0.0.4) - 2020-06-17

### Added

- Added `Launch MongoDB Shell` right click action for the active connection in the tree view

### Fixed

- Fixed an issue with connecting to ssl with the launch shell command
- Fixed an issue with the launch shell command on windows
- Fixed playgrounds not being able to run in WSL environments
- Updated our connection model dependency to pull in a fix for connection strings with `readPreferenceTags`

### Changed

- Connections in the tree view are now alphabetically sorted


2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Select queries and aggregations within your Playground files and translate them
* Python 3
* Ruby
* Go
* Rust
* PHP

![Export to language](resources/screenshots/export-to-language.gif)

Expand Down
Loading

0 comments on commit df1ffbd

Please sign in to comment.