Skip to content

Commit d640d1b

Browse files
authored
Merge branch 'main' into astandrik.component-memory-consumption-1177
2 parents 37e2814 + 89798f0 commit d640d1b

File tree

13 files changed

+113
-42
lines changed

13 files changed

+113
-42
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
on:
22
push:
3-
branches: [main]
3+
branches:
4+
- main
5+
- hotfix/v[0-9]+.[0-9]+.[0-9]+ # match branches in format hotfix/v6.20.10
46

57
name: Release
68

@@ -15,7 +17,7 @@ jobs:
1517
node-version: 18
1618
- run: npm ci
1719
- run: npm test
18-
- uses: GoogleCloudPlatform/release-please-action@v3
20+
- uses: googleapis/release-please-action@v4
1921
with:
2022
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
21-
release-type: node
23+
target-branch: ${{ github.ref_name }}

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "6.33.0"
3+
}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## [6.33.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v6.32.0...v6.33.0) (2024-11-11)
4+
5+
6+
### Features
7+
8+
* **autocomplete:** suggest all columns in a row ([#1599](https://github.com/ydb-platform/ydb-embedded-ui/issues/1599)) ([b4d2b7f](https://github.com/ydb-platform/ydb-embedded-ui/commit/b4d2b7f45c35b7eaadf93faf602cca16776093eb))
9+
10+
11+
### Bug Fixes
12+
13+
* **Clusters:** controls and aggregations layout ([#1588](https://github.com/ydb-platform/ydb-embedded-ui/issues/1588)) ([ee61273](https://github.com/ydb-platform/ydb-embedded-ui/commit/ee61273c3b67a383a9c0ad8f7b783716cf53f750))
14+
* **Nodes:** remove redundant group by params ([#1598](https://github.com/ydb-platform/ydb-embedded-ui/issues/1598)) ([d3c5714](https://github.com/ydb-platform/ydb-embedded-ui/commit/d3c571446d5b37dc83e359254d7872c01eca3c31))
15+
16+
## [6.32.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v6.31.0...v6.32.0) (2024-11-08)
17+
18+
19+
### Features
20+
21+
* **Nodes:** add grouping ([#1584](https://github.com/ydb-platform/ydb-embedded-ui/issues/1584)) ([88ec214](https://github.com/ydb-platform/ydb-embedded-ui/commit/88ec214d3f89067a9c55243068c73a5d029a7068))
22+
23+
24+
### Bug Fixes
25+
26+
* **Header:** fix developer ui link for embedded UI with proxy ([#1580](https://github.com/ydb-platform/ydb-embedded-ui/issues/1580)) ([b229301](https://github.com/ydb-platform/ydb-embedded-ui/commit/b229301e167c8651550606ee5450f6d7f2409048))
27+
* if popover has actions increase delayClosing ([#1573](https://github.com/ydb-platform/ydb-embedded-ui/issues/1573)) ([7680e96](https://github.com/ydb-platform/ydb-embedded-ui/commit/7680e96681a9edf6b29589b73189ac72ef48f3d4))
28+
* **NodeEndpointsTooltipContent:** change fields order ([#1585](https://github.com/ydb-platform/ydb-embedded-ui/issues/1585)) ([949a518](https://github.com/ydb-platform/ydb-embedded-ui/commit/949a518a272e920e36f4c2a94c3b502d37d6e3a4))
29+
* query templates modification ([#1579](https://github.com/ydb-platform/ydb-embedded-ui/issues/1579)) ([697921a](https://github.com/ydb-platform/ydb-embedded-ui/commit/697921abe30e0b3415c0cd08519b8fecdfaaa03b))
30+
* refresh schema and autoresresh icons should be similar ([#1572](https://github.com/ydb-platform/ydb-embedded-ui/issues/1572)) ([03bc63d](https://github.com/ydb-platform/ydb-embedded-ui/commit/03bc63dc5d386591a4ef2e73c7051349b37c83ed))
31+
* use both BSC and Whiteboard for disks ([#1564](https://github.com/ydb-platform/ydb-embedded-ui/issues/1564)) ([da6dfcd](https://github.com/ydb-platform/ydb-embedded-ui/commit/da6dfcd856468ff89b031a2d6bbf710c7033ef5a))
32+
333
## [6.31.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v6.30.0...v6.31.0) (2024-11-02)
434

535

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ydb-embedded-ui",
3-
"version": "6.31.0",
3+
"version": "6.33.0",
44
"files": [
55
"dist"
66
],
@@ -23,7 +23,7 @@
2323
"@gravity-ui/react-data-table": "^2.1.1",
2424
"@gravity-ui/table": "^0.5.0",
2525
"@gravity-ui/uikit": "^6.33.0",
26-
"@gravity-ui/websql-autocomplete": "^9.1.0",
26+
"@gravity-ui/websql-autocomplete": "^12.1.2",
2727
"@hookform/resolvers": "^3.9.0",
2828
"@reduxjs/toolkit": "^2.2.3",
2929
"@tanstack/react-table": "^8.19.3",

release-please-config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"bootstrap-sha": "a3a39782af968677866b86dc590d4150d4af4211",
4+
"release-type": "node",
5+
"include-component-in-tag": false,
6+
"pull-request-title-pattern": "chore(${branch}): release ${version}",
7+
"packages": {
8+
".": {}
9+
}
10+
}

src/components/TooltipsContent/NodeEndpointsTooltipContent/NodeEndpointsTooltipContent.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
}
88
&__definition {
99
text-align: right;
10-
word-break: break-all;
10+
word-break: break-word;
1111
}
1212
}

src/containers/Clusters/Clusters.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88
@include mixins.body-2-typography();
99
@include mixins.flex-container();
10-
10+
&__autorefresh {
11+
margin-left: auto;
12+
}
1113
&__cluster {
1214
display: flex;
1315
align-items: center;
@@ -87,6 +89,7 @@
8789

8890
&__aggregation,
8991
&__controls {
92+
margin-right: 15px;
9093
margin-left: 15px;
9194
}
9295

@@ -108,7 +111,7 @@
108111
display: flex;
109112
align-items: center;
110113

111-
max-width: 200px;
114+
max-width: 230px;
112115

113116
font-size: var(--g-text-subheader-3-font-size);
114117
line-height: var(--g-text-subheader-3-line-height);

src/containers/Clusters/Clusters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export function Clusters() {
178178
sortable={false}
179179
/>
180180
</div>
181-
<AutoRefreshControl />
181+
<AutoRefreshControl className={b('autorefresh')} />
182182
</div>
183183
{query.isError ? <ResponseError error={query.error} className={b('error')} /> : null}
184184
{query.isLoading ? <Loader size="l" /> : null}

src/containers/Nodes/columns/constants.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ const ALL_NODES_GROUP_BY_PARAMS = [
2929
'Database',
3030
'Version',
3131
'Uptime',
32-
'Missing',
33-
'DiskSpaceUsage',
3432
] as const satisfies NodesGroupByField[];
3533

3634
function getAvailableNodesGroupByParams(withSystemStateGroupBy?: boolean) {

0 commit comments

Comments
 (0)