Skip to content

Releases: datalens-tech/datalens

v2.7.0 (2025-11-21)

21 Nov 16:22
8d0729e

Choose a tag to compare

Image versions

New features

Bug fixes

Read more

v2.6.1 (2025-09-26)

02 Oct 13:25
07690a4

Choose a tag to compare

Image versions

  • datalens-auth: 0.23.0 -> 0.24.0 (full changelog)
  • datalens-control-api: 0.2352.0
  • datalens-data-api: 0.2352.0
  • datalens-meta-manager: 0.47.0
  • datalens-ui: 0.3271.0
  • datalens-us: 0.396.0

Changes

  • Minor auth improvements

v2.6.0 (2025-09-23)

23 Sep 15:48
15a7002

Choose a tag to compare

Image versions

New features

Bug fixes

Dependencies

v2.5.0 (2025-08-22)

24 Aug 09:49
f2ba8ab

Choose a tag to compare

Image versions

New features

Bug fixes

Dependencies

Other

v2.4.2 (2025-07-10)

10 Jul 11:21
2aeca27

Choose a tag to compare

Image versions

  • datalens-auth: 0.21.0
  • datalens-control-api: 0.2282.0
  • datalens-data-api: 0.2282.0
  • datalens-meta-manager: 0.40.0
  • datalens-ui: 0.3038.0 -> 0.3049.0 (full changelog)
  • datalens-us: 0.358.0

Bug fixes

Dependencies

v2.4.1 (2025-07-09)

09 Jul 13:20
7d68162

Choose a tag to compare

Image versions

  • datalens-auth: 0.21.0
  • datalens-control-api: 0.2282.0
  • datalens-data-api: 0.2282.0
  • datalens-meta-manager: 0.40.0
  • datalens-ui: 0.3029.0 -> 0.3038.0 (full changelog)
  • datalens-us: 0.358.0

New features

Bug fixes

v2.4.0 (2025-07-07)

07 Jul 13:52
13181a1

Choose a tag to compare

Image versions

New features

Bug fixes

Dependencies

v2.3.0 (2025-06-20)

20 Jun 13:44
790f246

Choose a tag to compare

Image versions

New features

Bug fixes

Dependencies

v2.2.0 (2025-05-19)

27 May 11:32
456e285

Choose a tag to compare

Image versions

🆕 Workbook Import/Export

DataLens introduces a new workbook import/export functionality that enables users to seamlessly transfer workbooks between different DataLens instances. This feature is built on:

  • Meta-Manager: A dedicated service that handles long-running tasks within DataLens, currently focused on workbook imports and exports.
  • Temporal: A reliable workflow orchestration platform that ensures operations complete successfully even in the event of system failures.

This functionality can be disabled using the following args:

  • --disable-temporal - disables the Temporal service
  • --disable-workbook-export - disables the workbook export functionality

⚠️ Upgrade Guide

If you're using an external PostgreSQL cluster and upgrading to a version with meta-manager and temporal service, you'll need to create additional databases:

  • If you have root access to the PostgreSQL cluster

You can automatically create additional databases by running these commands:

docker compose run --rm --entrypoint /init/init-db-temporal.sh postgres
docker compose run --rm --entrypoint /init/init-db-meta-manager.sh postgres
  • If you don't have root access

You'll need to manually create the following databases:

POSTGRES_DB_META_MANAGER='pg-meta-manager-db'
POSTGRES_DB_TEMPORAL='pg-temporal-db'
POSTGRES_DB_TEMPORAL_VISIBILITY='pg-temporal-visibility-db'
  • If you're using the built-in PostgreSQL in the Docker Compose setup, no additional action is required.

New features

Bug fixes

Security

Dependencies

Chores

Build

v2.1.0 (2025-04-10)

10 Apr 15:03
1c999fc

Choose a tag to compare

Image versions

  • datalens-auth: 0.17.0
  • datalens-control-api: 0.2233.0
  • datalens-data-api: 0.2233.0
  • datalens-ui: 0.2760.0 -> 0.2789.0 (full changelog)
  • datalens-us: 0.332.0 -> 0.339.0 (full changelog)

New features

Bug fixes

Dependencies

CI