Skip to content

Commit 8c25ef6

Browse files
authored
Prepare for 2.1.5 (baserow#4959)
1 parent 4db331c commit 8c25ef6

File tree

52 files changed

+176
-155
lines changed

Some content is hidden

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

52 files changed

+176
-155
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.4
31+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.5
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.4
111+
Version: 2.1.5
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.4"
9+
export BASEROW_VERSION="2.1.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
@@ -469,7 +469,7 @@
469469
"name": "MIT",
470470
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
471471
},
472-
"VERSION": "2.1.4",
472+
"VERSION": "2.1.5",
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.4"
1+
VERSION = "2.1.5"

backend/uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

changelog.md

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

3+
## Released 2.1.5
4+
5+
### Bug fixes
6+
* [Database] Remove ollama dependency [#4962](https://github.com/baserow/baserow/issues/4962)
7+
* [Core] Fix a bug that caused an error when running the backend and frontend images as different users.
8+
* [Core] Fix error page on token expiration to redirect to login
9+
* [Builder] Fixed a bug that could cause a stale page ID to be set even after deleting the page.
10+
* [Core] Improved the scheduling system in the periodic service.
11+
* [Builder] Resolved a bug where a container-type element with a visibility condition would be unable to use form data in its formula.
12+
* [Automation] Resolved a bug which caused the periodic trigger to reset its minute value if the interval was set to minute.
13+
* [Automation] Resolved an issue which prevented hour and minute values from persisting in the periodic trigger form.
14+
15+
### Refactors
16+
* [Automation] Add support for dispatching automation nodes asynchronously. [#3838](https://github.com/baserow/baserow/issues/3838)
17+
* [Database] Update langchain to 0.3.28 [#4965](https://github.com/baserow/baserow/issues/4965)
18+
19+
320
## Released 2.1.4
421

522
### Bug fixes

changelog/entries/unreleased/bug/4962_remove_ollama_dependency.json renamed to changelog/entries/2.1.5/bug/4962_remove_ollama_dependency.json

File renamed without changes.

changelog/entries/unreleased/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json renamed to changelog/entries/2.1.5/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json

File renamed without changes.

changelog/entries/unreleased/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json renamed to changelog/entries/2.1.5/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json

File renamed without changes.

changelog/entries/unreleased/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json renamed to changelog/entries/2.1.5/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json

File renamed without changes.

0 commit comments

Comments
 (0)