Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update images versions #62

Merged
merged 5 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ metadata
pg-demo-connection/data
certs
.DS_Store
.idea
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog

## 2023-12-21

### Updated images
- datalens-control-api: 0.2038.1 -> 0.2040.0
- datalens-data-api: 0.2038.1 -> 0.2040.0
- datalens-us: 0.116.0 -> 0.132.0
- datalens-ui: 0.955.0 -> 0.1113.0

### Changed

- Updated system dependencies to fix vulnerabilities
- datalens-ui and datalens-us containers switched to rootless mode
- Fix table markup sorting
- Fix colors and shapes by field with prefix/postfix in title
- Fix ColorMode behaviour for bar charts
- New datepicker with relative dates for parameters in QL
- Add beta relations on dashboards
- Improve create dash entry without filling name first
- Collections & workbooks sorting fix
- Improve mobile dashboard page, added TOC & improve header mobile view


## 2023-11-24

### Updated images
- datalens-control-api: 0.2038.0 -> 0.2038.1
- datalens-data-api: 0.2038.0 -> 0.2038.1
- datalens-us: 0.110.0 -> 0.116.0

### Changed

- Add demo wokbook with local PostgreSQL database

## 2023-11-15

### Updated images
- datalens-control-api: 0.2037.0 -> 0.2038.0
- datalens-data-api: 0.2037.0 -> 0.2038.0
- datalens-us: 0.96.0 -> 0.110.0
- datalens-ui: 0.795.0 -> 0.966.0

### Changed
- UI improvements for dashboard editings
- Fixed gradient color settings on pie and pie charts
- UI improvements for workbooks (buttons grouping)
- QL charts: implemented a '+' button to add fields
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:

control-api:
container_name: datalens-control-api
image: ghcr.io/datalens-tech/datalens-control-api:0.2038.1
image: ghcr.io/datalens-tech/datalens-control-api:0.2040.0
environment:
BI_API_UWSGI_WORKERS_COUNT: 4
CONNECTOR_AVAILABILITY_VISIBLE: "clickhouse,postgres,chyt"
Expand All @@ -31,7 +31,7 @@ services:

data-api:
container_name: datalens-data-api
image: ghcr.io/datalens-tech/datalens-data-api:0.2038.1
image: ghcr.io/datalens-tech/datalens-data-api:0.2040.0
environment:
GUNICORN_WORKERS_COUNT: 5
RQE_FORCE_OFF: 1
Expand Down Expand Up @@ -76,7 +76,7 @@ services:

us:
container_name: datalens-us
image: ghcr.io/datalens-tech/datalens-us:0.116.0
image: ghcr.io/datalens-tech/datalens-us:0.132.0
depends_on:
- pg-us
environment:
Expand All @@ -97,7 +97,7 @@ services:

datalens:
container_name: datalens-ui
image: ghcr.io/datalens-tech/datalens-ui:0.955.0
image: ghcr.io/datalens-tech/datalens-ui:0.1113.0
ports:
- 8080:80
depends_on:
Expand Down