Skip to content

Commit 790f246

Browse files
robot-chartsweb-flowMarginy605goshander
authored
Release DataLens v2.3.0 (#329)
* DataLens release v2.3.0 * update docker-compose.base.yaml and helm/values.yaml * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * fix connectors * fix helm chart version --------- Co-authored-by: GitHub Release <> Co-authored-by: GitHub Actions <noreply@github.com> Co-authored-by: Elena Martynova <marginy@yandex-team.ru> Co-authored-by: Georgy Malkov <malkovgv@yandex-team.ru>
1 parent 426dc35 commit 790f246

File tree

8 files changed

+52
-29
lines changed

8 files changed

+52
-29
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v2.3.0 (2025-06-09)
2+
3+
### Image versions
4+
- datalens-auth: 0.20.0
5+
- datalens-control-api: 0.2273.1 -> 0.2282.0 ([full changelog](https://github.com/datalens-tech/datalens-backend/compare/v0.2273.1...v0.2282.0))
6+
- datalens-data-api: 0.2273.1 -> 0.2282.0 ([full changelog](https://github.com/datalens-tech/datalens-backend/compare/v0.2273.1...v0.2282.0))
7+
- datalens-meta-manager: 0.32.0 -> 0.35.0 ([full changelog](https://github.com/datalens-tech/datalens-meta-manager/compare/v0.32.0...v0.35.0))
8+
- datalens-ui: 0.2933.0 -> 0.2983.0 ([full changelog](https://github.com/datalens-tech/datalens-ui/compare/v0.2933.0...v0.2983.0))
9+
- datalens-us: 0.350.0 -> 0.352.0 ([full changelog](https://github.com/datalens-tech/datalens-us/compare/v0.350.0...v0.352.0))
10+
11+
### New features
12+
- **Connectors**: Add Oracle connector. [datalens-tech/datalens-backend#1076](https://github.com/datalens-tech/datalens-backend/pull/1076)
13+
- **Connectors**: Add Trino connector. [datalens-tech/datalens-backend#1075](https://github.com/datalens-tech/datalens-backend/pull/1075)
14+
- **Import/Export workbooks**: Add ShowDetails button for export workbooks. [datalens-tech/datalens-ui#2506](https://github.com/datalens-tech/datalens-ui/pull/2506)
15+
- **Import/Export workbooks**: Add new notifications for export/import. [datalens-tech/datalens-ui#2527](https://github.com/datalens-tech/datalens-ui/pull/2527)
16+
- **Import/Export workbooks**: Add retry button for fatal errors in export workbooks. [datalens-tech/datalens-ui#2562](https://github.com/datalens-tech/datalens-ui/pull/2562)
17+
- **Charts**: Add wrap settings on table cells in charts. [datalens-tech/datalens-ui#2569](https://github.com/datalens-tech/datalens-ui/pull/2569)
18+
19+
### Bug fixes
20+
- **General components**: Fix status in entries resolve of export workbook. [datalens-tech/datalens-ui#2539](https://github.com/datalens-tech/datalens-ui/pull/2539)
21+
- **Import/Export workbooks**: Fix disabled "Open workbook" button in case of click on importing workbook row. [datalens-tech/datalens-ui#2577](https://github.com/datalens-tech/datalens-ui/pull/2577)
22+
- **Import/Export workbooks**: Fix show details button for export. [datalens-tech/datalens-ui#2535](https://github.com/datalens-tech/datalens-ui/pull/2535)
23+
24+
### Dependencies
25+
- **General components**: Up @datalens-tech/ui-sandbox-modules 0.35.0 -> 0.36.0. [datalens-tech/datalens-ui#2560](https://github.com/datalens-tech/datalens-ui/pull/2560)
26+
27+
128
## v2.2.0 (2025-05-23)
229

330
### Image versions

docker-compose.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ services:
7373
#
7474
control-api:
7575
container_name: datalens-control-api
76-
image: ghcr.io/datalens-tech/datalens-control-api:0.2273.1
76+
image: ghcr.io/datalens-tech/datalens-control-api:0.2282.0
7777
environment:
7878
BI_API_UWSGI_WORKERS_COUNT: 4
7979
RQE_FORCE_OFF: 1
@@ -86,7 +86,7 @@ services:
8686
#
8787
US_MASTER_TOKEN: ${US_MASTER_TOKEN:-us-master-token}
8888
#
89-
CONNECTOR_AVAILABILITY_VISIBLE: clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,appmetrica_api,metrika_api
89+
CONNECTOR_AVAILABILITY_VISIBLE: clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,oracle,trino,appmetrica_api,metrika_api
9090
#
9191
AUTH__TYPE: ${AUTH_TYPE:-NATIVE}
9292
AUTH__JWT_ALGORITHM: 'PS256'
@@ -97,7 +97,7 @@ services:
9797
#
9898
data-api:
9999
container_name: datalens-data-api
100-
image: ghcr.io/datalens-tech/datalens-data-api:0.2273.1
100+
image: ghcr.io/datalens-tech/datalens-data-api:0.2282.0
101101
environment:
102102
GUNICORN_WORKERS_COUNT: 5
103103
RQE_FORCE_OFF: 1
@@ -127,7 +127,7 @@ services:
127127
#
128128
us:
129129
container_name: datalens-us
130-
image: ghcr.io/datalens-tech/datalens-us:0.350.0
130+
image: ghcr.io/datalens-tech/datalens-us:0.352.0
131131
environment:
132132
APP_INSTALLATION: opensource
133133
APP_ENV: prod
@@ -157,7 +157,7 @@ services:
157157
#
158158
ui-api:
159159
container_name: datalens-ui-api
160-
image: ghcr.io/datalens-tech/datalens-ui:0.2933.0
160+
image: ghcr.io/datalens-tech/datalens-ui:0.2983.0
161161
environment:
162162
APP_MODE: api
163163
APP_ENV: production
@@ -173,7 +173,7 @@ services:
173173
#
174174
meta-manager:
175175
container_name: datalens-meta-manager
176-
image: ghcr.io/datalens-tech/datalens-meta-manager:0.32.0
176+
image: ghcr.io/datalens-tech/datalens-meta-manager:0.35.0
177177
environment:
178178
APP_INSTALLATION: opensource
179179
APP_ENV: prod
@@ -231,7 +231,7 @@ services:
231231
#
232232
ui:
233233
container_name: datalens-ui
234-
image: ghcr.io/datalens-tech/datalens-ui:0.2933.0
234+
image: ghcr.io/datalens-tech/datalens-ui:0.2983.0
235235
environment:
236236
APP_MODE: full
237237
APP_ENV: production
@@ -247,7 +247,7 @@ services:
247247
#
248248
US_MASTER_TOKEN: ${US_MASTER_TOKEN:-us-master-token}
249249
#
250-
RELEASE_VERSION: '2.2.0'
250+
RELEASE_VERSION: '2.3.0'
251251
#
252252
HC: ${HC:-0}
253253
HC_ENDPOINT: ${HC_ENDPOINT:-}

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
# release version
3-
appVersion: 2.2.0
3+
appVersion: 2.3.0
44
name: datalens
55
description: DataLens Helm chart for Kubernetes
66
type: application

helm/templates/deployment-control-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- name: BI_API_UWSGI_WORKERS_COUNT
2525
value: '4'
2626
- name: CONNECTOR_AVAILABILITY_VISIBLE
27-
value: clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,appmetrica_api,metrika_api
27+
value: clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,oracle,trino,appmetrica_api,metrika_api
2828
- name: RQE_FORCE_OFF
2929
value: '1'
3030
- name: DL_CRY_ACTUAL_KEY_ID

helm/values.yaml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
registry:
22
url: 'ghcr.io/datalens-tech'
33
#
4-
release_version: '2.2.0'
4+
release_version: '2.3.0'
55
#
66
ingress:
77
ip: null
@@ -39,7 +39,7 @@ infra:
3939
application:
4040
control_api:
4141
replicas: 1
42-
version: '0.2273.1'
42+
version: '0.2282.0'
4343
resources:
4444
requests:
4545
cpu: 0.5
@@ -48,7 +48,7 @@ application:
4848
memory: 1024Mi
4949
data_api:
5050
replicas: 1
51-
version: '0.2273.1'
51+
version: '0.2282.0'
5252
resources:
5353
requests:
5454
cpu: 1
@@ -57,7 +57,7 @@ application:
5757
memory: 1024Mi
5858
ui:
5959
replicas: 1
60-
version: '0.2933.0'
60+
version: '0.2983.0'
6161
resources:
6262
requests:
6363
cpu: 0.25
@@ -66,7 +66,7 @@ application:
6666
memory: 512Mi
6767
ui_api:
6868
replicas: 1
69-
version: '0.2933.0'
69+
version: '0.2983.0'
7070
resources:
7171
requests:
7272
cpu: 0.25
@@ -75,7 +75,7 @@ application:
7575
memory: 512Mi
7676
us:
7777
replicas: 1
78-
version: '0.350.0'
78+
version: '0.352.0'
7979
resources:
8080
requests:
8181
cpu: 0.5
@@ -93,17 +93,13 @@ application:
9393
memory: 512Mi
9494
meta_manager:
9595
replicas: 1
96-
version: '0.32.0'
96+
version: '0.35.0'
9797
resources:
9898
requests:
9999
cpu: 0.5
100100
memory: 256Mi
101101
limits:
102102
memory: 512Mi
103-
ui-api:
104-
version: 0.2933.0
105-
meta-manager:
106-
version: 0.32.0
107103
#
108104
secrets:
109105
ref: null

scripts/update-versions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ RELEASE_VERSION="${RELEASE_VERSION}" \
3636
.application.control_api.version = strenv(BACKEND_VERSION) |
3737
.application.data_api.version = strenv(BACKEND_VERSION) |
3838
.application.ui.version = strenv(UI_VERSION) |
39-
.application.ui-api.version = strenv(UI_VERSION) |
39+
.application.ui_api.version = strenv(UI_VERSION) |
4040
.application.us.version = strenv(US_VERSION) |
4141
.application.auth.version = strenv(AUTH_VERSION) |
42-
.application.meta-manager.version = strenv(META_MANAGER_VERSION) |
42+
.application.meta_manager.version = strenv(META_MANAGER_VERSION) |
4343
.release_version = strenv(RELEASE_VERSION)
4444
' ./helm/values.yaml
4545

terraform/k8s-app-control-api.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resource "kubernetes_deployment" "control-api" {
5959
}
6060
env {
6161
name = "CONNECTOR_AVAILABILITY_VISIBLE"
62-
value = "clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,appmetrica_api,metrika_api"
62+
value = "clickhouse,postgres,chyt,ydb,mysql,greenplum,mssql,oracle,trino,appmetrica_api,metrika_api"
6363
}
6464
env {
6565
name = "RQE_FORCE_OFF"

versions-config.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"authVersion": "0.20.0",
3-
"backendVersion": "0.2273.1",
4-
"metaManagerVersion": "0.32.0",
5-
"releaseVersion": "2.2.0",
6-
"uiVersion": "0.2933.0",
7-
"usVersion": "0.350.0"
3+
"backendVersion": "0.2282.0",
4+
"metaManagerVersion": "0.35.0",
5+
"releaseVersion": "2.3.0",
6+
"uiVersion": "0.2983.0",
7+
"usVersion": "0.352.0"
88
}

0 commit comments

Comments
 (0)