Skip to content

Commit e9ddc5c

Browse files
committed
Bump version numbers to 3.21.0
1 parent 168c5ef commit e9ddc5c

15 files changed

Lines changed: 64 additions & 14 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ python_variables: &python_variables
7070
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
7171
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
7272
CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0
73-
VERSION: 3.20.0
73+
VERSION: 3.21.0
7474
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
7575
python_formatting: &python_formatting
7676
parallelism: 1

CHANGES.md

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

3+
### 3.21.0 (2026-3-26)
4+
* Support for Python 3.14
5+
36
### 3.20.0 (2026-2-18)
47
* updates to `save-column-filter` endpoint to guard against code injection
58

dash-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dtale",
3-
"version": "3.20.0",
3+
"version": "3.21.0",
44
"description": "Visualizer for Pandas Data Structures",
55
"main": "index.js",
66
"repository": {

docker/2_7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

docker/3_10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

docker/3_11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

docker/3_14/Dockerfile

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
FROM node:24.4.0-alpine as node_build
2+
3+
RUN set -eux \
4+
; apk add git
5+
6+
COPY . /workspace
7+
8+
WORKDIR /workspace/frontend
9+
RUN set -eux \
10+
; yarn install --frozen-lockfile \
11+
; yarn list --depth=0 \
12+
; yarn run lint \
13+
; yarn run format \
14+
; git diff --name-status ./static \
15+
; git diff-files --quiet ./static || (echo 'The files above have not been formatted!' && (exit 1)) \
16+
; yarn run test \
17+
; ls -lah node_modules \
18+
; yarn run build
19+
20+
FROM continuumio/anaconda:latest as python_build
21+
22+
COPY --from=node_build /workspace /workspace
23+
24+
ENV PATH="/opt/conda/bin/:${PATH}"
25+
26+
WORKDIR /workspace
27+
RUN set -eux \
28+
; pip install six \
29+
; pip install lxml \
30+
; pip install black \
31+
; pip install -r docs/source/requirements.txt \
32+
; python setup.py develop \
33+
; python setup.py build_sphinx \
34+
; black --check setup.py dtale tests \
35+
; export TZ=America/New_York \
36+
; python setup.py test \
37+
; python setup.py bdist_egg
38+
39+
FROM continuumio/anaconda:latest
40+
41+
COPY --from=python_build /workspace/dist/*.egg /app/
42+
43+
WORKDIR /app
44+
45+
RUN set -eux \
46+
; . /root/.bashrc \
47+
; easy_install "dtale-${VERSION}-py3.14.egg"

docker/3_6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

docker/3_7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

docker/3_8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.16.0-alpine as node_build
1+
FROM node:24.4.0-alpine as node_build
22

33
RUN set -eux \
44
; apk add git

0 commit comments

Comments
 (0)