Skip to content

Commit c1088ce

Browse files
authored
Prepare for 2.0.5 (baserow#4472)
1 parent e18e783 commit c1088ce

Some content is hidden

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

49 files changed

+173
-163
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.0.4
31+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.5
3232
```
3333

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

117117
Distributes under the MIT license. See `LICENSE` for more information.
118118

119-
Version: 2.0.4
119+
Version: 2.0.5
120120

121121
The official repository can be found at https://github.com/baserow/baserow.
122122

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.0.4"
9+
export BASEROW_VERSION="2.0.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
"name": "MIT",
457457
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
458458
},
459-
"VERSION": "2.0.4",
459+
"VERSION": "2.0.5",
460460
"SERVE_INCLUDE_SCHEMA": False,
461461
"TAGS": [
462462
{"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.0.4"
1+
VERSION = "2.0.5"

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.0.5
4+
5+
### Bug fixes
6+
* [Builder] Resolved a bug which prevented user sources from being created or updated with a user source table.
7+
8+
39
## Released 2.0.4
410

511
### New features

changelog/entries/unreleased/bug/resolved_a_bug_which_prevented_user_sources_from_being_creat.json renamed to changelog/entries/2.0.5/bug/resolved_a_bug_which_prevented_user_sources_from_being_creat.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.0.5",
5+
"created_at": "2025-12-17"
6+
},
37
{
48
"name": "2.0.4",
59
"created_at": "2025-12-15"

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.0.4
18+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.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:2.0.4
55+
baserow/baserow:2.0.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:2.0.4` image by default runs all of Baserow's various services in
78+
The `baserow/baserow:2.0.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:2.0.4
226+
baserow/baserow:2.0.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:2.0.4
239+
baserow/baserow:2.0.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:2.0.4
252+
baserow/baserow:2.0.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:2.0.4
271+
baserow/baserow:2.0.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:2.0.4
290+
baserow/baserow:2.0.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:2.0.4
310+
baserow/baserow:2.0.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:2.0.4
348+
baserow/baserow:2.0.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:2.0.4
375+
baserow/baserow:2.0.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:2.0.4 \
388+
baserow/baserow:2.0.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:2.0.4 \
420+
baserow/baserow:2.0.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:2.0.4 \
543+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.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:2.0.4 \
550+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.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:2.0.4 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
555+
baserow/baserow:2.0.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:2.0.4 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
571+
baserow/baserow:2.0.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:2.0.4 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
577+
baserow/baserow:2.0.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:2.0.4
628+
baserow/baserow:2.0.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:2.0.4
637+
FROM baserow/baserow:2.0.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

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.0.4
17+
Version 2.0.5
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.0.4",
11+
"version": "2.0.5",
1212
"healthCheckPath": "/api/_health/",
1313
"httpPort": 80,
1414
"addons": {

0 commit comments

Comments
 (0)