Skip to content

Commit 6725bd4

Browse files
authored
Prepare for 2.1.6 (baserow#4977)
1 parent dd303ea commit 6725bd4

Some content is hidden

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

42 files changed

+163
-153
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ existing tools and performs at any scale.
2828
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/baserow/baserow/tree/master)
2929

3030
```bash
31-
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.5
31+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.6
3232
```
3333

3434
![Baserow database screenshot](docs/assets/screenshot.png "Baserow database screenshot")
@@ -108,7 +108,7 @@ Created by Baserow B.V. - bram@baserow.io.
108108

109109
Distributes under the MIT license. See `LICENSE` for more information.
110110

111-
Version: 2.1.5
111+
Version: 2.1.6
112112

113113
The official repository can be found at https://github.com/baserow/baserow.
114114

backend/docker/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
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="2.1.5"
9+
export BASEROW_VERSION="2.1.6"
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@
469469
"name": "MIT",
470470
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
471471
},
472-
"VERSION": "2.1.5",
472+
"VERSION": "2.1.6",
473473
"SERVE_INCLUDE_SCHEMA": False,
474474
"TAGS": [
475475
{"name": "Settings"},

backend/src/baserow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.1.5"
1+
VERSION = "2.1.6"

changelog.md

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

3+
## Released 2.1.6
4+
5+
### Bug fixes
6+
* [Integration] Resolved a bug in the periodic trigger which prevented it from being scheduled correctly.
7+
8+
39
## Released 2.1.5
410

511
### Bug fixes

changelog/entries/unreleased/bug/resolved_a_bug_in_the_periodic_trigger_which_prevented_it_fr.json renamed to changelog/entries/2.1.6/bug/resolved_a_bug_in_the_periodic_trigger_which_prevented_it_fr.json

File renamed without changes.

changelog/releases.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"releases": [
3+
{
4+
"name": "2.1.6",
5+
"created_at": "2026-03-13"
6+
},
37
{
48
"name": "2.1.5",
59
"created_at": "2026-03-12"

deploy/all-in-one/README.md

Lines changed: 20 additions & 20 deletions
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:2.1.5
18+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.6
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:2.1.5
55+
baserow/baserow:2.1.6
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:2.1.5` image by default runs all of Baserow's various services in
78+
The `baserow/baserow:2.1.6` 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:2.1.5
226+
baserow/baserow:2.1.6
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:2.1.5
239+
baserow/baserow:2.1.6
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:2.1.5
252+
baserow/baserow:2.1.6
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:2.1.5
271+
baserow/baserow:2.1.6
272272
```
273273

274274
### With an external Redis server
@@ -289,7 +289,7 @@ docker run \
289289
-p 80:80 \
290290
-p 443:443 \
291291
--restart unless-stopped \
292-
baserow/baserow:2.1.5
292+
baserow/baserow:2.1.6
293293
```
294294

295295
### With an external email server
@@ -309,7 +309,7 @@ docker run \
309309
-p 80:80 \
310310
-p 443:443 \
311311
--restart unless-stopped \
312-
baserow/baserow:2.1.5
312+
baserow/baserow:2.1.6
313313
```
314314

315315
### With a Postgresql server running on the same host as the Baserow docker container
@@ -347,7 +347,7 @@ docker run \
347347
-v baserow_data:/baserow/data \
348348
-p 80:80 \
349349
-p 443:443 \
350-
baserow/baserow:2.1.5
350+
baserow/baserow:2.1.6
351351
```
352352

353353
### Supply secrets using files
@@ -374,7 +374,7 @@ docker run \
374374
-v baserow_data:/baserow/data \
375375
-p 80:80 \
376376
-p 443:443 \
377-
baserow/baserow:2.1.5
377+
baserow/baserow:2.1.6
378378
```
379379

380380
### Start just the embedded database
@@ -387,7 +387,7 @@ docker run -it \
387387
--name baserow \
388388
-p 5432:5432 \
389389
-v baserow_data:/baserow/data \
390-
baserow/baserow:2.1.5 \
390+
baserow/baserow:2.1.6 \
391391
start-only-db
392392
# Now get the password from
393393
docker exec -it baserow cat /baserow/data/.pgpass
@@ -419,7 +419,7 @@ docker run -it \
419419
--rm \
420420
--name baserow \
421421
-v baserow_data:/baserow/data \
422-
baserow/baserow:2.1.5 \
422+
baserow/baserow:2.1.6 \
423423
backend-cmd-with-db manage dbshell
424424
```
425425

@@ -542,19 +542,19 @@ the command below.
542542

543543
```bash
544544
# First read the help message for this command
545-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \
545+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.6 \
546546
backend-cmd-with-db backup --help
547547

548548
# Stop Baserow instance
549549
docker stop baserow
550550

551551
# The command below backs up Baserow to the backups folder in the baserow_data volume:
552-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \
552+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.6 \
553553
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
554554

555555
# Or backup to a file on your host instead run something like:
556556
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
557-
baserow/baserow:2.1.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
557+
baserow/baserow:2.1.6 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
558558
```
559559

560560
### Restore only Baserow's Postgres Database
@@ -570,13 +570,13 @@ docker stop baserow
570570
docker run -it --rm \
571571
-v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
572572
-v new_baserow_data_volume_to_restore_into:/baserow/data \
573-
baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
573+
baserow/baserow:2.1.6 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
574574

575575
# Or to restore from a file on your host instead run something like:
576576
docker run -it --rm \
577577
-v baserow_data:/baserow/data -v \
578578
$(pwd):/baserow/host \
579-
baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
579+
baserow/baserow:2.1.6 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
580580
```
581581

582582
## Running healthchecks on Baserow
@@ -627,7 +627,7 @@ docker run \
627627
-p 80:80 \
628628
-p 443:443 \
629629
--restart unless-stopped \
630-
baserow/baserow:2.1.5
630+
baserow/baserow:2.1.6
631631
```
632632

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

638638
```dockerfile
639-
FROM baserow/baserow:2.1.5
639+
FROM baserow/baserow:2.1.6
640640

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cat << EOF
1414
██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝
1515
╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝
1616

17-
Version 2.1.5
17+
Version 2.1.6
1818

1919
=========================================================================================
2020
EOF

deploy/cloudron/CloudronManifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"contactEmail": "bram@baserow.io",
99
"icon": "file://logo.png",
1010
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
11-
"version": "2.1.5",
11+
"version": "2.1.6",
1212
"healthCheckPath": "/api/_health/",
1313
"httpPort": 80,
1414
"addons": {

0 commit comments

Comments
 (0)