Skip to content

Commit 2628bf4

Browse files
committed
Prepare for 1.32.5
1 parent d9118c0 commit 2628bf4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+174
-160
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tool gives you the powers of a developer without leaving your browser.
1717
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/bram2w/baserow/tree/master)
1818

1919
```bash
20-
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.4
20+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.5
2121
```
2222

2323
![Baserow screenshot](docs/assets/screenshot.png "Baserow screenshot")
@@ -89,7 +89,7 @@ Created by Baserow B.V. - [email protected].
8989

9090
Distributes under the MIT license. See `LICENSE` for more information.
9191

92-
Version: 1.32.4
92+
Version: 1.32.5
9393

9494
The official repository can be found at https://gitlab.com/baserow/baserow.
9595

backend/docker/docker-entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
# ENVIRONMENT VARIABLES USED DIRECTLY BY THIS ENTRYPOINT
77
# ======================================================
88

9-
export BASEROW_VERSION="1.32.4"
9+
export BASEROW_VERSION="1.32.5"
1010

1111
# Used by docker-entrypoint.sh to start the dev server
1212
# If not configured you'll receive this: CommandError: "0.0.0.0:" is not a valid port number or address:port pair.

backend/src/baserow/config/settings/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@
417417
"name": "MIT",
418418
"url": "https://gitlab.com/baserow/baserow/-/blob/master/LICENSE",
419419
},
420-
"VERSION": "1.32.4",
420+
"VERSION": "1.32.5",
421421
"SERVE_INCLUDE_SCHEMA": False,
422422
"TAGS": [
423423
{"name": "Settings"},

backend/src/baserow/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.32.4"
1+
VERSION = "1.32.5"

changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## Released 1.32.5
4+
5+
### Bug fixes
6+
* [Core] Clear local_cache for celery tasks [#3528](https://gitlab.com/baserow/baserow/-/issues/3528)
7+
* [Database] Fix broken continue button and validation of the onboarding import step.
8+
9+
### Breaking API changes
10+
* [Database] Updated Langchain, Gunicorn, and Django backend dependencies.
11+
12+
313
## Released 1.32.4
414

515
### New features

changelog/releases.json

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"releases": [
3+
{
4+
"name": "1.32.5",
5+
"created_at": "2025-03-26"
6+
},
37
{
48
"name": "1.32.4",
59
"created_at": "2025-03-25"

deploy/all-in-one/README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tool gives you the powers of a developer without leaving your browser.
1515
[Vue.js](https://vuejs.org/) and [PostgreSQL](https://www.postgresql.org/).
1616

1717
```bash
18-
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.4
18+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.5
1919
```
2020

2121
## Quick Reference
@@ -52,7 +52,7 @@ docker run \
5252
-p 80:80 \
5353
-p 443:443 \
5454
--restart unless-stopped \
55-
baserow/baserow:1.32.4
55+
baserow/baserow:1.32.5
5656
```
5757

5858
* Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable
@@ -75,7 +75,7 @@ docker run \
7575
7676
## Image Feature Overview
7777

78-
The `baserow/baserow:1.32.4` image by default runs all of Baserow's various services in
78+
The `baserow/baserow:1.32.5` image by default runs all of Baserow's various services in
7979
a single container for maximum ease of use.
8080

8181
> This image is designed for simple single server deployments or simple container
@@ -223,7 +223,7 @@ docker run \
223223
-p 80:80 \
224224
-p 443:443 \
225225
--restart unless-stopped \
226-
baserow/baserow:1.32.4
226+
baserow/baserow:1.32.5
227227
```
228228

229229
### Behind a reverse proxy already handling ssl
@@ -236,7 +236,7 @@ docker run \
236236
-v baserow_data:/baserow/data \
237237
-p 80:80 \
238238
--restart unless-stopped \
239-
baserow/baserow:1.32.4
239+
baserow/baserow:1.32.5
240240
```
241241

242242
### On a nonstandard HTTP port
@@ -249,7 +249,7 @@ docker run \
249249
-v baserow_data:/baserow/data \
250250
-p 3001:80 \
251251
--restart unless-stopped \
252-
baserow/baserow:1.32.4
252+
baserow/baserow:1.32.5
253253
```
254254

255255
### With an external PostgresSQL server
@@ -268,7 +268,7 @@ docker run \
268268
-p 80:80 \
269269
-p 443:443 \
270270
--restart unless-stopped \
271-
baserow/baserow:1.32.4
271+
baserow/baserow:1.32.5
272272
```
273273

274274
### With an external Redis server
@@ -287,7 +287,7 @@ docker run \
287287
-p 80:80 \
288288
-p 443:443 \
289289
--restart unless-stopped \
290-
baserow/baserow:1.32.4
290+
baserow/baserow:1.32.5
291291
```
292292

293293
### With an external email server
@@ -307,7 +307,7 @@ docker run \
307307
-p 80:80 \
308308
-p 443:443 \
309309
--restart unless-stopped \
310-
baserow/baserow:1.32.4
310+
baserow/baserow:1.32.5
311311
```
312312

313313
### With a Postgresql server running on the same host as the Baserow docker container
@@ -345,7 +345,7 @@ docker run \
345345
-v baserow_data:/baserow/data \
346346
-p 80:80 \
347347
-p 443:443 \
348-
baserow/baserow:1.32.4
348+
baserow/baserow:1.32.5
349349
```
350350

351351
### Supply secrets using files
@@ -372,7 +372,7 @@ docker run \
372372
-v baserow_data:/baserow/data \
373373
-p 80:80 \
374374
-p 443:443 \
375-
baserow/baserow:1.32.4
375+
baserow/baserow:1.32.5
376376
```
377377

378378
### Start just the embedded database
@@ -385,7 +385,7 @@ docker run -it \
385385
--name baserow \
386386
-p 5432:5432 \
387387
-v baserow_data:/baserow/data \
388-
baserow/baserow:1.32.4 \
388+
baserow/baserow:1.32.5 \
389389
start-only-db
390390
# Now get the password from
391391
docker exec -it baserow cat /baserow/data/.pgpass
@@ -417,7 +417,7 @@ docker run -it \
417417
--rm \
418418
--name baserow \
419419
-v baserow_data:/baserow/data \
420-
baserow/baserow:1.32.4 \
420+
baserow/baserow:1.32.5 \
421421
backend-cmd-with-db manage dbshell
422422
```
423423

@@ -540,19 +540,19 @@ the command below.
540540

541541
```bash
542542
# First read the help message for this command
543-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.4 \
543+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.5 \
544544
backend-cmd-with-db backup --help
545545

546546
# Stop Baserow instance
547547
docker stop baserow
548548

549549
# The command below backs up Baserow to the backups folder in the baserow_data volume:
550-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.4 \
550+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.5 \
551551
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
552552

553553
# Or backup to a file on your host instead run something like:
554554
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
555-
baserow/baserow:1.32.4 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
555+
baserow/baserow:1.32.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
556556
```
557557

558558
### Restore only Baserow's Postgres Database
@@ -568,13 +568,13 @@ docker stop baserow
568568
docker run -it --rm \
569569
-v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
570570
-v new_baserow_data_volume_to_restore_into:/baserow/data \
571-
baserow/baserow:1.32.4 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
571+
baserow/baserow:1.32.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
572572

573573
# Or to restore from a file on your host instead run something like:
574574
docker run -it --rm \
575575
-v baserow_data:/baserow/data -v \
576576
$(pwd):/baserow/host \
577-
baserow/baserow:1.32.4 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
577+
baserow/baserow:1.32.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
578578
```
579579

580580
## Running healthchecks on Baserow
@@ -625,7 +625,7 @@ docker run \
625625
-p 80:80 \
626626
-p 443:443 \
627627
--restart unless-stopped \
628-
baserow/baserow:1.32.4
628+
baserow/baserow:1.32.5
629629
```
630630

631631
Or you can just store it directly in the volume at `baserow_data/env` meaning it will be
@@ -634,7 +634,7 @@ loaded whenever you mount in this data volume.
634634
### Building your own image from Baserow
635635

636636
```dockerfile
637-
FROM baserow/baserow:1.32.4
637+
FROM baserow/baserow:1.32.5
638638

639639
# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
640640
# useful for storing your own environment variable overrides.

deploy/all-in-one/supervisor/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cat << EOF
1414
██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝
1515
╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝
1616
17-
Version 1.32.4
17+
Version 1.32.5
1818
1919
=========================================================================================
2020
EOF

deploy/cloudron/CloudronManifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"contactEmail": "[email protected]",
99
"icon": "file://logo.png",
1010
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
11-
"version": "1.32.4",
11+
"version": "1.32.5",
1212
"healthCheckPath": "/api/_health/",
1313
"httpPort": 80,
1414
"addons": {

deploy/cloudron/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG FROM_IMAGE=baserow/baserow:1.32.4
1+
ARG FROM_IMAGE=baserow/baserow:1.32.5
22
# This is pinned as version pinning is done by the CI setting FROM_IMAGE.
33
# hadolint ignore=DL3006
44
FROM $FROM_IMAGE as image_base

deploy/helm/baserow/Chart.lock

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
dependencies:
22
- name: baserow
33
repository: file://charts/baserow-common
4-
version: 1.0.19
4+
version: 1.0.20
55
- name: baserow
66
repository: file://charts/baserow-common
7-
version: 1.0.19
7+
version: 1.0.20
88
- name: baserow
99
repository: file://charts/baserow-common
10-
version: 1.0.19
10+
version: 1.0.20
1111
- name: baserow
1212
repository: file://charts/baserow-common
13-
version: 1.0.19
13+
version: 1.0.20
1414
- name: baserow
1515
repository: file://charts/baserow-common
16-
version: 1.0.19
16+
version: 1.0.20
1717
- name: baserow
1818
repository: file://charts/baserow-common
19-
version: 1.0.19
19+
version: 1.0.20
2020
- name: baserow
2121
repository: file://charts/baserow-common
22-
version: 1.0.19
22+
version: 1.0.20
2323
- name: redis
2424
repository: https://charts.bitnami.com/bitnami
2525
version: 19.5.5
@@ -32,5 +32,5 @@ dependencies:
3232
- name: caddy-ingress-controller
3333
repository: https://caddyserver.github.io/ingress
3434
version: 1.1.0
35-
digest: sha256:c316352ad754207e7145234a9524690942e00e32a9c4ee31c82eba40df197413
36-
generated: "2025-03-25T12:51:11.182057+01:00"
35+
digest: sha256:690952564afdbb850a2caabd137e17a9f4c8f3635af022f49805f393150a332b
36+
generated: "2025-03-26T13:35:58.449044+01:00"

deploy/helm/baserow/Chart.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: baserow
33
description: The open platform to create scalable databases and applications—without coding.
44
type: application
5-
version: 1.0.19
6-
appVersion: "1.32.4"
5+
version: 1.0.20
6+
appVersion: "1.32.5"
77
home: https://gitlab.com/baserow/baserow/-/tree/develop/deploy/helm/baserow?ref_type=heads
88
icon: https://baserow.io/img/favicon_192.png
99
sources:
@@ -13,37 +13,37 @@ sources:
1313
dependencies:
1414
- name: baserow
1515
alias: baserow-backend-asgi
16-
version: "1.0.19"
16+
version: "1.0.20"
1717
repository: "file://charts/baserow-common"
1818

1919
- name: baserow
2020
alias: baserow-backend-wsgi
21-
version: "1.0.19"
21+
version: "1.0.20"
2222
repository: "file://charts/baserow-common"
2323

2424
- name: baserow
2525
alias: baserow-frontend
26-
version: "1.0.19"
26+
version: "1.0.20"
2727
repository: "file://charts/baserow-common"
2828

2929
- name: baserow
3030
alias: baserow-celery-beat-worker
31-
version: "1.0.19"
31+
version: "1.0.20"
3232
repository: "file://charts/baserow-common"
3333

3434
- name: baserow
3535
alias: baserow-celery-export-worker
36-
version: "1.0.19"
36+
version: "1.0.20"
3737
repository: "file://charts/baserow-common"
3838

3939
- name: baserow
4040
alias: baserow-celery-worker
41-
version: "1.0.19"
41+
version: "1.0.20"
4242
repository: "file://charts/baserow-common"
4343

4444
- name: baserow
4545
alias: baserow-celery-flower
46-
version: "1.0.19"
46+
version: "1.0.20"
4747
repository: "file://charts/baserow-common"
4848
condition: baserow-celery-flower.enabled
4949

deploy/helm/baserow/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ caddy:
202202
| ------------------------------------------------------------------ | --------------------------------------------------------------------------------------- | ----------------------- |
203203
| `global.baserow.imageRegistry` | Global Docker image registry | `baserow` |
204204
| `global.baserow.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
205-
| `global.baserow.image.tag` | Global Docker image tag | `1.32.4` |
205+
| `global.baserow.image.tag` | Global Docker image tag | `1.32.5` |
206206
| `global.baserow.serviceAccount.shared` | Set to true to share the service account between all application components. | `true` |
207207
| `global.baserow.serviceAccount.create` | Set to true to create a service account to share between all application components. | `true` |
208208
| `global.baserow.serviceAccount.name` | Configure a name for service account to share between all application components. | `baserow` |

deploy/helm/baserow/charts/baserow-common/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.19
18+
version: 1.0.20
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.32.4"
24+
appVersion: "1.32.5"

deploy/helm/baserow/charts/baserow-common/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| ------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
77
| `global.baserow.imageRegistry` | Global Docker image registry | `baserow` |
88
| `global.baserow.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
9-
| `global.baserow.image.tag` | Global Docker image tag | `1.32.4` |
9+
| `global.baserow.image.tag` | Global Docker image tag | `1.32.5` |
1010
| `global.baserow.serviceAccount.shared` | Set to true to share the service account between all application components. | `true` |
1111
| `global.baserow.serviceAccount.create` | Set to true to create a service account to share between all application components. | `true` |
1212
| `global.baserow.serviceAccount.name` | Configure a name for service account to share between all application components. | `baserow` |

0 commit comments

Comments
 (0)