Skip to content

Commit 72854e1

Browse files
committed
Merge branch 'develop' into 'master'
Release 1.21.2 See merge request baserow/baserow!1810
2 parents 0bd3590 + 9b503c3 commit 72854e1

Some content is hidden

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

41 files changed

+154
-134
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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://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.21.1
20+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.21.2
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.21.1
92+
Version: 1.21.2
9393

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

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="1.21.1"
9+
export BASEROW_VERSION="1.21.2"
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/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
PROJECT_DIR = os.path.dirname(__file__)
77
REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
8-
VERSION = "1.21.1"
8+
VERSION = "1.21.2"
99

1010

1111
def get_requirements(env):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def install_cachalot():
479479
"name": "MIT",
480480
"url": "https://gitlab.com/baserow/baserow/-/blob/master/LICENSE",
481481
},
482-
"VERSION": "1.21.1",
482+
"VERSION": "1.21.2",
483483
"SERVE_INCLUDE_SCHEMA": False,
484484
"TAGS": [
485485
{"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 = "1.21.1"
1+
VERSION = "1.21.2"

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 1.21.2
4+
5+
### Bug fixes
6+
* Fixed redirect problem in the additional importer.
7+
8+
39
## Released 1.21.1
410

511
### Bug fixes
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "bug",
3+
"message": "Fixed redirect problem in the additional importer.",
4+
"issue_number": null,
5+
"bullet_points": [],
6+
"created_at": "2023-10-26"
7+
}

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": "1.21.2",
5+
"created_at": "2023-10-26"
6+
},
37
{
48
"name": "1.21.1",
59
"created_at": "2023-10-25"

deploy/all-in-one/README.md

Lines changed: 16 additions & 16 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:1.21.1
18+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.21.2
1919
```
2020

2121
## Quick Reference
@@ -50,7 +50,7 @@ docker run \
5050
-p 80:80 \
5151
-p 443:443 \
5252
--restart unless-stopped \
53-
baserow/baserow:1.21.1
53+
baserow/baserow:1.21.2
5454
```
5555

5656
* Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable
@@ -72,7 +72,7 @@ docker run \
7272
7373
## Image Feature Overview
7474

75-
The `baserow/baserow:1.21.1` image by default runs all of Baserow's various services in a
75+
The `baserow/baserow:1.21.2` image by default runs all of Baserow's various services in a
7676
single container for ease of use. A quick summary of its features are:
7777

7878
* Runs a Postgres database and Redis server by default internally and stores all data in
@@ -115,7 +115,7 @@ docker run \
115115
-p 80:80 \
116116
-p 443:443 \
117117
--restart unless-stopped \
118-
baserow/baserow:1.21.1
118+
baserow/baserow:1.21.2
119119
```
120120

121121
### Behind a reverse proxy already handling ssl
@@ -128,7 +128,7 @@ docker run \
128128
-v baserow_data:/baserow/data \
129129
-p 80:80 \
130130
--restart unless-stopped \
131-
baserow/baserow:1.21.1
131+
baserow/baserow:1.21.2
132132
```
133133

134134
### On a nonstandard HTTP port
@@ -141,7 +141,7 @@ docker run \
141141
-v baserow_data:/baserow/data \
142142
-p 3001:80 \
143143
--restart unless-stopped \
144-
baserow/baserow:1.21.1
144+
baserow/baserow:1.21.2
145145
```
146146

147147
### With an external PostgresSQL server
@@ -160,7 +160,7 @@ docker run \
160160
-p 80:80 \
161161
-p 443:443 \
162162
--restart unless-stopped \
163-
baserow/baserow:1.21.1
163+
baserow/baserow:1.21.2
164164
```
165165

166166
### With an external Redis server
@@ -179,7 +179,7 @@ docker run \
179179
-p 80:80 \
180180
-p 443:443 \
181181
--restart unless-stopped \
182-
baserow/baserow:1.21.1
182+
baserow/baserow:1.21.2
183183
```
184184

185185
### With an external email server
@@ -199,7 +199,7 @@ docker run \
199199
-p 80:80 \
200200
-p 443:443 \
201201
--restart unless-stopped \
202-
baserow/baserow:1.21.1
202+
baserow/baserow:1.21.2
203203
```
204204

205205
### Start just the embedded database
@@ -212,7 +212,7 @@ docker run -it \
212212
--name baserow \
213213
-p 5432:5432 \
214214
-v baserow_data:/baserow/data \
215-
baserow/baserow:1.21.1 \
215+
baserow/baserow:1.21.2 \
216216
start-only-db
217217
# Now get the password from
218218
docker exec -it baserow cat /baserow/data/.pgpass
@@ -230,7 +230,7 @@ docker run -it \
230230
--rm \
231231
--name baserow \
232232
-v baserow_data:/baserow/data \
233-
baserow/baserow:1.21.1 \
233+
baserow/baserow:1.21.2 \
234234
backend-cmd-with-db manage dbshell
235235
```
236236

@@ -287,16 +287,16 @@ the command below.
287287

288288
```bash
289289
# First read the help message for this command
290-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.21.1 \
290+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.21.2 \
291291
backend-cmd-with-db backup
292292

293293
# By default backs up to the backups folder in the baserow_data volume.
294-
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.21.1 \
294+
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.21.2 \
295295
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
296296

297297
# Or backup to a file on your host instead run something like:
298298
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
299-
baserow/baserow:1.21.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
299+
baserow/baserow:1.21.2 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
300300
```
301301

302302
### Restore only Baserow's Postgres Database
@@ -365,7 +365,7 @@ docker run \
365365
-p 80:80 \
366366
-p 443:443 \
367367
--restart unless-stopped \
368-
baserow/baserow:1.21.1
368+
baserow/baserow:1.21.2
369369
```
370370

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

376376
```dockerfile
377-
FROM baserow/baserow:1.21.1
377+
FROM baserow/baserow:1.21.2
378378

379379
# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
380380
# 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 1.21.1
17+
Version 1.21.2
1818
1919
=========================================================================================
2020
EOF

0 commit comments

Comments
 (0)