Skip to content

Commit decacfb

Browse files
authored
Prepare for 2.0.4 (baserow#4444)
1 parent c967762 commit decacfb

File tree

69 files changed

+829
-533
lines changed

Some content is hidden

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

69 files changed

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

changelog.md

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

3+
## Released 2.0.4
4+
5+
### New features
6+
* [Core] Allow setting multiple BASEROW_PUBLIC_URL #2593 [#2593](https://github.com/baserow/baserow/-/issues/2593)
7+
* [Database] Allow to add missing fields to date dependency configuration [#4228](https://gitlab.com/baserow/baserow/-/issues/4228)
8+
* [Builder] Added a 'Create new data source' link at the bottom of iterate/table element dropdowns for quicker data source creation.
9+
* [Integration] Improved the Local Baserow action fields so that they inform users about what data type they expect to receive.
10+
11+
### Bug fixes
12+
* [Database] handle date overflow in postgresql -> python conversion [#3324](https://gitlab.com/baserow/baserow/-/issues/3324)
13+
* [Database] Timeline view - fetch all rows again if a filter is disabled. [#4136](https://github.com/baserow/baserow/-/issues/4136)
14+
* [Builder] Show a specific error when a page is being renamed to an existing page's name. [#4183](https://github.com/baserow/baserow/-/issues/4183)
15+
* [Automation] Show a specific error when a workflow is being renamed to an existing workflow's name. [#4183](https://github.com/baserow/baserow/-/issues/4183)
16+
* [Automation] Fixed a potential crash while deleting a workflow. [#4293](https://github.com/baserow/baserow/-/issues/4293)
17+
* [Database] Handle exceptions like GenerativeAIPromptError in UI [#4350](https://github.com/baserow/baserow/-/issues/4350)
18+
* [Core] Resolved a bug which prevented formula fields from working correctly with HTML content. [#4377](https://github.com/baserow/baserow/-/issues/4377)
19+
* [Builder] Gracefully handle fetching data source services when the specific instance is missing. [#4389](https://github.com/baserow/baserow/-/issues/4389)
20+
* [Builder] Fixed a bug where domain names were not correctly validated during domain creation. [#4399](https://github.com/baserow/baserow/-/issues/4399)
21+
* [Core] Improved error handling when FormulaField value is not JSON serializable. [#4402](https://github.com/baserow/baserow/-/issues/4402)
22+
* [Database] Do not fail hard when ArrayValueSerializer throws ConversionSyntax exception [#4424](https://github.com/baserow/baserow/-/issues/4424)
23+
* [Database] Fix an issue where "Rows enter view" webhook shows stale rows when webhook is deleted and recreated [#4437](https://github.com/baserow/baserow/-/issues/4437)
24+
* [Builder] Resolved a bug in element visibility which prevented form data from being used.
25+
* [Builder] Resolved a bug which prevented the table element fields from being styled.
26+
27+
### Refactors
28+
* [Database] Optimize test suite by deferring heavy signals by default [#4373](https://github.com/baserow/baserow/-/issues/4373)
29+
* [Integration] Improved one-way and two-way data sync support in Local Baserow actions.
30+
31+
332
## Released 2.0.3
433

534
### New features

changelog/entries/unreleased/bug/3324_psycopg_date_overflow_handling.json renamed to changelog/entries/2.0.4/bug/3324_psycopg_date_overflow_handling.json

File renamed without changes.

changelog/entries/unreleased/bug/4136_timeline_view__fetch_all_rows_again_if_a_filter_is_disabled.json renamed to changelog/entries/2.0.4/bug/4136_timeline_view__fetch_all_rows_again_if_a_filter_is_disabled.json

File renamed without changes.

changelog/entries/unreleased/bug/4183_gracefully_handle_when_page_is_being_renamed_to_an_existing_.json renamed to changelog/entries/2.0.4/bug/4183_gracefully_handle_when_page_is_being_renamed_to_an_existing_.json

File renamed without changes.

changelog/entries/unreleased/bug/4183_show_a_specific_error_when_a_workflow_is_being_renamed_to_an.json renamed to changelog/entries/2.0.4/bug/4183_show_a_specific_error_when_a_workflow_is_being_renamed_to_an.json

File renamed without changes.

changelog/entries/unreleased/bug/4293_fixed_a_crash_when_the_workflow_is_uninitialized.json renamed to changelog/entries/2.0.4/bug/4293_fixed_a_crash_when_the_workflow_is_uninitialized.json

File renamed without changes.

0 commit comments

Comments
 (0)