From 4db331c35bcda9c03cc026498a5b727a9b33d22c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 12 Mar 2026 14:39:00 +0000 Subject: [PATCH 1/2] fix: element formulas are imported once all elements exist (#4952) --- .../contrib/builder/elements/mixins.py | 5 +-- .../contrib/builder/elements/registries.py | 26 +------------ .../baserow/contrib/builder/pages/handler.py | 26 ++++++++++++- .../builder/elements/test_element_types.py | 37 ++++++++----------- .../builder/test_element_formula_mixin.py | 13 ++++--- ...containertype_element_with_a_visibili.json | 9 +++++ 6 files changed, 59 insertions(+), 57 deletions(-) create mode 100644 changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json diff --git a/backend/src/baserow/contrib/builder/elements/mixins.py b/backend/src/baserow/contrib/builder/elements/mixins.py index c35569ad5f..c1decd9978 100644 --- a/backend/src/baserow/contrib/builder/elements/mixins.py +++ b/backend/src/baserow/contrib/builder/elements/mixins.py @@ -46,7 +46,7 @@ class ContainerElementTypeMixin: # Container element types are imported first. - import_element_priority = 2 + import_element_priority = 1 class SerializedDict(ElementDict): pass @@ -801,9 +801,6 @@ def extract_properties( class FormElementTypeMixin: - # Form element types are imported second, after containers. - import_element_priority = 1 - def is_valid( self, element: Type[FormElement], diff --git a/backend/src/baserow/contrib/builder/elements/registries.py b/backend/src/baserow/contrib/builder/elements/registries.py index 9affde4b55..b25bf8641d 100644 --- a/backend/src/baserow/contrib/builder/elements/registries.py +++ b/backend/src/baserow/contrib/builder/elements/registries.py @@ -20,7 +20,6 @@ from rest_framework import serializers from rest_framework.exceptions import ValidationError -from baserow.contrib.builder.formula_importer import import_formula from baserow.contrib.builder.mixins import BuilderInstanceWithFormulaMixin from baserow.contrib.builder.pages.models import Page from baserow.core.formula.types import BaserowFormulaObject @@ -202,8 +201,6 @@ def import_serialized( cache: Dict[str, Any] | None = None, **kwargs, ) -> ElementSubClass: - from baserow.contrib.builder.elements.handler import ElementHandler - # Add mapping for builder element event uids (for collection field or other # elements that are using dynamic events. if "builder_element_event_uids" not in id_mapping: @@ -212,20 +209,6 @@ def import_serialized( if cache is None: cache = {} - import_context = {} - - parent_element_id = serialized_values["parent_element_id"] - - # If we have a parent element then we want to add used its import context - if parent_element_id: - imported_parent_element_id = id_mapping["builder_page_elements"][ - parent_element_id - ] - import_context = ElementHandler().get_import_context_addition( - imported_parent_element_id, - element_map=cache.get("imported_element_map", None), - ) - existing_roles = cache.get("existing_roles", {}).get(page.builder.id) if not existing_roles: existing_roles = UserSourceHandler().get_all_roles_for_application( @@ -246,16 +229,9 @@ def import_serialized( files_zip, storage, cache, - **(kwargs | import_context), - ) - - # Update formulas of the current element - updated_models = self.import_formulas( - created_instance, id_mapping, import_formula, **(kwargs | import_context) + **kwargs, ) - [m.save() for m in updated_models] - # Add created instance to an element cache cache.setdefault("imported_element_map", {})[created_instance.id] = ( created_instance diff --git a/backend/src/baserow/contrib/builder/pages/handler.py b/backend/src/baserow/contrib/builder/pages/handler.py index 8f3b1e31e7..e183c9f356 100644 --- a/backend/src/baserow/contrib/builder/pages/handler.py +++ b/backend/src/baserow/contrib/builder/pages/handler.py @@ -11,6 +11,7 @@ from baserow.contrib.builder.elements.handler import ElementHandler from baserow.contrib.builder.elements.registries import element_type_registry from baserow.contrib.builder.elements.types import ElementDictSubClass +from baserow.contrib.builder.formula_importer import import_formula from baserow.contrib.builder.models import Builder from baserow.contrib.builder.pages.constants import ( ILLEGAL_PATH_SAMPLE_CHARACTER, @@ -808,7 +809,6 @@ def import_elements( # Sort the serialized elements so that we import: # Containers first - # Form elements second # Everything else after that. def element_priority_sort(element_to_sort): return element_type_registry.get( @@ -849,6 +849,30 @@ def element_priority_sort(element_to_sort): if progress: progress.increment(state=IMPORT_SERIALIZED_IMPORTING) + # Now that all elements have been imported, loop back over them + # and start import their formulas. We do this because formulas can + # reference one another, so we need the full set of elements to be + # imported before we can safely import the formulas without running + # into issues of missing referenced elements in `id_mapping`. + updated_models = set() + for elt in imported_elements: + import_context = {} + if elt.parent_element_id: + import_context = ElementHandler().get_import_context_addition( + elt.parent_element_id, + element_map=cache.get("imported_element_map", None) + if cache + else None, + ) + updated_models = updated_models | elt.get_type().import_formulas( + elt, + id_mapping, + import_formula, + **import_context, + ) + + [m.save() for m in updated_models] + return imported_elements def import_workflow_actions( diff --git a/backend/tests/baserow/contrib/builder/elements/test_element_types.py b/backend/tests/baserow/contrib/builder/elements/test_element_types.py index 5b483f34bb..10b6d5b73e 100644 --- a/backend/tests/baserow/contrib/builder/elements/test_element_types.py +++ b/backend/tests/baserow/contrib/builder/elements/test_element_types.py @@ -38,7 +38,6 @@ from baserow.contrib.builder.elements.handler import ElementHandler from baserow.contrib.builder.elements.mixins import ( ContainerElementTypeMixin, - FormElementTypeMixin, ) from baserow.contrib.builder.elements.models import ( ButtonElement, @@ -64,6 +63,7 @@ element_type_registry, ) from baserow.contrib.builder.elements.service import ElementService +from baserow.contrib.builder.pages.handler import PageHandler from baserow.contrib.builder.pages.service import PageService from baserow.contrib.database.fields.handler import FieldHandler from baserow.core.handler import CoreHandler @@ -269,7 +269,7 @@ def test_link_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" expected_query_formula = f"get('data_source.{data_source_2.id}.field_2')" @@ -300,7 +300,7 @@ def test_form_container_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.submit_button_label["formula"] == expected_formula @@ -339,7 +339,7 @@ def test_text_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.value["formula"] == expected_formula @@ -363,7 +363,7 @@ def test_input_text_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.label["formula"] == expected_formula @@ -388,7 +388,7 @@ def test_image_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.image_url["formula"] == expected_formula @@ -411,7 +411,7 @@ def test_button_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.value["formula"] == expected_formula @@ -500,7 +500,7 @@ def test_choice_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.label["formula"] == expected_formula @@ -793,18 +793,12 @@ def test_element_type_import_element_priority(): for element_type in element_types if isinstance(element_type, ContainerElementTypeMixin) ] - form_element_types = [ - element_type - for element_type in element_types - if isinstance(element_type, FormElementTypeMixin) - ] other_element_types = [ element_type for element_type in element_types if not isinstance(element_type, ContainerElementTypeMixin) - and not isinstance(element_type, FormElementTypeMixin) ] - manual_ordering = container_element_types + form_element_types + other_element_types + manual_ordering = container_element_types + other_element_types expected_ordering = sorted( element_types, key=lambda element_type: element_type.import_element_priority, @@ -812,7 +806,7 @@ def test_element_type_import_element_priority(): ) assert manual_ordering == expected_ordering, ( "The element types ordering are expected to be: " - "containers first, then form elements, then everything else." + "containers first, then everything else." ) @@ -852,7 +846,7 @@ def test_checkbox_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.label["formula"] == expected_formula @@ -909,8 +903,9 @@ def test_iframe_element_import_export_formula(data_fixture): # After applying the ID mapping the imported formula should have updated # the data source IDs + # rather than in element_type.import_serialized. id_mapping = {"builder_data_sources": {data_source_1.id: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.url["formula"] == expected_formula @@ -961,8 +956,8 @@ def test_image_element_import_export(data_fixture, fake, storage): image_file.delete() with ZipFile(zip_buffer, "r", ZIP_DEFLATED, False) as files_zip: - imported_element = element_type.import_serialized( - page, serialized, id_mapping, files_zip=files_zip, storage=storage + [imported_element] = PageHandler().import_elements( + page, [serialized], id_mapping, files_zip=files_zip, storage=storage ) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" @@ -995,7 +990,7 @@ def test_choice_element_import_export(data_fixture): # the data source IDs id_mapping = {"builder_data_sources": {42: data_source_2.id}} - imported_element = element_type.import_serialized(page, serialized, id_mapping) + [imported_element] = PageHandler().import_elements(page, [serialized], id_mapping) expected_formula = f"get('data_source.{data_source_2.id}.field_1')" assert imported_element.label["formula"] == expected_formula diff --git a/backend/tests/baserow/contrib/builder/test_element_formula_mixin.py b/backend/tests/baserow/contrib/builder/test_element_formula_mixin.py index 5c63b8dd90..40bbd04aee 100644 --- a/backend/tests/baserow/contrib/builder/test_element_formula_mixin.py +++ b/backend/tests/baserow/contrib/builder/test_element_formula_mixin.py @@ -27,6 +27,7 @@ LinkElement, TextElement, ) +from baserow.contrib.builder.pages.handler import PageHandler from baserow.core.formula import BaserowFormulaObject from baserow.core.formula.field import BASEROW_FORMULA_VERSION_INITIAL from baserow.core.formula.types import BASEROW_FORMULA_MODE_SIMPLE @@ -96,9 +97,9 @@ def test_element_formula_generator_mixin( ) serialized_element = element_type().export_serialized(exported_element) - imported_element = element_type().import_serialized( + [imported_element] = PageHandler().import_elements( formula_generator_fixture["page"], - serialized_element, + [serialized_element], formula_generator_fixture["id_mapping"], ) @@ -143,9 +144,9 @@ def test_link_element_formula_generator(data_fixture, formula_generator_fixture) ) serialized_element = LinkElementType().export_serialized(exported_element) - imported_element = LinkElementType().import_serialized( + [imported_element] = PageHandler().import_elements( formula_generator_fixture["page"], - serialized_element, + [serialized_element], formula_generator_fixture["id_mapping"], ) @@ -248,9 +249,9 @@ def test_menu_element_formula_generator(data_fixture, formula_generator_fixture) serialized_element = MenuElementType().export_serialized(menu_element) - imported_element = MenuElementType().import_serialized( + [imported_element] = PageHandler().import_elements( formula_generator_fixture["page"], - serialized_element, + [serialized_element], formula_generator_fixture["id_mapping"], ) diff --git a/changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json b/changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json new file mode 100644 index 0000000000..1eb655693e --- /dev/null +++ b/changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json @@ -0,0 +1,9 @@ +{ + "type": "bug", + "message": "Resolved a bug where a container-type element with a visibility condition would be unable to use form data in its formula.", + "issue_origin": "github", + "issue_number": null, + "domain": "builder", + "bullet_points": [], + "created_at": "2026-03-11" +} \ No newline at end of file From 8c25ef6d606d992f8fed90ed0f0c8cf85f33bb3e Mon Sep 17 00:00:00 2001 From: Bram Date: Thu, 12 Mar 2026 17:02:12 +0100 Subject: [PATCH 2/2] Prepare for 2.1.5 (#4959) --- README.md | 4 +- backend/docker/docker-entrypoint.sh | 2 +- backend/src/baserow/config/settings/base.py | 2 +- backend/src/baserow/version.py | 2 +- backend/uv.lock | 4 +- changelog.md | 17 ++++++++ .../bug/4962_remove_ollama_dependency.json | 0 ...ror_trying_to_run_the_backend_and_fro.json | 0 ...token_expiration_to_redirect_to_login.json | 0 ...cause_a_stale_page_id_to_be_set_even_.json | 0 ...duling_system_in_the_periodic_service.json | 0 ...containertype_element_with_a_visibili.json | 0 ...used_the_periodic_trigger_to_reset_it.json | 0 ..._prevented_hour_and_minute_values_fro.json | 0 ...ching_automation_nodes_asynchronously.json | 0 .../4965_update_langchain_to_0328.json | 0 changelog/releases.json | 4 ++ deploy/all-in-one/README.md | 40 +++++++++---------- deploy/all-in-one/supervisor/start.sh | 2 +- deploy/cloudron/CloudronManifest.json | 2 +- deploy/cloudron/Dockerfile | 2 +- deploy/helm/baserow/Chart.lock | 20 +++++----- deploy/helm/baserow/Chart.yaml | 20 +++++----- deploy/helm/baserow/README.md | 2 +- .../baserow/charts/baserow-common/Chart.yaml | 4 +- .../baserow/charts/baserow-common/README.md | 2 +- .../baserow/charts/baserow-common/values.yaml | 4 +- deploy/helm/baserow/values.yaml | 2 +- deploy/render/Dockerfile | 2 +- docker-compose.all-in-one.yml | 2 +- docker-compose.no-caddy.yml | 10 ++--- docker-compose.yml | 10 ++--- docs/installation/install-behind-apache.md | 12 +++--- docs/installation/install-behind-nginx.md | 12 +++--- docs/installation/install-on-aws.md | 28 ++++++------- docs/installation/install-on-cloudron.md | 4 +- docs/installation/install-on-digital-ocean.md | 4 +- docs/installation/install-on-ubuntu.md | 4 +- .../install-using-standalone-images.md | 12 +++--- .../install-with-docker-compose.md | 2 +- docs/installation/install-with-docker.md | 38 +++++++++--------- docs/installation/install-with-helm.md | 2 +- docs/installation/install-with-k8s.md | 12 +++--- docs/installation/install-with-traefik.md | 2 +- docs/installation/supported.md | 2 +- docs/plugins/creation.md | 2 +- docs/plugins/installation.md | 26 ++++++------ enterprise/backend/pyproject.toml | 2 +- heroku.Dockerfile | 2 +- premium/backend/pyproject.toml | 2 +- web-frontend/docker/docker-entrypoint.sh | 2 +- web-frontend/package.json | 2 +- 52 files changed, 176 insertions(+), 155 deletions(-) rename changelog/entries/{unreleased => 2.1.5}/bug/4962_remove_ollama_dependency.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/improved_the_scheduling_system_in_the_periodic_service.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/resolved_a_bug_which_caused_the_periodic_trigger_to_reset_it.json (100%) rename changelog/entries/{unreleased => 2.1.5}/bug/resolved_an_issue_which_prevented_hour_and_minute_values_fro.json (100%) rename changelog/entries/{unreleased => 2.1.5}/refactor/3838_add_support_for_dispatching_automation_nodes_asynchronously.json (100%) rename changelog/entries/{unreleased => 2.1.5}/refactor/4965_update_langchain_to_0328.json (100%) diff --git a/README.md b/README.md index 948530c952..8e28cf277c 100644 --- a/README.md +++ b/README.md @@ -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.1.4 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.5 ``` ![Baserow database screenshot](docs/assets/screenshot.png "Baserow database screenshot") @@ -108,7 +108,7 @@ Created by Baserow B.V. - bram@baserow.io. Distributes under the MIT license. See `LICENSE` for more information. -Version: 2.1.4 +Version: 2.1.5 The official repository can be found at https://github.com/baserow/baserow. diff --git a/backend/docker/docker-entrypoint.sh b/backend/docker/docker-entrypoint.sh index a5dbfabaff..0550dab06b 100755 --- a/backend/docker/docker-entrypoint.sh +++ b/backend/docker/docker-entrypoint.sh @@ -6,7 +6,7 @@ set -euo pipefail # ENVIRONMENT VARIABLES USED DIRECTLY BY THIS ENTRYPOINT # ====================================================== -export BASEROW_VERSION="2.1.4" +export BASEROW_VERSION="2.1.5" # 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. diff --git a/backend/src/baserow/config/settings/base.py b/backend/src/baserow/config/settings/base.py index be5e93cd56..74bd611ea4 100644 --- a/backend/src/baserow/config/settings/base.py +++ b/backend/src/baserow/config/settings/base.py @@ -469,7 +469,7 @@ "name": "MIT", "url": "https://github.com/baserow/baserow/blob/develop/LICENSE", }, - "VERSION": "2.1.4", + "VERSION": "2.1.5", "SERVE_INCLUDE_SCHEMA": False, "TAGS": [ {"name": "Settings"}, diff --git a/backend/src/baserow/version.py b/backend/src/baserow/version.py index 5dfae46892..b82fac5efa 100644 --- a/backend/src/baserow/version.py +++ b/backend/src/baserow/version.py @@ -1 +1 @@ -VERSION = "2.1.4" +VERSION = "2.1.5" diff --git a/backend/uv.lock b/backend/uv.lock index 4a3a91d29f..678f7645aa 100644 --- a/backend/uv.lock +++ b/backend/uv.lock @@ -457,12 +457,12 @@ dev = [ [[package]] name = "baserow-enterprise" -version = "2.1.4" +version = "2.1.5" source = { editable = "../enterprise/backend" } [[package]] name = "baserow-premium" -version = "2.1.4" +version = "2.1.5" source = { editable = "../premium/backend" } [[package]] diff --git a/changelog.md b/changelog.md index de253615ba..03ecf271ab 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,22 @@ # Changelog +## Released 2.1.5 + +### Bug fixes +* [Database] Remove ollama dependency [#4962](https://github.com/baserow/baserow/issues/4962) +* [Core] Fix a bug that caused an error when running the backend and frontend images as different users. +* [Core] Fix error page on token expiration to redirect to login +* [Builder] Fixed a bug that could cause a stale page ID to be set even after deleting the page. +* [Core] Improved the scheduling system in the periodic service. +* [Builder] Resolved a bug where a container-type element with a visibility condition would be unable to use form data in its formula. +* [Automation] Resolved a bug which caused the periodic trigger to reset its minute value if the interval was set to minute. +* [Automation] Resolved an issue which prevented hour and minute values from persisting in the periodic trigger form. + +### Refactors +* [Automation] Add support for dispatching automation nodes asynchronously. [#3838](https://github.com/baserow/baserow/issues/3838) +* [Database] Update langchain to 0.3.28 [#4965](https://github.com/baserow/baserow/issues/4965) + + ## Released 2.1.4 ### Bug fixes diff --git a/changelog/entries/unreleased/bug/4962_remove_ollama_dependency.json b/changelog/entries/2.1.5/bug/4962_remove_ollama_dependency.json similarity index 100% rename from changelog/entries/unreleased/bug/4962_remove_ollama_dependency.json rename to changelog/entries/2.1.5/bug/4962_remove_ollama_dependency.json diff --git a/changelog/entries/unreleased/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json b/changelog/entries/2.1.5/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json similarity index 100% rename from changelog/entries/unreleased/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json rename to changelog/entries/2.1.5/bug/fix_a_bug_causing_an_error_trying_to_run_the_backend_and_fro.json diff --git a/changelog/entries/unreleased/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json b/changelog/entries/2.1.5/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json similarity index 100% rename from changelog/entries/unreleased/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json rename to changelog/entries/2.1.5/bug/fix_error_page_on_token_expiration_to_redirect_to_login.json diff --git a/changelog/entries/unreleased/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json b/changelog/entries/2.1.5/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json similarity index 100% rename from changelog/entries/unreleased/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json rename to changelog/entries/2.1.5/bug/fixed_a_bug_that_could_cause_a_stale_page_id_to_be_set_even_.json diff --git a/changelog/entries/unreleased/bug/improved_the_scheduling_system_in_the_periodic_service.json b/changelog/entries/2.1.5/bug/improved_the_scheduling_system_in_the_periodic_service.json similarity index 100% rename from changelog/entries/unreleased/bug/improved_the_scheduling_system_in_the_periodic_service.json rename to changelog/entries/2.1.5/bug/improved_the_scheduling_system_in_the_periodic_service.json diff --git a/changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json b/changelog/entries/2.1.5/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json similarity index 100% rename from changelog/entries/unreleased/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json rename to changelog/entries/2.1.5/bug/resolved_a_bug_where_a_containertype_element_with_a_visibili.json diff --git a/changelog/entries/unreleased/bug/resolved_a_bug_which_caused_the_periodic_trigger_to_reset_it.json b/changelog/entries/2.1.5/bug/resolved_a_bug_which_caused_the_periodic_trigger_to_reset_it.json similarity index 100% rename from changelog/entries/unreleased/bug/resolved_a_bug_which_caused_the_periodic_trigger_to_reset_it.json rename to changelog/entries/2.1.5/bug/resolved_a_bug_which_caused_the_periodic_trigger_to_reset_it.json diff --git a/changelog/entries/unreleased/bug/resolved_an_issue_which_prevented_hour_and_minute_values_fro.json b/changelog/entries/2.1.5/bug/resolved_an_issue_which_prevented_hour_and_minute_values_fro.json similarity index 100% rename from changelog/entries/unreleased/bug/resolved_an_issue_which_prevented_hour_and_minute_values_fro.json rename to changelog/entries/2.1.5/bug/resolved_an_issue_which_prevented_hour_and_minute_values_fro.json diff --git a/changelog/entries/unreleased/refactor/3838_add_support_for_dispatching_automation_nodes_asynchronously.json b/changelog/entries/2.1.5/refactor/3838_add_support_for_dispatching_automation_nodes_asynchronously.json similarity index 100% rename from changelog/entries/unreleased/refactor/3838_add_support_for_dispatching_automation_nodes_asynchronously.json rename to changelog/entries/2.1.5/refactor/3838_add_support_for_dispatching_automation_nodes_asynchronously.json diff --git a/changelog/entries/unreleased/refactor/4965_update_langchain_to_0328.json b/changelog/entries/2.1.5/refactor/4965_update_langchain_to_0328.json similarity index 100% rename from changelog/entries/unreleased/refactor/4965_update_langchain_to_0328.json rename to changelog/entries/2.1.5/refactor/4965_update_langchain_to_0328.json diff --git a/changelog/releases.json b/changelog/releases.json index 509f052bc7..9eeef3de6c 100644 --- a/changelog/releases.json +++ b/changelog/releases.json @@ -1,5 +1,9 @@ { "releases": [ + { + "name": "2.1.5", + "created_at": "2026-03-12" + }, { "name": "2.1.4", "created_at": "2026-03-04" diff --git a/deploy/all-in-one/README.md b/deploy/all-in-one/README.md index 9b55d2b9d3..f61892b090 100644 --- a/deploy/all-in-one/README.md +++ b/deploy/all-in-one/README.md @@ -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.1.4 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.5 ``` ## Quick Reference @@ -52,7 +52,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable @@ -75,7 +75,7 @@ docker run \ ## Image Feature Overview -The `baserow/baserow:2.1.4` image by default runs all of Baserow's various services in +The `baserow/baserow:2.1.5` 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 @@ -223,7 +223,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Behind a reverse proxy already handling ssl @@ -236,7 +236,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### On a nonstandard HTTP port @@ -249,7 +249,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 3001:80 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external PostgresSQL server @@ -268,7 +268,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external Redis server @@ -289,7 +289,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external email server @@ -309,7 +309,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With a Postgresql server running on the same host as the Baserow docker container @@ -347,7 +347,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Supply secrets using files @@ -374,7 +374,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Start just the embedded database @@ -387,7 +387,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:2.1.4 \ + baserow/baserow:2.1.5 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -419,7 +419,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:2.1.4 \ + baserow/baserow:2.1.5 \ backend-cmd-with-db manage dbshell ``` @@ -542,19 +542,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.1.4 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \ 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.1.4 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \ 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.1.4 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:2.1.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -570,13 +570,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.1.4 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz + baserow/baserow:2.1.5 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.1.4 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz + baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz ``` ## Running healthchecks on Baserow @@ -627,7 +627,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will be @@ -636,7 +636,7 @@ loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:2.1.4 +FROM baserow/baserow:2.1.5 # Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup # useful for storing your own environment variable overrides. diff --git a/deploy/all-in-one/supervisor/start.sh b/deploy/all-in-one/supervisor/start.sh index b05fe6e939..1f947af56d 100755 --- a/deploy/all-in-one/supervisor/start.sh +++ b/deploy/all-in-one/supervisor/start.sh @@ -14,7 +14,7 @@ cat << EOF ██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝ -Version 2.1.4 +Version 2.1.5 ========================================================================================= EOF diff --git a/deploy/cloudron/CloudronManifest.json b/deploy/cloudron/CloudronManifest.json index feb194c2bc..69807f4057 100644 --- a/deploy/cloudron/CloudronManifest.json +++ b/deploy/cloudron/CloudronManifest.json @@ -8,7 +8,7 @@ "contactEmail": "bram@baserow.io", "icon": "file://logo.png", "tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"], - "version": "2.1.4", + "version": "2.1.5", "healthCheckPath": "/api/_health/", "httpPort": 80, "addons": { diff --git a/deploy/cloudron/Dockerfile b/deploy/cloudron/Dockerfile index abd64b4e62..3bd457342a 100644 --- a/deploy/cloudron/Dockerfile +++ b/deploy/cloudron/Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.1.4 +ARG FROM_IMAGE=baserow/baserow:2.1.5 # This is pinned as version pinning is done by the CI setting FROM_IMAGE. # hadolint ignore=DL3006 FROM $FROM_IMAGE AS image_base diff --git a/deploy/helm/baserow/Chart.lock b/deploy/helm/baserow/Chart.lock index 76a32ac935..9bd093b0f6 100644 --- a/deploy/helm/baserow/Chart.lock +++ b/deploy/helm/baserow/Chart.lock @@ -1,28 +1,28 @@ dependencies: - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: baserow repository: file://charts/baserow-common - version: 1.0.47 + version: 1.0.48 - name: redis repository: https://charts.bitnami.com/bitnami version: 19.5.5 @@ -35,5 +35,5 @@ dependencies: - name: caddy-ingress-controller repository: https://caddyserver.github.io/ingress version: 1.1.0 -digest: sha256:04d1fbe77d71110710c0dbb507572d50656a876a3a77637a08906364c298dbbc -generated: "2026-03-04T17:45:52.744939+01:00" +digest: sha256:aa530dcfc88adbb8ffcb5f62f0314089ed2cff3d28c2f7350436c97e4d067483 +generated: "2026-03-12T10:46:59.185054+01:00" diff --git a/deploy/helm/baserow/Chart.yaml b/deploy/helm/baserow/Chart.yaml index cfc9bcbfc9..8e8135645e 100644 --- a/deploy/helm/baserow/Chart.yaml +++ b/deploy/helm/baserow/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: baserow description: The open platform to create scalable databases and applications—without coding. type: application -version: 1.0.47 -appVersion: "2.1.4" +version: 1.0.48 +appVersion: "2.1.5" home: https://github.com/baserow/baserow/blob/develop/deploy/helm/baserow?ref_type=heads icon: https://baserow.io/img/favicon_192.png sources: @@ -13,43 +13,43 @@ sources: dependencies: - name: baserow alias: baserow-backend-asgi - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-backend-wsgi - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-frontend - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-beat-worker - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-export-worker - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-worker - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-flower - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" condition: baserow-celery-flower.enabled - name: baserow alias: baserow-embeddings - version: "1.0.47" + version: "1.0.48" repository: "file://charts/baserow-common" condition: baserow-embeddings.enabled diff --git a/deploy/helm/baserow/README.md b/deploy/helm/baserow/README.md index b20e4d6ecb..693e8ebebd 100644 --- a/deploy/helm/baserow/README.md +++ b/deploy/helm/baserow/README.md @@ -232,7 +232,7 @@ caddy: | ------------------------------------------------------------------ | --------------------------------------------------------------------------------------- | ----------------------- | | `global.baserow.imageRegistry` | Global Docker image registry | `baserow` | | `global.baserow.imagePullSecrets` | Global Docker registry secret names as an array | `[]` | -| `global.baserow.image.tag` | Global Docker image tag | `2.1.4` | +| `global.baserow.image.tag` | Global Docker image tag | `2.1.5` | | `global.baserow.serviceAccount.shared` | Set to true to share the service account between all application components. | `true` | | `global.baserow.serviceAccount.create` | Set to true to create a service account to share between all application components. | `true` | | `global.baserow.serviceAccount.name` | Configure a name for service account to share between all application components. | `baserow` | diff --git a/deploy/helm/baserow/charts/baserow-common/Chart.yaml b/deploy/helm/baserow/charts/baserow-common/Chart.yaml index fe71785dc1..2e75299b7e 100644 --- a/deploy/helm/baserow/charts/baserow-common/Chart.yaml +++ b/deploy/helm/baserow/charts/baserow-common/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.47 +version: 1.0.48 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.1.4" +appVersion: "2.1.5" diff --git a/deploy/helm/baserow/charts/baserow-common/README.md b/deploy/helm/baserow/charts/baserow-common/README.md index ac6b720277..2f66428878 100644 --- a/deploy/helm/baserow/charts/baserow-common/README.md +++ b/deploy/helm/baserow/charts/baserow-common/README.md @@ -6,7 +6,7 @@ | ------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | | `global.baserow.imageRegistry` | Global Docker image registry | `baserow` | | `global.baserow.imagePullSecrets` | Global Docker registry secret names as an array | `[]` | -| `global.baserow.image.tag` | Global Docker image tag | `2.1.4` | +| `global.baserow.image.tag` | Global Docker image tag | `2.1.5` | | `global.baserow.serviceAccount.shared` | Set to true to share the service account between all application components. | `true` | | `global.baserow.serviceAccount.create` | Set to true to create a service account to share between all application components. | `true` | | `global.baserow.serviceAccount.name` | Configure a name for service account to share between all application components. | `baserow` | diff --git a/deploy/helm/baserow/charts/baserow-common/values.yaml b/deploy/helm/baserow/charts/baserow-common/values.yaml index d6de570e53..29a7ef78ec 100644 --- a/deploy/helm/baserow/charts/baserow-common/values.yaml +++ b/deploy/helm/baserow/charts/baserow-common/values.yaml @@ -38,7 +38,7 @@ global: baserow: imageRegistry: baserow image: - tag: 2.1.4 + tag: 2.1.5 imagePullSecrets: [] serviceAccount: shared: true @@ -83,7 +83,7 @@ global: ## image: repository: baserow/baserow # Docker image repository - tag: 2.1.4 # Docker image tag + tag: 2.1.5 # Docker image tag pullPolicy: IfNotPresent # Image pull policy ## @param workingDir Application container working directory diff --git a/deploy/helm/baserow/values.yaml b/deploy/helm/baserow/values.yaml index a840aab670..18570eabd9 100644 --- a/deploy/helm/baserow/values.yaml +++ b/deploy/helm/baserow/values.yaml @@ -43,7 +43,7 @@ global: baserow: imageRegistry: baserow image: - tag: 2.1.4 + tag: 2.1.5 imagePullSecrets: [] serviceAccount: shared: true diff --git a/deploy/render/Dockerfile b/deploy/render/Dockerfile index 3a443a6b40..418e2d6508 100644 --- a/deploy/render/Dockerfile +++ b/deploy/render/Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.1.4 +ARG FROM_IMAGE=baserow/baserow:2.1.5 # This is pinned as version pinning is done by the CI setting FROM_IMAGE. # hadolint ignore=DL3006 FROM $FROM_IMAGE AS image_base diff --git a/docker-compose.all-in-one.yml b/docker-compose.all-in-one.yml index de546de670..2004ca5d49 100644 --- a/docker-compose.all-in-one.yml +++ b/docker-compose.all-in-one.yml @@ -3,7 +3,7 @@ services: baserow: container_name: baserow - image: baserow/baserow:${BASEROW_VERSION:-2.1.4} + image: baserow/baserow:${BASEROW_VERSION:-2.1.5} environment: BASEROW_PUBLIC_URL: 'http://localhost' ports: diff --git a/docker-compose.no-caddy.yml b/docker-compose.no-caddy.yml index 451eed5e1c..bcbd83bc0f 100644 --- a/docker-compose.no-caddy.yml +++ b/docker-compose.no-caddy.yml @@ -195,7 +195,7 @@ x-backend-variables: services: backend: - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 restart: unless-stopped ports: - "${HOST_PUBLISH_IP:-127.0.0.1}:8000:8000" @@ -210,7 +210,7 @@ services: local: web-frontend: - image: baserow/web-frontend:2.1.4 + image: baserow/web-frontend:2.1.5 restart: unless-stopped ports: - "${HOST_PUBLISH_IP:-127.0.0.1}:3000:3000" @@ -255,7 +255,7 @@ services: local: celery: - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 restart: unless-stopped environment: <<: *backend-variables @@ -276,7 +276,7 @@ services: local: celery-export-worker: - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 restart: unless-stopped command: celery-exportworker environment: @@ -297,7 +297,7 @@ services: local: celery-beat-worker: - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 restart: unless-stopped command: celery-beat environment: diff --git a/docker-compose.yml b/docker-compose.yml index 6d4b33c640..b372f6c844 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -271,7 +271,7 @@ services: local: backend: - image: baserow/backend:${BASEROW_VERSION:-2.1.4} + image: baserow/backend:${BASEROW_VERSION:-2.1.5} restart: unless-stopped environment: @@ -285,7 +285,7 @@ services: local: web-frontend: - image: baserow/web-frontend:${BASEROW_VERSION:-2.1.4} + image: baserow/web-frontend:${BASEROW_VERSION:-2.1.5} restart: unless-stopped environment: BASEROW_PUBLIC_URL: ${BASEROW_PUBLIC_URL-http://localhost} @@ -335,7 +335,7 @@ services: local: celery: - image: baserow/backend:${BASEROW_VERSION:-2.1.4} + image: baserow/backend:${BASEROW_VERSION:-2.1.5} restart: unless-stopped environment: <<: *backend-variables @@ -357,7 +357,7 @@ services: local: celery-export-worker: - image: baserow/backend:${BASEROW_VERSION:-2.1.4} + image: baserow/backend:${BASEROW_VERSION:-2.1.5} restart: unless-stopped command: celery-exportworker environment: @@ -379,7 +379,7 @@ services: local: celery-beat-worker: - image: baserow/backend:${BASEROW_VERSION:-2.1.4} + image: baserow/backend:${BASEROW_VERSION:-2.1.5} restart: unless-stopped command: celery-beat healthcheck: diff --git a/docs/installation/install-behind-apache.md b/docs/installation/install-behind-apache.md index 909533edd0..ca008334b5 100644 --- a/docs/installation/install-behind-apache.md +++ b/docs/installation/install-behind-apache.md @@ -3,7 +3,7 @@ If you have an [Apache server](https://www.apache.com/) this guide will explain how to configure it to pass requests through to Baserow. -We strongly recommend you use our `baserow/baserow:2.1.4` image or the example +We strongly recommend you use our `baserow/baserow:2.1.5` image or the example `docker-compose.yml` files (excluding the `.no-caddy.yml` variant) provided in our [git repository](https://github.com/baserow/baserow/tree/master/deploy/apache/). @@ -18,8 +18,8 @@ simplifies your life by: > If you do not want to use our embedded Caddy service behind your Apache then > make sure you are using one of the two following deployment methods: > -> * Your own container setup with our single service `baserow/backend:2.1.4` - and `baserow/web-frontend:2.1.4` images. +> * Your own container setup with our single service `baserow/backend:2.1.5` + and `baserow/web-frontend:2.1.5` images. > * Or our `docker-compose.no-caddy.yml` example file in our [git repository](https://github.com/baserow/baserow/tree/master/deploy/apache/). > > Then you should use **Option 2: Without our embedded Caddy** section instead. @@ -32,7 +32,7 @@ simplifies your life by: Follow this option if you are using: -* The all-in-one Baserow image `baserow/baserow:2.1.4` +* The all-in-one Baserow image `baserow/baserow:2.1.5` * Any of the example compose files found in the root of our git repository `docker-compose.yml`/`docker-compose.all-in-one.yml` @@ -115,7 +115,7 @@ You should now be able to access Baserow on you configured subdomain. Follow this option if you are using: -* Our standalone `baserow/backend:2.1.4` and `baserow/web-frontend:2.1.4` images with +* Our standalone `baserow/backend:2.1.5` and `baserow/web-frontend:2.1.5` images with your own container orchestrator. * Or the `docker-compose.no-caddy.yml` example docker compose file in the root of our git repository. @@ -147,7 +147,7 @@ sudo systemctl restart apache2 You need to ensure user uploaded files are accessible in a folder for Apache to serve. In the rest of the guide we will use the example `/var/web` folder for this purpose. -If you are using the `baserow/backend:2.1.4` image then you can do this by adding +If you are using the `baserow/backend:2.1.5` image then you can do this by adding `-v /var/web:/baserow/data/media` to your normal `docker run` command used to launch the Baserow backend. diff --git a/docs/installation/install-behind-nginx.md b/docs/installation/install-behind-nginx.md index fdbf18ef4c..5f95a52753 100644 --- a/docs/installation/install-behind-nginx.md +++ b/docs/installation/install-behind-nginx.md @@ -3,7 +3,7 @@ If you have an [Nginx server](https://www.nginx.com/) this guide will explain how to configure it to pass requests through to Baserow. -We strongly recommend you use our `baserow/baserow:2.1.4` image or the example +We strongly recommend you use our `baserow/baserow:2.1.5` image or the example `docker-compose.yml` files (excluding the `.no-caddy.yml` variant) provided in our [git repository](https://github.com/baserow/baserow/tree/master/deploy/nginx/). @@ -18,8 +18,8 @@ simplifies your life by: > If you do not want to use our embedded Caddy service behind your Nginx then > make sure you are using one of the two following deployment methods: > -> * Your own container setup with our single service `baserow/backend:2.1.4` - and `baserow/web-frontend:2.1.4` images. +> * Your own container setup with our single service `baserow/backend:2.1.5` + and `baserow/web-frontend:2.1.5` images. > * Or our `docker-compose.no-caddy.yml` example file in our [git repository](https://github.com/baserow/baserow/tree/master/deploy/nginx/). > > Then you should use **Option 2: Without our embedded Caddy** section instead. @@ -32,7 +32,7 @@ simplifies your life by: Follow this option if you are using: -* The all-in-one Baserow image `baserow/baserow:2.1.4` +* The all-in-one Baserow image `baserow/baserow:2.1.5` * Any of the example compose files found in the root of our git repository `docker-compose.yml`/`docker-compose.all-in-one.yml` @@ -107,7 +107,7 @@ You should now be able to access Baserow on you configured subdomain. Follow this option if you are using: -* Our standalone `baserow/backend:2.1.4` and `baserow/web-frontend:2.1.4` images with +* Our standalone `baserow/backend:2.1.5` and `baserow/web-frontend:2.1.5` images with your own container orchestrator. * Or the `docker-compose.no-caddy.yml` example docker compose file in the root of our git repository. @@ -126,7 +126,7 @@ but you might have to run different commands. You need to ensure user uploaded files are accessible in a folder for Nginx to serve. In the rest of the guide we will use the example `/var/web` folder for this purpose. -If you are using the `baserow/backend:2.1.4` image then you can do this by adding +If you are using the `baserow/backend:2.1.5` image then you can do this by adding `-v /var/web:/baserow/data/media` to your normal `docker run` command used to launch the Baserow backend. diff --git a/docs/installation/install-on-aws.md b/docs/installation/install-on-aws.md index 2bbcda861c..6c4485b82b 100644 --- a/docs/installation/install-on-aws.md +++ b/docs/installation/install-on-aws.md @@ -49,7 +49,7 @@ overview this is what any AWS deployment of Baserow will need: ## Option 1) Deploying the all-in-one image to Fargate/ECS -The `baserow/baserow:2.1.4` image runs all of Baserow’s various services inside the +The `baserow/baserow:2.1.5` image runs all of Baserow’s various services inside the container for ease of use. This image is designed for single server deployments or simple deployments to @@ -67,7 +67,7 @@ Run. * You don't need to worry about configuring and linking together the different services that make up a Baserow deployment. * Configuring load balancers is easier as you can just directly route through all - requests to any horizontally scaled container running `baserow/baserow:2.1.4`. + requests to any horizontally scaled container running `baserow/baserow:2.1.5`. #### Cons @@ -75,7 +75,7 @@ Run. * Potentially higher resource usage overall as each of the all-in-one containers will come with its internal services, so you have less granular control over scaling specific services. - * For example if you deploy 10 `baserow/baserow:2.1.4` containers horizontally you + * For example if you deploy 10 `baserow/baserow:2.1.5` containers horizontally you by default end up with: * 10 web-frontend services * 10 backend services @@ -188,18 +188,18 @@ Generally, the Redis server is not the bottleneck in Baserow deployments as they Now create a target group on port 80 and ALB ready to route traffic to the Baserow containers. -When setting up the health check for the ALB the `baserow/baserow:2.1.4` container +When setting up the health check for the ALB the `baserow/baserow:2.1.5` container ,which you'll be deploying next, choose port `80` and health check URL `/api/_health/`. We recommend a long grace period of 900 seconds to account for first-time migrations being run on the first container's startup. #### 5) Launching Baserow on ECS/Fargate -Now we are ready to spin up our `baserow/baserow:2.1.4` containers. See below for a +Now we are ready to spin up our `baserow/baserow:2.1.5` containers. See below for a full task definition and environment variables. We recommend launching the containers with 2vCPUs and 4 GB of RAM each to start with. In short, you will want to: -1. Select the `baserow/baserow:2.1.4` image. +1. Select the `baserow/baserow:2.1.5` image. 2. Add a port mapping of `80` on TCP as this is where this images HTTP server is listening by default. 3. Mark the container as essential. @@ -244,7 +244,7 @@ container_definitions = < We recommend setting the timeout of each HTTP API request to 60 seconds in the @@ -484,7 +484,7 @@ This service is our HTTP REST API service. When creating the task definition you This service is our Websocket API service and when configuring the task definition you should: -1. Use the `baserow/backend:2.1.4` +1. Use the `baserow/backend:2.1.5` 2. Under docker configuration set `gunicorn` as the Command. 3. We recommend 2vCPUs and 4 GB of RAM per container to start with. 4. Map the container port `8000`/`TCP` @@ -496,7 +496,7 @@ should: This service is our asynchronous high priority task worker queue used for realtime collaboration and sending emails. -1. Use the `baserow/backend:2.1.4` image with `celery-worker` as the image command. +1. Use the `baserow/backend:2.1.5` image with `celery-worker` as the image command. 2. Under docker configuration set `celery-worker` as the Command. 3. No port mappings needed. 4. We recommend 2vCPUs and 4 GB of RAM per container to start with. @@ -509,7 +509,7 @@ This service is our asynchronous slow/low priority task worker queue for batch processes and running potentially slow operations for users like table exports and imports etc. -1. Use the `baserow/backend:2.1.4` image. +1. Use the `baserow/backend:2.1.5` image. 2. Under docker configuration set `celery-exportworker` as the Command. 3. No port mappings needed. 4. We recommend 2vCPUs and 4 GB of RAM per container to start with. @@ -520,7 +520,7 @@ imports etc. This service is our CRON task scheduler that can have multiple replicas deployed. -1. Use the `baserow/backend:2.1.4` image. +1. Use the `baserow/backend:2.1.5` image. 2. Under docker configuration set `celery-beat` as the Command. 3. No port mapping needed. 4. We recommend 1vCPUs and 3 GB of RAM per container to start with. @@ -537,7 +537,7 @@ This service is our CRON task scheduler that can have multiple replicas deployed Finally, this service is used for server side rendering and serving the frontend of Baserow. -1. Use the `baserow/web-frontend:2.1.4` image with no arguments needed. +1. Use the `baserow/web-frontend:2.1.5` image with no arguments needed. 2. Map the container port `3000` 3. We recommend 2vCPUs and 4 GB of RAM per container to start with. 4. Mark the container as essential. diff --git a/docs/installation/install-on-cloudron.md b/docs/installation/install-on-cloudron.md index 5093158f29..fab7698c4b 100644 --- a/docs/installation/install-on-cloudron.md +++ b/docs/installation/install-on-cloudron.md @@ -46,7 +46,7 @@ $ cd baserow/deploy/cloudron After that you can install the Baserow Cloudron app by executing the following commands. ``` -$ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:2.1.4 +$ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:2.1.5 App is being installed. ... App is installed. @@ -89,7 +89,7 @@ the `baserow/deploy/cloudron` folder, you can upgrade your cloudron baserow serv the latest version by running the following command: ``` -cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:2.1.4 +cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:2.1.5 ``` > Note that you must replace the image with the most recent image of Baserow. The diff --git a/docs/installation/install-on-digital-ocean.md b/docs/installation/install-on-digital-ocean.md index a4dd0749af..ed639f1199 100644 --- a/docs/installation/install-on-digital-ocean.md +++ b/docs/installation/install-on-digital-ocean.md @@ -51,7 +51,7 @@ Navigate to the `Apps` page in the left sidebar of your Digital Ocean dashboard. on `Create App`, select `Docker Hub`, and fill out the following: Repository: `baserow/baserow` -Image tag or digest: `2.1.4` +Image tag or digest: `2.1.5` Click on `Next`, then on the `Edit` button of the `baserow-baserow` web service. Here you must change the HTTP Port to 80, and then click on `Back`. Click on the `Next` @@ -124,7 +124,7 @@ environment. In order to update the Baserow version, you simply need to replace the image tag. Navigate to the `Settings` tag of your created app, click on the `baserow-baserow` component, then click on the `Edit` button next to source, change the `Image tag` into -the desired version (latest is `2.1.4`), and click on save. The app will redeploy +the desired version (latest is `2.1.5`), and click on save. The app will redeploy with the latest version. ## External email server diff --git a/docs/installation/install-on-ubuntu.md b/docs/installation/install-on-ubuntu.md index 69e719bda7..20c644a3cd 100644 --- a/docs/installation/install-on-ubuntu.md +++ b/docs/installation/install-on-ubuntu.md @@ -34,7 +34,7 @@ docker run -e BASEROW_PUBLIC_URL=http://localhost \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ -baserow/baserow:2.1.4 +baserow/baserow:2.1.5 # Watch the logs for Baserow to come available by running: docker logs baserow ``` @@ -147,7 +147,7 @@ docker run \ -v /baserow/media:/baserow/data/media \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 # Check the logs and wait for Baserow to become available docker logs baserow ``` diff --git a/docs/installation/install-using-standalone-images.md b/docs/installation/install-using-standalone-images.md index 71caa8c0bd..0406d25b98 100644 --- a/docs/installation/install-using-standalone-images.md +++ b/docs/installation/install-using-standalone-images.md @@ -10,9 +10,9 @@ Baserow consists of a number of services, two of which are built and provided as separate standalone images by us: -* `baserow/backend:2.1.4` which by default starts the Gunicorn Django backend server +* `baserow/backend:2.1.5` which by default starts the Gunicorn Django backend server for Baserow but is also used to start the celery workers and celery beat services. -* `baserow/web-frontend:2.1.4` which is a Nuxt server providing Server Side rendering +* `baserow/web-frontend:2.1.5` which is a Nuxt server providing Server Side rendering for the website. If you want to use your own container orchestration software like Kubernetes then these @@ -27,10 +27,10 @@ in the root of our repository. These are all the services you need to set up to run a Baserow using the standalone images: -* `baserow/backend:2.1.4` (default command is `gunicorn`) -* `baserow/backend:2.1.4` with command `celery-worker` -* `baserow/backend:2.1.4` with command `celery-export-worker` -* `baserow/web-frontend:2.1.4` (default command is `nuxt-prod`) +* `baserow/backend:2.1.5` (default command is `gunicorn`) +* `baserow/backend:2.1.5` with command `celery-worker` +* `baserow/backend:2.1.5` with command `celery-export-worker` +* `baserow/web-frontend:2.1.5` (default command is `nuxt-prod`) * A postgres database * A redis server diff --git a/docs/installation/install-with-docker-compose.md b/docs/installation/install-with-docker-compose.md index abaeaf1cdc..b22a565e59 100644 --- a/docs/installation/install-with-docker-compose.md +++ b/docs/installation/install-with-docker-compose.md @@ -15,7 +15,7 @@ guide on the specifics of how to work with this image. services: baserow: container_name: baserow - image: baserow/baserow:2.1.4 + image: baserow/baserow:2.1.5 environment: BASEROW_PUBLIC_URL: 'http://localhost' ports: diff --git a/docs/installation/install-with-docker.md b/docs/installation/install-with-docker.md index fea5871d45..a5ad8b1586 100644 --- a/docs/installation/install-with-docker.md +++ b/docs/installation/install-with-docker.md @@ -29,7 +29,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable @@ -52,7 +52,7 @@ docker run \ ## Image Feature Overview -The `baserow/baserow:2.1.4` image by default runs all of Baserow's various services in +The `baserow/baserow:2.1.5` 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 @@ -200,7 +200,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Behind a reverse proxy already handling ssl @@ -213,7 +213,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### On a nonstandard HTTP port @@ -226,7 +226,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 3001:80 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external PostgresSQL server @@ -245,7 +245,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external Redis server @@ -266,7 +266,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With an external email server @@ -286,7 +286,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### With a Postgresql server running on the same host as the Baserow docker container @@ -324,7 +324,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Supply secrets using files @@ -351,7 +351,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` ### Start just the embedded database @@ -364,7 +364,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:2.1.4 \ + baserow/baserow:2.1.5 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -396,7 +396,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:2.1.4 \ + baserow/baserow:2.1.5 \ backend-cmd-with-db manage dbshell ``` @@ -519,19 +519,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.1.4 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \ 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.1.4 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \ 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.1.4 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:2.1.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -547,13 +547,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.1.4 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz + baserow/baserow:2.1.5 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.1.4 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz + baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz ``` ## Running healthchecks on Baserow @@ -604,7 +604,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.1.4 + baserow/baserow:2.1.5 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will be @@ -613,7 +613,7 @@ loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:2.1.4 +FROM baserow/baserow:2.1.5 # Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup # useful for storing your own environment variable overrides. diff --git a/docs/installation/install-with-helm.md b/docs/installation/install-with-helm.md index 0fab6a0de4..d497c55d35 100644 --- a/docs/installation/install-with-helm.md +++ b/docs/installation/install-with-helm.md @@ -133,7 +133,7 @@ You can specify a particular Baserow version by updating your `config.yaml`: ```yaml global: baserow: - image: 2.1.4 + image: 2.1.5 ``` Or specify the chart version directly: diff --git a/docs/installation/install-with-k8s.md b/docs/installation/install-with-k8s.md index 8febe3c3f4..bc533dd4ff 100644 --- a/docs/installation/install-with-k8s.md +++ b/docs/installation/install-with-k8s.md @@ -167,7 +167,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-asgi - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 workingDir: /baserow args: - "gunicorn" @@ -224,7 +224,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-wsgi - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 workingDir: /baserow args: - "gunicorn-wsgi" @@ -283,7 +283,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-worker - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 args: - "celery-worker" imagePullPolicy: Always @@ -300,7 +300,7 @@ spec: - secretRef: name: YOUR_ENV_SECRET_REF - name: backend-export-worker - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 args: - "celery-exportworker" imagePullPolicy: Always @@ -317,7 +317,7 @@ spec: - secretRef: name: YOUR_ENV_SECRET_REF - name: backend-beat-worker - image: baserow/backend:2.1.4 + image: baserow/backend:2.1.5 args: - "celery-beat" imagePullPolicy: Always @@ -358,7 +358,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: web-frontend - image: baserow/web-frontend:2.1.4 + image: baserow/web-frontend:2.1.5 args: - nuxt ports: diff --git a/docs/installation/install-with-traefik.md b/docs/installation/install-with-traefik.md index a8170b9399..90ff88a43e 100644 --- a/docs/installation/install-with-traefik.md +++ b/docs/installation/install-with-traefik.md @@ -10,7 +10,7 @@ See below for an example docker-compose file that will enable Baserow with Traef ``` services: baserow: - image: baserow/baserow:2.1.4 + image: baserow/baserow:2.1.5 container_name: baserow labels: # Explicitly tell Traefik to expose this container diff --git a/docs/installation/supported.md b/docs/installation/supported.md index c3f1fe2123..797e437787 100644 --- a/docs/installation/supported.md +++ b/docs/installation/supported.md @@ -8,7 +8,7 @@ Software versions are divided into the following groups: before the release. * `Recommended`: Recommended software for the best experience. -## Baserow 2.1.4 +## Baserow 2.1.5 | Dependency | Supported versions | Tested versions | Recommended versions | diff --git a/docs/plugins/creation.md b/docs/plugins/creation.md index 7c895e1bd7..0bb134e011 100644 --- a/docs/plugins/creation.md +++ b/docs/plugins/creation.md @@ -122,7 +122,7 @@ containing metadata about your plugin. It should have the following JSON structu { "name": "TODO", "version": "TODO", - "supported_baserow_versions": "2.1.4", + "supported_baserow_versions": "2.1.5", "plugin_api_version": "0.0.1-alpha", "description": "TODO", "author": "TODO", diff --git a/docs/plugins/installation.md b/docs/plugins/installation.md index edc24cd563..bfb8878e12 100644 --- a/docs/plugins/installation.md +++ b/docs/plugins/installation.md @@ -36,7 +36,7 @@ build your own image based off the Baserow all-in-one image. 4. Next copy the contents shown into your `Dockerfile` ```dockerfile -FROM baserow/baserow:2.1.4 +FROM baserow/baserow:2.1.5 # You can install a plugin found in a git repo: RUN /baserow/plugins/install_plugin.sh \ @@ -70,9 +70,9 @@ RUN /baserow/plugins/install_plugin.sh \ 5. Choose which of the `RUN` commands you'd like to use to install your plugins and delete the rest, replace the example URLs with ones pointing to your plugin. 6. Now build your custom Baserow with the plugin installed by running: - `docker build -t my-customized-baserow:2.1.4 .` + `docker build -t my-customized-baserow:2.1.5 .` 7. Finally, you can run your new customized image just like the normal Baserow image: - `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.1.4` + `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.1.5` ### Installing in an existing Baserow all-in-one container @@ -111,7 +111,7 @@ docker run \ -v baserow_data:/baserow/data \ # ... All your normal launch args go here -e BASEROW_PLUGIN_GIT_REPOS=https://example.com/example/plugin1.git,https://example.com/example/plugin2.git - baserow:2.1.4 + baserow:2.1.5 ``` These variables will only trigger and installation when found on startup of the @@ -120,7 +120,7 @@ container. To uninstall a plugin you must still manually follow the instructions ### Caveats when installing into an existing container If you ever delete the container you've installed plugins into at runtime and re-create -it, the new container is created from the `baserow/baserow:2.1.4` image which does not +it, the new container is created from the `baserow/baserow:2.1.5` image which does not have any plugins installed. However, when a plugin is installed at runtime or build time it is stored in the @@ -135,7 +135,7 @@ scratch. ### Installing into standalone Baserow service images -Baserow also provides `baserow/backend:2.1.4` and `baserow/web-frontend:2.1.4` images +Baserow also provides `baserow/backend:2.1.5` and `baserow/web-frontend:2.1.5` images which only run the respective backend/celery/web-frontend services. These images are used for more advanced self-hosted deployments like a multi-service docker-compose, k8s etc. @@ -145,8 +145,8 @@ used with docker run and a specified command and the plugin env vars shown above example: ``` -docker run --rm baserow/backend:2.1.4 install-plugin ... -docker run -e BASEROW_PLUGIN_GIT_REPOS=https://example.com/example/plugin1.git,https://example.com/example/plugin2.git --rm baserow/backend:2.1.4 +docker run --rm baserow/backend:2.1.5 install-plugin ... +docker run -e BASEROW_PLUGIN_GIT_REPOS=https://example.com/example/plugin1.git,https://example.com/example/plugin2.git --rm baserow/backend:2.1.5 ``` You can use these scripts exactly as you would in the sections above to install a plugin @@ -169,13 +169,13 @@ associated data permanently. [Docker install guide backup section](../installation/install-with-docker.md) for more details on how to do this. 2. Stop your Baserow server first - `docker stop baserow` -3. `docker run --rm -v baserow_data:/baserow/data baserow:2.1.4 uninstall-plugin plugin_name` +3. `docker run --rm -v baserow_data:/baserow/data baserow:2.1.5 uninstall-plugin plugin_name` 4. Now the plugin has uninstalled itself and all associated data has been removed. 5. Edit your custom `Dockerfile` and remove the plugin. -6. Rebuild your image - `docker build -t my-customized-baserow:2.1.4 .` +6. Rebuild your image - `docker build -t my-customized-baserow:2.1.5 .` 7. Remove the old container using the old image - `docker rm baserow` 8. Run your new image with the plugin removed - - `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.1.4` + - `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.1.5` 9. If you fail to do this if you ever recreate the container, your custom image still has the plugin installed and the new container will start up again with the plugin re-installed. @@ -207,7 +207,7 @@ associated data permanently. restart as the environment variable will still contain the old plugin. To do this you must: 1. `docker stop baserow` - 2. `docker run --rm -v baserow_data:/baserow/data baserow:2.1.4 uninstall-plugin plugin_name` + 2. `docker run --rm -v baserow_data:/baserow/data baserow:2.1.5 uninstall-plugin plugin_name` 3. Now the plugin has uninstalled itself and all associated data has been removed. 4. Finally, recreate your Baserow container by using the same `docker run` command you launched it with, just make sure the plugin you uninstalled has been removed @@ -222,7 +222,7 @@ check what plugins are currently installed. docker run \ --rm \ -v baserow_data:/baserow/data \ - baserow:2.1.4 list-plugins + baserow:2.1.5 list-plugins # or on a running container diff --git a/enterprise/backend/pyproject.toml b/enterprise/backend/pyproject.toml index a01a348fee..b1b459bdc2 100644 --- a/enterprise/backend/pyproject.toml +++ b/enterprise/backend/pyproject.toml @@ -12,7 +12,7 @@ description = """Baserow is an open source no-code database tool and Airtable \ # mixed license license = { file = "../LICENSE" } requires-python = "==3.14.*" -version = "2.1.4" +version = "2.1.5" classifiers = [] [project.urls] diff --git a/heroku.Dockerfile b/heroku.Dockerfile index f7173d1ea0..fce1b5adab 100644 --- a/heroku.Dockerfile +++ b/heroku.Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.1.4 +ARG FROM_IMAGE=baserow/baserow:2.1.5 # This is pinned as version pinning is done by the CI setting FROM_IMAGE. # hadolint ignore=DL3006 FROM $FROM_IMAGE AS image_base diff --git a/premium/backend/pyproject.toml b/premium/backend/pyproject.toml index f25e72ec73..34e0109902 100644 --- a/premium/backend/pyproject.toml +++ b/premium/backend/pyproject.toml @@ -12,7 +12,7 @@ description = """Baserow is an open source no-code database tool and Airtable \ # mixed license license = { file = "../LICENSE" } requires-python = "==3.14.*" -version = "2.1.4" +version = "2.1.5" classifiers = [] [project.urls] diff --git a/web-frontend/docker/docker-entrypoint.sh b/web-frontend/docker/docker-entrypoint.sh index 4dc4439d9f..b4f4a43aae 100755 --- a/web-frontend/docker/docker-entrypoint.sh +++ b/web-frontend/docker/docker-entrypoint.sh @@ -2,7 +2,7 @@ # Bash strict mode: http://redsymbol.net/articles/unofficial-bash-strict-mode/ set -euo pipefail -export BASEROW_VERSION="2.1.4" +export BASEROW_VERSION="2.1.5" BASEROW_WEBFRONTEND_PORT="${BASEROW_WEBFRONTEND_PORT:-3000}" show_help() { diff --git a/web-frontend/package.json b/web-frontend/package.json index 50db503680..cb05dcf01f 100644 --- a/web-frontend/package.json +++ b/web-frontend/package.json @@ -1,6 +1,6 @@ { "name": "baserow", - "version": "2.1.4", + "version": "2.1.5", "private": true, "type": "module", "scripts": {