Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ existing tools and performs at any scale.
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/baserow/baserow/tree/master)

```bash
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.1
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.2
```

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

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

Version: 2.0.1
Version: 2.0.2

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

Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Baserow",
"description": "Open source online no-code database and Airtable alternative. More information about persistent files on S3, scaling and installing a custom domain can be found on https://baserow.io/docs/guides/installation/install-on-heroku. Note that it might take a couple of minutes to deploy the app, so please be patient.",
"description": "Baserow is an open source no-code database tool and Airtable alternative. Easily create\na relational database without any technical expertise. Build a table and define custom\nfields like text, number, file and many more. More information about persistent files on S3, scaling and installing a custom domain can be found on https://baserow.io/docs/guides/installation/install-on-heroku. Note that it might take a couple of minutes to deploy the app, so please be patient.",
"repository": "https://github.com/baserow/baserow",
"keywords": ["baserow", "no-code", "database", "airtable"],
"keywords": ["baserow", "no-code", "database", "airtable", "data", "collaborate"],
"logo": "https://baserow.io/img/favicon_192.png",
"success_url": "/",
"addons": [
Expand Down
2 changes: 1 addition & 1 deletion backend/docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail
# ENVIRONMENT VARIABLES USED DIRECTLY BY THIS ENTRYPOINT
# ======================================================

export BASEROW_VERSION="2.0.1"
export BASEROW_VERSION="2.0.2"

# Used by docker-entrypoint.sh to start the dev server
# If not configured you'll receive this: CommandError: "0.0.0.0:" is not a valid port number or address:port pair.
Expand Down
4 changes: 4 additions & 0 deletions backend/requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ asgiref==3.8.1
# django
# django-cors-headers
# opentelemetry-instrumentation-asgi
async-timeout==5.0.1
# via redis
attrs==24.3.0
# via
# jsonschema
Expand Down Expand Up @@ -210,6 +212,8 @@ googleapis-common-protos==1.66.0
# via
# google-api-core
# opentelemetry-exporter-otlp-proto-http
greenlet==3.2.4
# via sqlalchemy
gunicorn==23.0.0
# via -r base.in
h11==0.16.0
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements/dev.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pytest-html==4.1.1
coverage==7.5.1
pytest-split==0.8.2
bandit==1.7.8
pip-tools==7.4.1
pip-tools==7.5.2
autopep8==2.1.0
pytest-unordered==0.6.0
debugpy==1.8.1
Expand Down
14 changes: 7 additions & 7 deletions backend/requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ asttokens==3.0.0
# via
# snoop
# stack-data
async-timeout==5.0.1
# via
# -c base.txt
# redis
attrs==24.3.0
# via
# -c base.txt
Expand Down Expand Up @@ -113,9 +117,7 @@ isort==5.13.2
jedi==0.19.2
# via ipython
jinja2==3.1.6
# via
# -c base.txt
# pytest-html
# via pytest-html
jsonschema==4.25.0
# via
# -c base.txt
Expand All @@ -137,9 +139,7 @@ markdown-it-py==3.0.0
# -c base.txt
# rich
markupsafe==3.0.3
# via
# -c base.txt
# jinja2
# via jinja2
matplotlib-inline==0.1.7
# via ipython
mccabe==0.7.0
Expand Down Expand Up @@ -178,7 +178,7 @@ pbr==6.1.0
# via stevedore
pexpect==4.9.0
# via ipython
pip-tools==7.4.1
pip-tools==7.5.2
# via -r dev.in
platformdirs==4.3.6
# via black
Expand Down
2 changes: 1 addition & 1 deletion backend/src/baserow/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
"name": "MIT",
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
},
"VERSION": "2.0.1",
"VERSION": "2.0.2",
"SERVE_INCLUDE_SCHEMA": False,
"TAGS": [
{"name": "Settings"},
Expand Down
2 changes: 1 addition & 1 deletion backend/src/baserow/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.0.1"
VERSION = "2.0.2"
21 changes: 21 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## Released 2.0.2

### New features
* [Integration] Allow the Local Baserow 'update row' service to update data synced tables with writable fields. [#3799](https://github.com/baserow/baserow/-/issues/3799)

### Bug fixes
* [Database] Adjust image orientation based on exif data [#4247](https://github.com/baserow/baserow/-/issues/4247)
* [Automation] Fixed a bug where creating a workflow would cause a crash for another user viewing a different app. [#4293](https://github.com/baserow/baserow/-/issues/4293)
* [Automation] Allow to duplicate nodes inside container nodes [#4294](https://github.com/baserow/baserow/-/issues/4294)
* [Builder] Improve performances when editing a create/update workflow action with a lot of table fields
* [Integration] Resolved BASEROW_INTEGRATIONS_PERIODIC_MINUTE_MIN env variable bug.

### Refactors
* [Database] Make read/write DB routing consistent for http requests and background tasks [#3848](https://gitlab.com/baserow/baserow/-/issues/3848)
* [Builder] Fix missing form data after first render (SSR) [#4268](https://github.com/baserow/baserow/-/issues/4268)
* [Core] Improve formula editor

### Breaking API changes
* [Builder] Number field values returned by local baserow integrations are now actual numbers instead of string [#4219](https://github.com/baserow/baserow/-/issues/4219)


## Released 2.0.1

### Bug fixes
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "feature",
"message": "Paste values from a single row into many rows",
"domain": "database",
"issue_number": 3194,
"bullet_points": [],
"created_at": "2025-11-10"
}
4 changes: 4 additions & 0 deletions changelog/releases.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"releases": [
{
"name": "2.0.2",
"created_at": "2025-11-27"
},
{
"name": "2.0.1",
"created_at": "2025-11-18"
Expand Down
40 changes: 20 additions & 20 deletions deploy/all-in-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tool gives you the powers of a developer without leaving your browser.
[Vue.js](https://vuejs.org/) and [PostgreSQL](https://www.postgresql.org/).

```bash
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.1
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.2
```

## Quick Reference
Expand Down Expand Up @@ -52,7 +52,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

* Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable
Expand All @@ -75,7 +75,7 @@ docker run \

## Image Feature Overview

The `baserow/baserow:2.0.1` image by default runs all of Baserow's various services in
The `baserow/baserow:2.0.2` image by default runs all of Baserow's various services in
a single container for maximum ease of use.

> This image is designed for simple single server deployments or simple container
Expand Down Expand Up @@ -223,7 +223,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### Behind a reverse proxy already handling ssl
Expand All @@ -236,7 +236,7 @@ docker run \
-v baserow_data:/baserow/data \
-p 80:80 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### On a nonstandard HTTP port
Expand All @@ -249,7 +249,7 @@ docker run \
-v baserow_data:/baserow/data \
-p 3001:80 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### With an external PostgresSQL server
Expand All @@ -268,7 +268,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### With an external Redis server
Expand All @@ -287,7 +287,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### With an external email server
Expand All @@ -307,7 +307,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### With a Postgresql server running on the same host as the Baserow docker container
Expand Down Expand Up @@ -345,7 +345,7 @@ docker run \
-v baserow_data:/baserow/data \
-p 80:80 \
-p 443:443 \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### Supply secrets using files
Expand All @@ -372,7 +372,7 @@ docker run \
-v baserow_data:/baserow/data \
-p 80:80 \
-p 443:443 \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

### Start just the embedded database
Expand All @@ -385,7 +385,7 @@ docker run -it \
--name baserow \
-p 5432:5432 \
-v baserow_data:/baserow/data \
baserow/baserow:2.0.1 \
baserow/baserow:2.0.2 \
start-only-db
# Now get the password from
docker exec -it baserow cat /baserow/data/.pgpass
Expand Down Expand Up @@ -417,7 +417,7 @@ docker run -it \
--rm \
--name baserow \
-v baserow_data:/baserow/data \
baserow/baserow:2.0.1 \
baserow/baserow:2.0.2 \
backend-cmd-with-db manage dbshell
```

Expand Down Expand Up @@ -540,19 +540,19 @@ the command below.

```bash
# First read the help message for this command
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.1 \
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.2 \
backend-cmd-with-db backup --help

# Stop Baserow instance
docker stop baserow

# The command below backs up Baserow to the backups folder in the baserow_data volume:
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.1 \
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.2 \
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz

# Or backup to a file on your host instead run something like:
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
baserow/baserow:2.0.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
baserow/baserow:2.0.2 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
```

### Restore only Baserow's Postgres Database
Expand All @@ -568,13 +568,13 @@ docker stop baserow
docker run -it --rm \
-v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
-v new_baserow_data_volume_to_restore_into:/baserow/data \
baserow/baserow:2.0.1 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
baserow/baserow:2.0.2 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz

# Or to restore from a file on your host instead run something like:
docker run -it --rm \
-v baserow_data:/baserow/data -v \
$(pwd):/baserow/host \
baserow/baserow:2.0.1 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
baserow/baserow:2.0.2 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
```

## Running healthchecks on Baserow
Expand Down Expand Up @@ -625,7 +625,7 @@ docker run \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:2.0.1
baserow/baserow:2.0.2
```

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

```dockerfile
FROM baserow/baserow:2.0.1
FROM baserow/baserow:2.0.2

# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
# useful for storing your own environment variable overrides.
Expand Down
2 changes: 1 addition & 1 deletion deploy/all-in-one/supervisor/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cat << EOF
██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝
╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝

Version 2.0.1
Version 2.0.2

=========================================================================================
EOF
Expand Down
2 changes: 1 addition & 1 deletion deploy/cloudron/CloudronManifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"contactEmail": "bram@baserow.io",
"icon": "file://logo.png",
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
"version": "2.0.1",
"version": "2.0.2",
"healthCheckPath": "/api/_health/",
"httpPort": 80,
"addons": {
Expand Down
2 changes: 1 addition & 1 deletion deploy/cloudron/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG FROM_IMAGE=baserow/baserow:2.0.1
ARG FROM_IMAGE=baserow/baserow:2.0.2
# This is pinned as version pinning is done by the CI setting FROM_IMAGE.
# hadolint ignore=DL3006
FROM $FROM_IMAGE AS image_base
Expand Down
Loading
Loading