Skip to content

Commit

Permalink
studio 3.8.0 (#2307)
Browse files Browse the repository at this point in the history
* studio 3.8.0

* Update docs-2.0/20.appendix/release-notes/studio-release-note.md
  • Loading branch information
cooper-lzy authored Oct 20, 2023
1 parent 7bdb709 commit 5a0f316
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 38 deletions.
55 changes: 21 additions & 34 deletions docs-2.0/20.appendix/release-notes/studio-release-note.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
# NebulaGraph Studio release notes

<!--
## v3.8.0

- Features
- Supported the use of MySQL databases as backend storage.

- Enhancements
- Supported customizing the read and write parameters of the WebSocket.
- Usability
- Supported filtering tasks in the import task list based on the map space name.
- Compatibility
Since the database table structure has changed, you need to set `DB.AutoMigrate` to `true` in the configuration file, and the system will automatically upgrade and adapt the existing historical data.
- Since the database table structure has changed, you need to set `DB.AutoMigrate` to `true` in the configuration file, and the system will automatically upgrade and adapt the existing historical data.

If the tables were created manually after you consulted our after-sales staff, please modify these tables manually: `task_infos`, `task_effects`, `sketches`, `schema_snapshots`, `favorites`, `files`, and `datasources`.

For example:

If the tables were created manually after you consulted our after-sales staff, please modify these tables manually: `task_infos`, `task_effects`, `sketches`, `schema_snapshots`, `favorites`, `files`, and `datasources`.
For example:
```mysql
ALTER TABLE `task_infos` ADD COLUMN `b_id` CHAR(32) NOT NULL DEFAULT '';
UPDATE TABLE `task_infos` SET `b_id` = `id`;
CREATE UNIQUE INDEX `idx_task_infos_id` ON `task_infos`(`b_id`);

```mysql
ALTER TABLE `task_infos` ADD COLUMN `b_id` CHAR(32) NOT NULL DEFAULT '';
UPDATE TABLE `task_infos` SET `b_id` = `id`;
CREATE UNIQUE INDEX `idx_task_infos_id` ON `task_infos`(`b_id`);
ALTER TABLE `task_effects` ADD COLUMN `b_id` CHAR(32) NOT NULL DEFAULT '';
UPDATE TABLE `task_effects` SET `b_id` = `id`;
CREATE UNIQUE INDEX `idx_task_effects_id` ON `task_effects`(`b_id`);
...
```

ALTER TABLE `task_effects` ADD COLUMN `b_id` CHAR(32) NOT NULL DEFAULT '';
UPDATE TABLE `task_effects` SET `b_id` = `id`;
CREATE UNIQUE INDEX `idx_task_effects_id` ON `task_effects`(`b_id`);
...
```
-->

## v3.7.0

Expand All @@ -32,22 +38,3 @@
- Supported saving tasks as drafts.
- Supported ARM architecture.

## v3.6.0

- Feature
- Support viewing the [creation statements](../../nebula-studio/manage-schema/st-ug-view-schema.md) of the schema.
- Add a product feedback page.

- Enhancement
- Remove the timeout limit for slow queries.
- Display browser compatibility hints.
- Optimize the login page.
- Support adding comments with `#` on the console page.
- Optimize the console page.

- Bugfix

- Fix the bug that the list has not been refreshed after uploading files.
- Fix the invalid error message of the schema drafting.
- Fix the bug that the **view schema** data has not been cleared after switching the login user.
- Fix the presentation problem of the thumbnail in the schema drafting.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ When NebulaGraph enables authentication, users can only sign into Studio with th

| NebulaGraph version | Studio version |
| --- | --- |
| 3.6.0 | 3.7.0 |
| 3.6.0 | 3.8.0, 3.7.0 |
| 3.5.0 | 3.7.0 |
| 3.4.0 ~ 3.4.1| 3.7.0、3.6.0、3.5.1、3.5.0 |
| 3.3.0 | 3.5.1、3.5.0 |
Expand Down
2 changes: 1 addition & 1 deletion docs-2.0/nebula-studio/quick-start/st-ug-import-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Click **New Data Source** in the upper right corner of the page to set the data

2. After completing the settings, click **Import**, enter the password for the NebulaGraph account, and confirm.

After the import task is created, you can view the progress of the import task in the **Import Data** tab, which supports operations such as editing the task, viewing logs, downloading logs, reimporting, downloading configuration files, and deleting tasks.
After the import task is created, you can view the progress of the import task in the **Import Data** tab, which supports operations such as filtering tasks based on graph space, editing the task, viewing logs, downloading logs, reimporting, downloading configuration files, and deleting tasks.

## Next

Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ extra:
base111b: 1.1.1-beta
base220: 2.2.1
base300: 3.0.0
release: 3.7.0
tag: v3.7.0
release: 3.8.0
tag: v3.8.0
explorer:
release: 3.5.1
branch: release-3.5
Expand Down

0 comments on commit 5a0f316

Please sign in to comment.