Skip to content

Commit 6907800

Browse files
authored
Prepare for 2.0.3 (baserow#4392)
1 parent be5d3d2 commit 6907800

File tree

63 files changed

+1396
-983
lines changed

Some content is hidden

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

63 files changed

+1396
-983
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.2
31+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.3
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.2
119+
Version: 2.0.3
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.2"
9+
export BASEROW_VERSION="2.0.3"
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.2",
459+
"VERSION": "2.0.3",
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.2"
1+
VERSION = "2.0.3"

changelog.md

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

3+
## Released 2.0.3
4+
5+
### New features
6+
* [Core] Allow changing account email address. [#1420](https://github.com/baserow/baserow/-/issues/1420)
7+
* [Database] Paste values from a single row into many rows [#3194](https://gitlab.com/baserow/baserow/-/issues/3194)
8+
* [Database] Run AI field generation in parallel [#4227](https://github.com/baserow/baserow/-/issues/4227)
9+
* [Database] Show jobs for AI Field in modal [#4264](https://github.com/baserow/baserow/-/issues/4264)
10+
* [Core] Synchronizes the dev docs with the assistant knowledge base documents.
11+
12+
### Bug fixes
13+
* [Database] Fix OpenAPI spec for generate_table_ai_field_value [#4339](https://github.com/baserow/baserow/-/issues/4339)
14+
* [Core] Change WebSocket connection closed error message.
15+
* [Core] Fix backup_baserow management command by using correct pg3 dbname. [#4308](https://github.com/baserow/baserow/-/issues/4308)
16+
* [Builder] Fix bug in the Helm chart where the AI-assistant LLM model was always set.
17+
* [Database] Improve performance in the `database_pendingsearchvalueupdate` table with many entries.
18+
19+
### Refactors
20+
* [Database] Improved storage usage performance.
21+
* [Builder] Refactored the element theme override form so that it works better on smaller screens.
22+
* [Core] Update email compiler dependencies
23+
* [Core] Update frontend dependencies 2025-12-03
24+
25+
326
## Released 2.0.2
427

528
### New features

changelog/entries/unreleased/bug/4339_fix_openapi_spec_for_generate_table_ai_field_value.json renamed to changelog/entries/2.0.3/bug/4339_fix_openapi_spec_for_generate_table_ai_field_value.json

File renamed without changes.

changelog/entries/unreleased/bug/change_websocket_connection_error.json renamed to changelog/entries/2.0.3/bug/change_websocket_connection_error.json

File renamed without changes.

changelog/entries/unreleased/bug/fix_backup_baserow_pg3_dbname.json renamed to changelog/entries/2.0.3/bug/fix_backup_baserow_pg3_dbname.json

File renamed without changes.

changelog/entries/unreleased/bug/fix_bug_in_helm_chart_where_assistant_llm_always_set.json renamed to changelog/entries/2.0.3/bug/fix_bug_in_helm_chart_where_assistant_llm_always_set.json

File renamed without changes.

changelog/entries/unreleased/bug/improve_pendingsearchvalueupdate_performance.json renamed to changelog/entries/2.0.3/bug/improve_pendingsearchvalueupdate_performance.json

File renamed without changes.

0 commit comments

Comments
 (0)