-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add streaming support based on Mongo Change streams (#31)
* Add a POC mongo data stream * Create docker-compose.test.yaml for CI * Add stream conversion to table and ts types * Add timestamp support * Add Stream type * UI update * UI improvement * Use Base64URLEncoded query text and collection in streaming path * Update README * Fix lint * Fix lint * Add `Timestamps` to supported types * Update changelog * Update version to 0.3.0 * [skip ci] Add quick start guide
- Loading branch information
1 parent
ff3daa1
commit cbacd6b
Showing
19 changed files
with
801 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,56 @@ | ||
# Changelog | ||
|
||
## 0.3.0 - 2025-01-11 | ||
|
||
### Added | ||
|
||
- Added Live Streaming support based on [Mongo Change Streams](https://www.mongodb.com/docs/manual/changeStreams/)(https://github.com/haohanyang/mongodb-datasource/pull/31) | ||
|
||
### Changed | ||
|
||
- Removed "Query" button. Built-in Query/Refresh button is recommended instead(https://github.com/haohanyang/mongodb-datasource/pull/31) | ||
|
||
## 0.2.1 - 2024-12-14 | ||
|
||
### Added | ||
* Optional Mongo aggregate options(https://github.com/haohanyang/mongodb-datasource/pull/33) | ||
* Query Button(https://github.com/haohanyang/mongodb-datasource/pull/35) | ||
|
||
- Optional Mongo aggregate options(https://github.com/haohanyang/mongodb-datasource/pull/33) | ||
- Query Button(https://github.com/haohanyang/mongodb-datasource/pull/35) | ||
|
||
### Changed | ||
* Query won't be executed automatically after focus changes. User needs to manually click buttons(https://github.com/haohanyang/mongodb-datasource/pull/35) | ||
* UI improvement(https://github.com/haohanyang/mongodb-datasource/pull/33) | ||
|
||
- Query won't be executed automatically after focus changes. User needs to manually click buttons(https://github.com/haohanyang/mongodb-datasource/pull/35) | ||
- UI improvement(https://github.com/haohanyang/mongodb-datasource/pull/33) | ||
|
||
## 0.2.0 - 2024-12-06 | ||
|
||
### Added | ||
* Enabled Grafana Alerting([67358d5c](https://github.com/haohanyang/mongodb-datasource/commit/67358d5cb1ada5571697de21016f2acf5dbc1234)) | ||
|
||
- Enabled Grafana Alerting([67358d5c](https://github.com/haohanyang/mongodb-datasource/commit/67358d5cb1ada5571697de21016f2acf5dbc1234)) | ||
|
||
### Changed | ||
* Improved query variable([#28](https://github.com/haohanyang/mongodb-datasource/pull/28)) | ||
|
||
- Improved query variable([#28](https://github.com/haohanyang/mongodb-datasource/pull/28)) | ||
|
||
## 0.1.2 - 2024-11-10 | ||
|
||
### Changed | ||
* Increased code editor's font size([84c7de5d](https://github.com/haohanyang/mongodb-datasource/commit/84c7de5df5035bd4c3214908eb6a389b53732cde)) | ||
* Make `_id` the first column in the table if exists([#26](https://github.com/haohanyang/mongodb-datasource/pull/26)) | ||
* Fix BSON array conversion to JSON([#25](https://github.com/haohanyang/mongodb-datasource/pull/25)) | ||
|
||
- Increased code editor's font size([84c7de5d](https://github.com/haohanyang/mongodb-datasource/commit/84c7de5df5035bd4c3214908eb6a389b53732cde)) | ||
- Make `_id` the first column in the table if exists([#26](https://github.com/haohanyang/mongodb-datasource/pull/26)) | ||
- Fix BSON array conversion to JSON([#25](https://github.com/haohanyang/mongodb-datasource/pull/25)) | ||
|
||
## 0.1.1 - 2024-10-25 | ||
### Added | ||
|
||
### Added | ||
|
||
- [Query Variable](https://grafana.com/docs/grafana/latest/dashboards/variables/add-template-variables/#add-a-query-variable) support | ||
- A quick start script `quick_start.py` to quickly start Grafana and MongoDB containers | ||
|
||
### Changed | ||
* Added "(Optinal)" to connection string configuration tooltip | ||
|
||
- Added "(Optinal)" to connection string configuration tooltip | ||
|
||
## 0.1.0 - 2024-10-13 | ||
|
||
Initial release. |
Oops, something went wrong.