diff --git a/README.md b/README.md index ce7590f746..463a0b6b1d 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.0.5 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.6 ``` ![Baserow database screenshot](docs/assets/screenshot.png "Baserow database screenshot") @@ -116,7 +116,7 @@ Created by Baserow B.V. - bram@baserow.io. Distributes under the MIT license. See `LICENSE` for more information. -Version: 2.0.5 +Version: 2.0.6 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 c71486447e..f6eb813c16 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.0.5" +export BASEROW_VERSION="2.0.6" # 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 f1839cf07b..4b35533444 100644 --- a/backend/src/baserow/config/settings/base.py +++ b/backend/src/baserow/config/settings/base.py @@ -456,7 +456,7 @@ "name": "MIT", "url": "https://github.com/baserow/baserow/blob/develop/LICENSE", }, - "VERSION": "2.0.5", + "VERSION": "2.0.6", "SERVE_INCLUDE_SCHEMA": False, "TAGS": [ {"name": "Settings"}, diff --git a/backend/src/baserow/contrib/database/db/schema.py b/backend/src/baserow/contrib/database/db/schema.py index 356249aec9..5cabfb4726 100644 --- a/backend/src/baserow/contrib/database/db/schema.py +++ b/backend/src/baserow/contrib/database/db/schema.py @@ -355,6 +355,41 @@ def delete_model(self, model): ): self.deferred_sql.remove(sql) + def ensure_single_column_index(self, model, field): + """ + Ensure an index exists on model(field.column). Safe to call repeatedly. + """ + + # If any index/constraint exists that is backed by an index on exactly this + # column, don't create another. + if self._constraint_names(model, [field.column], index=True): + return + + stmt = self._create_index_sql(model, fields=[field]) + self.execute(stmt, params=None) + + def ensure_m2m_field_indexes(self, field): + if field.many_to_many and field.remote_field.through._meta.auto_created: + through = field.remote_field.through + # Ensure the two FK indexes exist (especially important for the "reverse" + # FK). m2m_field_name() / m2m_reverse_field_name() return the + # through-field names. + for through_field_name in ( + field.m2m_field_name(), + field.m2m_reverse_field_name(), + ): + fk_field = through._meta.get_field(through_field_name) + self.ensure_single_column_index(through, fk_field) + + def add_field(self, model, field): + return_value = super().add_field(model, field) + # Using the `create_model` to create a Baserow table, like what we do on + # `import_serialize` does actually create the indexes of the through table. + # However, when using `add_field` it does not. The code below will make sure + # that the needed indexes are created. + self.ensure_m2m_field_indexes(field) + return return_value + @contextlib.contextmanager def safe_django_schema_editor(atomic=True, name=None, classes=None, **kwargs): diff --git a/backend/src/baserow/contrib/database/migrations/0202_table_missing_m2m_indexes_added.py b/backend/src/baserow/contrib/database/migrations/0202_table_missing_m2m_indexes_added.py new file mode 100644 index 0000000000..5aeca30dff --- /dev/null +++ b/backend/src/baserow/contrib/database/migrations/0202_table_missing_m2m_indexes_added.py @@ -0,0 +1,21 @@ +# Generated by Django 5.0.14 on 2025-12-19 21:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("database", "0201_increase_pendingsearchvalueupdate_statistics"), + ] + + operations = [ + migrations.AddField( + model_name="table", + name="missing_m2m_indexes_added", + field=models.BooleanField( + db_default=False, + default=True, + help_text="Indicates whether potentially missing m2m foreign key indexes have been added.", + ), + ), + ] diff --git a/backend/src/baserow/contrib/database/table/models.py b/backend/src/baserow/contrib/database/table/models.py index 0f086d2677..6ccd82c0ad 100644 --- a/backend/src/baserow/contrib/database/table/models.py +++ b/backend/src/baserow/contrib/database/table/models.py @@ -889,6 +889,20 @@ class Table( null=True, help_text="Indicates whether the table has had the field_rules_are_valid column added.", ) + # The m2m indexes of the foreign keys were not added before because the + # `schema_editor.add_field` does not add them. The `schema_editor.create_model` + # does add those. This problem has been addressed, but there are tables out there + # without those indexes. + missing_m2m_indexes_added = models.BooleanField( + # The `db_default` must be false because this is used when an entry is created + # no default value is set. This is what happens when the field index changes + # are not yet deployed, so index does not exist. + db_default=False, + # However, if the field index changes are deployed, this default value is used, + # and in that case, the index has been applied. + default=True, + help_text="Indicates whether potentially missing m2m foreign key indexes have been added.", + ) class Meta: ordering = ("order",) diff --git a/backend/src/baserow/contrib/database/table/tasks.py b/backend/src/baserow/contrib/database/table/tasks.py index 7e18cd3ca8..81274b336b 100644 --- a/backend/src/baserow/contrib/database/table/tasks.py +++ b/backend/src/baserow/contrib/database/table/tasks.py @@ -127,6 +127,25 @@ def setup_created_by_and_last_modified_by_column(self, table_id: int): TableHandler().create_created_by_and_last_modified_by_fields(table) +@app.task(bind=True, queue="export") +def setup_m2m_field_indexes_if_not_exist(self, table_id: int): + from baserow.contrib.database.db.schema import safe_django_schema_editor + from baserow.contrib.database.table.handler import TableHandler + + with transaction.atomic(): + table = TableHandler().get_table_for_update(table_id) + model = table.get_model() + fields = model.get_fields() + + with safe_django_schema_editor(atomic=False) as schema_editor: + for field in fields: + model_field = model._meta.get_field(field.db_column) + schema_editor.ensure_m2m_field_indexes(model_field) + + table.missing_m2m_indexes_added = True + table.save(update_fields=["missing_m2m_indexes_added"]) + + @app.task(bind=True) def update_table_usage(self, table_id: int, row_count: int = 0): from baserow.contrib.database.table.handler import TableUsageHandler diff --git a/backend/src/baserow/contrib/database/views/signals.py b/backend/src/baserow/contrib/database/views/signals.py index 067d9a1fef..48e276825e 100644 --- a/backend/src/baserow/contrib/database/views/signals.py +++ b/backend/src/baserow/contrib/database/views/signals.py @@ -80,6 +80,7 @@ def update_view_index_if_view_group_by_changes(sender, view_group_by, **kwargs): def view_loaded_create_indexes_and_columns(sender, view, table_model, **kwargs): from baserow.contrib.database.table.tasks import ( setup_created_by_and_last_modified_by_column, + setup_m2m_field_indexes_if_not_exist, ) from baserow.contrib.database.views.handler import ViewIndexingHandler @@ -88,6 +89,8 @@ def view_loaded_create_indexes_and_columns(sender, view, table_model, **kwargs): table = view.table if not table.last_modified_by_column_added or not table.created_by_column_added: setup_created_by_and_last_modified_by_column.delay(table_id=view.table.id) + if not table.missing_m2m_indexes_added: + setup_m2m_field_indexes_if_not_exist.delay(table_id=view.table_id) @receiver(field_signals.fields_type_changed) diff --git a/backend/src/baserow/contrib/integrations/core/service_types.py b/backend/src/baserow/contrib/integrations/core/service_types.py index c70af2bd99..837f271ace 100644 --- a/backend/src/baserow/contrib/integrations/core/service_types.py +++ b/backend/src/baserow/contrib/integrations/core/service_types.py @@ -988,7 +988,7 @@ def formulas_to_resolve(self, service: CoreRouterService) -> list[FormulaToResol FormulaToResolve( f"edge_{edge.uid}", edge.condition, - lambda x: ensure_boolean(x, True), + lambda x: ensure_boolean(x, False), f'edge "{edge.label}" condition', ) for edge in service.edges.all() diff --git a/backend/src/baserow/version.py b/backend/src/baserow/version.py index 664cb5f407..7a478940c9 100644 --- a/backend/src/baserow/version.py +++ b/backend/src/baserow/version.py @@ -1 +1 @@ -VERSION = "2.0.5" +VERSION = "2.0.6" diff --git a/backend/tests/baserow/contrib/integrations/core/test_core_router_service_type.py b/backend/tests/baserow/contrib/integrations/core/test_core_router_service_type.py index 388cf4129b..af11fa98f7 100644 --- a/backend/tests/baserow/contrib/integrations/core/test_core_router_service_type.py +++ b/backend/tests/baserow/contrib/integrations/core/test_core_router_service_type.py @@ -47,13 +47,22 @@ def test_update_core_router_service(data_fixture): @pytest.mark.django_db -def test_core_router_service_type_dispatch_data_with_a_truthful_edge(data_fixture): +@pytest.mark.parametrize( + "truthful_condition", + [1, [1], True, "yes"], +) +def test_core_router_service_type_dispatch_data_with_a_truthful_edge( + data_fixture, truthful_condition +): service = data_fixture.create_core_router_service() data_fixture.create_core_router_service_edge( service=service, label="Edge 1", condition="'false'", skip_output_node=True ) edge2 = data_fixture.create_core_router_service_edge( - service=service, label="Edge 2", condition="'true'", skip_output_node=True + service=service, + label="Edge 2", + condition=f"'{truthful_condition}'", + skip_output_node=True, ) service_type = service.get_type() diff --git a/changelog.md b/changelog.md index 67b5262678..6803bdde8d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,17 @@ # Changelog +## Released 2.0.6 + +### New features +* [Core] Added more advanced formulas. [#4318](https://github.com/baserow/baserow/-/issues/4318) +* [Core] Allow array properties to be selected in the formula context when expert mode is selected. [#4485](https://github.com/baserow/baserow/-/issues/4485) + +### Bug fixes +* [Builder] Resolve an issue with styling button fields in table elements. [#4494](https://github.com/baserow/baserow/-/issues/4494) +* [Database] Ensure m2m field indexes are all set. +* [Database] Prevent creating a new constraint when the enter key of the default value is pressed. + + ## Released 2.0.5 ### Bug fixes diff --git a/changelog/entries/2.0.6/bug/4494_resolve_an_issue_with_styling_button_fields_in_table_element.json b/changelog/entries/2.0.6/bug/4494_resolve_an_issue_with_styling_button_fields_in_table_element.json new file mode 100644 index 0000000000..dbd9d2eee8 --- /dev/null +++ b/changelog/entries/2.0.6/bug/4494_resolve_an_issue_with_styling_button_fields_in_table_element.json @@ -0,0 +1,9 @@ +{ + "type": "bug", + "message": "Resolve an issue with styling button fields in table elements.", + "issue_origin": "github", + "issue_number": 4494, + "domain": "builder", + "bullet_points": [], + "created_at": "2025-12-22" +} \ No newline at end of file diff --git a/changelog/entries/2.0.6/bug/ensure_m2m_indexes_are_set.json b/changelog/entries/2.0.6/bug/ensure_m2m_indexes_are_set.json new file mode 100644 index 0000000000..550b04766c --- /dev/null +++ b/changelog/entries/2.0.6/bug/ensure_m2m_indexes_are_set.json @@ -0,0 +1,9 @@ +{ + "type": "bug", + "message": "Ensure m2m field indexes are all set.", + "issue_origin": "github", + "issue_number": null, + "domain": "database", + "bullet_points": [], + "created_at": "2025-12-19" +} diff --git a/changelog/entries/2.0.6/bug/present_constraint_create_on_form_submit_event.json b/changelog/entries/2.0.6/bug/present_constraint_create_on_form_submit_event.json new file mode 100644 index 0000000000..3df479e2e1 --- /dev/null +++ b/changelog/entries/2.0.6/bug/present_constraint_create_on_form_submit_event.json @@ -0,0 +1,9 @@ +{ + "type": "bug", + "message": "Prevent creating a new constraint when the enter key of the default value is pressed.", + "issue_origin": "github", + "issue_number": null, + "domain": "database", + "bullet_points": [], + "created_at": "2025-12-22" +} diff --git a/changelog/entries/unreleased/feature/4318_added_more_advanced_formulas.json b/changelog/entries/2.0.6/feature/4318_added_more_advanced_formulas.json similarity index 100% rename from changelog/entries/unreleased/feature/4318_added_more_advanced_formulas.json rename to changelog/entries/2.0.6/feature/4318_added_more_advanced_formulas.json diff --git a/changelog/entries/2.0.6/feature/4485_allow_array_properties_to_be_selected_in_the_formula_context.json b/changelog/entries/2.0.6/feature/4485_allow_array_properties_to_be_selected_in_the_formula_context.json new file mode 100644 index 0000000000..ee077922f3 --- /dev/null +++ b/changelog/entries/2.0.6/feature/4485_allow_array_properties_to_be_selected_in_the_formula_context.json @@ -0,0 +1,9 @@ +{ + "type": "feature", + "message": "Allow array properties to be selected in the formula context when expert mode is selected.", + "issue_origin": "github", + "issue_number": 4485, + "domain": "core", + "bullet_points": [], + "created_at": "2025-12-19" +} \ No newline at end of file diff --git a/changelog/releases.json b/changelog/releases.json index a148dfdcb7..30b2721c57 100644 --- a/changelog/releases.json +++ b/changelog/releases.json @@ -1,5 +1,9 @@ { "releases": [ + { + "name": "2.0.6", + "created_at": "2025-12-22" + }, { "name": "2.0.5", "created_at": "2025-12-17" diff --git a/deploy/all-in-one/README.md b/deploy/all-in-one/README.md index c2d8b1d7a9..d42352b921 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.0.5 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.6 ``` ## Quick Reference @@ -52,7 +52,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` * 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.0.5` image by default runs all of Baserow's various services in +The `baserow/baserow:2.0.6` 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.0.5 + baserow/baserow:2.0.6 ``` ### 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.0.5 + baserow/baserow:2.0.6 ``` ### 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.0.5 + baserow/baserow:2.0.6 ``` ### With an external PostgresSQL server @@ -268,7 +268,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With an external Redis server @@ -287,7 +287,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With an external email server @@ -307,7 +307,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With a Postgresql server running on the same host as the Baserow docker container @@ -345,7 +345,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### Supply secrets using files @@ -372,7 +372,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### Start just the embedded database @@ -385,7 +385,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:2.0.5 \ + baserow/baserow:2.0.6 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -417,7 +417,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:2.0.5 \ + baserow/baserow:2.0.6 \ backend-cmd-with-db manage dbshell ``` @@ -540,19 +540,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.0.5 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.6 \ 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.0.5 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.6 \ 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.0.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:2.0.6 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -568,13 +568,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.0.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz + baserow/baserow:2.0.6 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.0.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz + baserow/baserow:2.0.6 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz ``` ## Running healthchecks on Baserow @@ -625,7 +625,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will be @@ -634,7 +634,7 @@ loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:2.0.5 +FROM baserow/baserow:2.0.6 # 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 3a4b564876..29e94581a5 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.0.5 +Version 2.0.6 ========================================================================================= EOF diff --git a/deploy/cloudron/CloudronManifest.json b/deploy/cloudron/CloudronManifest.json index 841666eb48..adf626b1ad 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.0.5", + "version": "2.0.6", "healthCheckPath": "/api/_health/", "httpPort": 80, "addons": { diff --git a/deploy/cloudron/Dockerfile b/deploy/cloudron/Dockerfile index c94b1babcb..c91b55f484 100644 --- a/deploy/cloudron/Dockerfile +++ b/deploy/cloudron/Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.0.5 +ARG FROM_IMAGE=baserow/baserow:2.0.6 # 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 de1667f45b..06d9909cd7 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.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - name: baserow repository: file://charts/baserow-common - version: 1.0.41 + version: 1.0.42 - 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:1c2cc3e9a07c334a39321b7fef56afd33b960a589272f3d65104ee7eccac0c4b -generated: "2025-12-17T15:57:49.033685+01:00" +digest: sha256:9c973270140fc6fdb429502f70216ed94665e59a0538bf49116eadae6baef0c8 +generated: "2025-12-22T13:25:16.919134+01:00" diff --git a/deploy/helm/baserow/Chart.yaml b/deploy/helm/baserow/Chart.yaml index fa9566909c..9196337067 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.41 -appVersion: "2.0.5" +version: 1.0.42 +appVersion: "2.0.6" 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.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-backend-wsgi - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-frontend - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-beat-worker - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-export-worker - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-worker - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" - name: baserow alias: baserow-celery-flower - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" condition: baserow-celery-flower.enabled - name: baserow alias: baserow-embeddings - version: "1.0.41" + version: "1.0.42" repository: "file://charts/baserow-common" condition: baserow-embeddings.enabled diff --git a/deploy/helm/baserow/README.md b/deploy/helm/baserow/README.md index 66c9cbbc97..4960a56a26 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.0.5` | +| `global.baserow.image.tag` | Global Docker image tag | `2.0.6` | | `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 8561d66245..d4eea465db 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.41 +version: 1.0.42 # 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.0.5" +appVersion: "2.0.6" diff --git a/deploy/helm/baserow/charts/baserow-common/README.md b/deploy/helm/baserow/charts/baserow-common/README.md index 88e8233121..242fcdb4e6 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.0.5` | +| `global.baserow.image.tag` | Global Docker image tag | `2.0.6` | | `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 cc497fdc5c..d019abad70 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.0.5 + tag: 2.0.6 imagePullSecrets: [] serviceAccount: shared: true @@ -83,7 +83,7 @@ global: ## image: repository: baserow/baserow # Docker image repository - tag: 2.0.5 # Docker image tag + tag: 2.0.6 # 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 7d126c7679..b8886ea7fa 100644 --- a/deploy/helm/baserow/values.yaml +++ b/deploy/helm/baserow/values.yaml @@ -43,7 +43,7 @@ global: baserow: imageRegistry: baserow image: - tag: 2.0.5 + tag: 2.0.6 imagePullSecrets: [] serviceAccount: shared: true diff --git a/deploy/render/Dockerfile b/deploy/render/Dockerfile index b8713cdc11..929b149523 100644 --- a/deploy/render/Dockerfile +++ b/deploy/render/Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.0.5 +ARG FROM_IMAGE=baserow/baserow:2.0.6 # 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 dfa58ef7c9..042487e7b9 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:2.0.5 + image: baserow/baserow:2.0.6 environment: BASEROW_PUBLIC_URL: 'http://localhost' ports: diff --git a/docker-compose.no-caddy.yml b/docker-compose.no-caddy.yml index eeaf73fd74..21bf7407e4 100644 --- a/docker-compose.no-caddy.yml +++ b/docker-compose.no-caddy.yml @@ -190,7 +190,7 @@ x-backend-variables: services: backend: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped ports: - "${HOST_PUBLISH_IP:-127.0.0.1}:8000:8000" @@ -205,7 +205,7 @@ services: local: web-frontend: - image: baserow/web-frontend:2.0.5 + image: baserow/web-frontend:2.0.6 restart: unless-stopped ports: - "${HOST_PUBLISH_IP:-127.0.0.1}:3000:3000" @@ -247,7 +247,7 @@ services: local: celery: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped environment: <<: *backend-variables @@ -268,7 +268,7 @@ services: local: celery-export-worker: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped command: celery-exportworker environment: @@ -289,7 +289,7 @@ services: local: celery-beat-worker: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped command: celery-beat environment: diff --git a/docker-compose.yml b/docker-compose.yml index ee6bb0a00d..c677c90d38 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -266,7 +266,7 @@ services: local: backend: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped environment: @@ -280,7 +280,7 @@ services: local: web-frontend: - image: baserow/web-frontend:2.0.5 + image: baserow/web-frontend:2.0.6 restart: unless-stopped environment: BASEROW_PUBLIC_URL: ${BASEROW_PUBLIC_URL-http://localhost} @@ -326,7 +326,7 @@ services: local: celery: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped environment: <<: *backend-variables @@ -347,7 +347,7 @@ services: local: celery-export-worker: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped command: celery-exportworker environment: @@ -368,7 +368,7 @@ services: local: celery-beat-worker: - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 restart: unless-stopped command: celery-beat environment: diff --git a/docs/installation/install-behind-apache.md b/docs/installation/install-behind-apache.md index 929878a34f..fc28d01c43 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.0.5` image or the example +We strongly recommend you use our `baserow/baserow:2.0.6` 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.0.5` - and `baserow/web-frontend:2.0.5` images. +> * Your own container setup with our single service `baserow/backend:2.0.6` + and `baserow/web-frontend:2.0.6` 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.0.5` +* The all-in-one Baserow image `baserow/baserow:2.0.6` * Any of the example compose files found in the root of our git repository `docker-compose.yml`/`docker-compose.local-build.yml` /`docker-compose.all-in-one.yml` @@ -116,7 +116,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.0.5` and `baserow/web-frontend:2.0.5` images with +* Our standalone `baserow/backend:2.0.6` and `baserow/web-frontend:2.0.6` images with your own container orchestrator. * Or the `docker-compose.no-caddy.yml` example docker compose file in the root of our git repository. @@ -148,7 +148,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.0.5` image then you can do this by adding +If you are using the `baserow/backend:2.0.6` 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 3bcf978f77..b24c86267b 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.0.5` image or the example +We strongly recommend you use our `baserow/baserow:2.0.6` 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.0.5` - and `baserow/web-frontend:2.0.5` images. +> * Your own container setup with our single service `baserow/backend:2.0.6` + and `baserow/web-frontend:2.0.6` 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.0.5` +* The all-in-one Baserow image `baserow/baserow:2.0.6` * Any of the example compose files found in the root of our git repository `docker-compose.yml`/`docker-compose.local-build.yml` /`docker-compose.all-in-one.yml` @@ -108,7 +108,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.0.5` and `baserow/web-frontend:2.0.5` images with +* Our standalone `baserow/backend:2.0.6` and `baserow/web-frontend:2.0.6` images with your own container orchestrator. * Or the `docker-compose.no-caddy.yml` example docker compose file in the root of our git repository. @@ -127,7 +127,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.0.5` image then you can do this by adding +If you are using the `baserow/backend:2.0.6` 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 277ef1190e..35ca0f7ce5 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.0.5` image runs all of Baserow’s various services inside the +The `baserow/baserow:2.0.6` 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.0.5`. + requests to any horizontally scaled container running `baserow/baserow:2.0.6`. #### 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.0.5` containers horizontally you + * For example if you deploy 10 `baserow/baserow:2.0.6` 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.0.5` container +When setting up the health check for the ALB the `baserow/baserow:2.0.6` 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.0.5` containers. See below for a +Now we are ready to spin up our `baserow/baserow:2.0.6` 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.0.5` image. +1. Select the `baserow/baserow:2.0.6` 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.0.5` +1. Use the `baserow/backend:2.0.6` 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.0.5` image with `celery-worker` as the image command. +1. Use the `baserow/backend:2.0.6` 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.0.5` image. +1. Use the `baserow/backend:2.0.6` 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.0.5` image. +1. Use the `baserow/backend:2.0.6` 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.0.5` image with no arguments needed. +1. Use the `baserow/web-frontend:2.0.6` 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 df9633e303..098addbd52 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.0.5 +$ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:2.0.6 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.0.5 +cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:2.0.6 ``` > 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 65aeaa8015..4ff30ad559 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.0.5` +Image tag or digest: `2.0.6` 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.0.5`), and click on save. The app will redeploy +the desired version (latest is `2.0.6`), 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 e53057df40..7894ac2f4d 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.0.5 +baserow/baserow:2.0.6 # 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.0.5 + baserow/baserow:2.0.6 # 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 7680379ccc..d962bc3deb 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.0.5` which by default starts the Gunicorn Django backend server +* `baserow/backend:2.0.6` 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.0.5` which is a Nuxt server providing Server Side rendering +* `baserow/web-frontend:2.0.6` 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.0.5` (default command is `gunicorn`) -* `baserow/backend:2.0.5` with command `celery-worker` -* `baserow/backend:2.0.5` with command `celery-export-worker` -* `baserow/web-frontend:2.0.5` (default command is `nuxt-local`) +* `baserow/backend:2.0.6` (default command is `gunicorn`) +* `baserow/backend:2.0.6` with command `celery-worker` +* `baserow/backend:2.0.6` with command `celery-export-worker` +* `baserow/web-frontend:2.0.6` (default command is `nuxt-local`) * 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 a3e47abbd1..2c364d222c 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.0.5 + image: baserow/baserow:2.0.6 environment: BASEROW_PUBLIC_URL: 'http://localhost' ports: diff --git a/docs/installation/install-with-docker.md b/docs/installation/install-with-docker.md index acd58f6e6b..35bbaba7c4 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.0.5 + baserow/baserow:2.0.6 ``` * 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.0.5` image by default runs all of Baserow's various services in +The `baserow/baserow:2.0.6` 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.0.5 + baserow/baserow:2.0.6 ``` ### 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.0.5 + baserow/baserow:2.0.6 ``` ### 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.0.5 + baserow/baserow:2.0.6 ``` ### With an external PostgresSQL server @@ -245,7 +245,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With an external Redis server @@ -264,7 +264,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With an external email server @@ -284,7 +284,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### With a Postgresql server running on the same host as the Baserow docker container @@ -322,7 +322,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### Supply secrets using files @@ -349,7 +349,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` ### Start just the embedded database @@ -362,7 +362,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:2.0.5 \ + baserow/baserow:2.0.6 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -394,7 +394,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:2.0.5 \ + baserow/baserow:2.0.6 \ backend-cmd-with-db manage dbshell ``` @@ -517,19 +517,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.0.5 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.6 \ 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.0.5 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.6 \ 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.0.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:2.0.6 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -545,13 +545,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.0.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz + baserow/baserow:2.0.6 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.0.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz + baserow/baserow:2.0.6 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz ``` ## Running healthchecks on Baserow @@ -602,7 +602,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:2.0.5 + baserow/baserow:2.0.6 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will be @@ -611,7 +611,7 @@ loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:2.0.5 +FROM baserow/baserow:2.0.6 # 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 5c3527e5cb..a526b92201 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.0.5 + image: 2.0.6 ``` Or specify the chart version directly: diff --git a/docs/installation/install-with-k8s.md b/docs/installation/install-with-k8s.md index 5deba987e2..a0d0de2612 100644 --- a/docs/installation/install-with-k8s.md +++ b/docs/installation/install-with-k8s.md @@ -165,7 +165,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-asgi - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 workingDir: /baserow args: - "gunicorn" @@ -222,7 +222,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-wsgi - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 workingDir: /baserow args: - "gunicorn-wsgi" @@ -281,7 +281,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: backend-worker - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 args: - "celery-worker" imagePullPolicy: Always @@ -298,7 +298,7 @@ spec: - secretRef: name: YOUR_ENV_SECRET_REF - name: backend-export-worker - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 args: - "celery-exportworker" imagePullPolicy: Always @@ -315,7 +315,7 @@ spec: - secretRef: name: YOUR_ENV_SECRET_REF - name: backend-beat-worker - image: baserow/backend:2.0.5 + image: baserow/backend:2.0.6 args: - "celery-beat" imagePullPolicy: Always @@ -356,7 +356,7 @@ spec: topologyKey: "kubernetes.io/hostname" containers: - name: web-frontend - image: baserow/web-frontend:2.0.5 + image: baserow/web-frontend:2.0.6 args: - nuxt ports: diff --git a/docs/installation/install-with-traefik.md b/docs/installation/install-with-traefik.md index 7d8395f76f..a8715c909e 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.0.5 + image: baserow/baserow:2.0.6 container_name: baserow labels: # Explicitly tell Traefik to expose this container diff --git a/docs/installation/supported.md b/docs/installation/supported.md index b20c629ad5..773196e729 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.0.5 +## Baserow 2.0.6 | Dependency | Supported versions | Tested versions | Recommended versions | diff --git a/docs/plugins/creation.md b/docs/plugins/creation.md index 7343433744..262e33dc11 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.0.5", + "supported_baserow_versions": "2.0.6", "plugin_api_version": "0.0.1-alpha", "description": "TODO", "author": "TODO", diff --git a/docs/plugins/installation.md b/docs/plugins/installation.md index 75c25cd0c9..4fca36982d 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.0.5 +FROM baserow/baserow:2.0.6 # 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.0.5 .` + `docker build -t my-customized-baserow:2.0.6 .` 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.0.5` + `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.0.6` ### 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.0.5 + baserow:2.0.6 ``` 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.0.5` image which does not +it, the new container is created from the `baserow/baserow:2.0.6` 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.0.5` and `baserow/web-frontend:2.0.5` images +Baserow also provides `baserow/backend:2.0.6` and `baserow/web-frontend:2.0.6` 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.0.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.0.5 +docker run --rm baserow/backend:2.0.6 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.0.6 ``` 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.0.5 uninstall-plugin plugin_name` +3. `docker run --rm -v baserow_data:/baserow/data baserow:2.0.6 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.0.5 .` +6. Rebuild your image - `docker build -t my-customized-baserow:2.0.6 .` 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.0.5` + - `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:2.0.6` 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.0.5 uninstall-plugin plugin_name` + 2. `docker run --rm -v baserow_data:/baserow/data baserow:2.0.6 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.0.5 list-plugins + baserow:2.0.6 list-plugins # or on a running container diff --git a/enterprise/backend/pyproject.toml b/enterprise/backend/pyproject.toml index fb964b570d..7cd5088a78 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.11" -version = "2.0.5" +version = "2.0.6" classifiers = [] [project.urls] diff --git a/heroku.Dockerfile b/heroku.Dockerfile index bfd42d6c9c..118ed77bd7 100644 --- a/heroku.Dockerfile +++ b/heroku.Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:2.0.5 +ARG FROM_IMAGE=baserow/baserow:2.0.6 # 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/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile index 2aacc9f2f9..dc73e55aa2 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile @@ -1,4 +1,4 @@ -FROM baserow/baserow:2.0.5 +FROM baserow/baserow:2.0.6 COPY ./plugins/{{ cookiecutter.project_module }}/ /baserow/plugins/{{ cookiecutter.project_module }}/ RUN /baserow/plugins/install_plugin.sh --folder /baserow/plugins/{{ cookiecutter.project_module }} diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend-dev.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend-dev.Dockerfile index 2a918f7de4..ecda845786 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend-dev.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend-dev.Dockerfile @@ -1,7 +1,7 @@ # This a dev image for testing your plugin when installed into the Baserow backend image -FROM baserow/backend:2.0.5 as base +FROM baserow/backend:2.0.6 as base -FROM baserow/backend:2.0.5 +FROM baserow/backend:2.0.6 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile index 4c0c4e9835..a2f66a377f 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile @@ -1,4 +1,4 @@ -FROM baserow/backend:2.0.5 +FROM baserow/backend:2.0.6 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile index ee571a753c..6b5a9fb540 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile @@ -1,7 +1,7 @@ # This a dev image for testing your plugin when installed into the Baserow all-in-one image -FROM baserow/baserow:2.0.5 as base +FROM baserow/baserow:2.0.6 as base -FROM baserow/baserow:2.0.5 +FROM baserow/baserow:2.0.6 ARG PLUGIN_BUILD_UID ENV PLUGIN_BUILD_UID=${PLUGIN_BUILD_UID:-9999} diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/baserow_plugin_info.json b/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/baserow_plugin_info.json index 2586922373..44f2eba1c4 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/baserow_plugin_info.json +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/baserow_plugin_info.json @@ -1,7 +1,7 @@ { "name": "{{ cookiecutter.project_name }}", "version": "0.0.1", - "supported_baserow_versions": "2.0.5", + "supported_baserow_versions": "2.0.6", "plugin_api_version": "0.0.1-alpha", "description": "TODO", "author": "TODO", diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile index b27ee293c7..86bc2d392c 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile @@ -1,6 +1,6 @@ # This a dev image for testing your plugin when installed into the Baserow web-frontend image -FROM baserow/web-frontend:2.0.5 as base -FROM baserow/web-frontend:2.0.5 +FROM baserow/web-frontend:2.0.6 as base +FROM baserow/web-frontend:2.0.6 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile index 807842727d..33036deb85 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile @@ -1,4 +1,4 @@ -FROM baserow/web-frontend:2.0.5 +FROM baserow/web-frontend:2.0.6 USER root diff --git a/premium/backend/pyproject.toml b/premium/backend/pyproject.toml index 89ee2b7d58..9b35039e47 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.11" -version = "2.0.5" +version = "2.0.6" classifiers = [] [project.urls] diff --git a/web-frontend/docker/docker-entrypoint.sh b/web-frontend/docker/docker-entrypoint.sh index 16e5f80f91..71c73b25b7 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.0.5" +export BASEROW_VERSION="2.0.6" BASEROW_WEBFRONTEND_PORT="${BASEROW_WEBFRONTEND_PORT:-3000}" show_help() { diff --git a/web-frontend/locales/en.json b/web-frontend/locales/en.json index 77e5c1b697..85d838cff9 100644 --- a/web-frontend/locales/en.json +++ b/web-frontend/locales/en.json @@ -606,7 +606,6 @@ "absDescription": "Returns the absolute value for the argument number provided.", "ceilDescription": "Returns the smallest integer that is greater than or equal the argument number provided.", "floorDescription": "Returns the largest integer that is less than or equal the argument number provided.", - "toArrayDescription": "Converts a comma-delimited string into an array.", "encodeUriDescription": "Returns a encoded URI string from the argument provided.", "encodeUriComponentDescription": "Returns a encoded URI string component from the argument provided.", "getFileVisibleNameDescription": "Returns the visible file name from a single file returned from the index function.", @@ -688,6 +687,7 @@ "sumDescription": "Sums the numbers inside the argument.", "avgDescription": "Averages the numbers inside the argument.", "atDescription": "Returns the item in the first argument at the index specified by the second argument.", + "toArrayDescription": "Converts a comma-delimited string into an array.", "formulaTypeFormula": "Function | Functions", "formulaTypeOperator": "Operator | Operators", "formulaTypeData": "Data", diff --git a/web-frontend/modules/builder/components/elements/components/collectionField/form/ButtonFieldForm.vue b/web-frontend/modules/builder/components/elements/components/collectionField/form/ButtonFieldForm.vue index 4fb0b22d77..238403a3de 100644 --- a/web-frontend/modules/builder/components/elements/components/collectionField/form/ButtonFieldForm.vue +++ b/web-frontend/modules/builder/components/elements/components/collectionField/form/ButtonFieldForm.vue @@ -17,6 +17,7 @@ style-key="cell" :config-block-types="['table', 'button']" :theme="baseTheme" + :on-styles-changed="onFieldStylesChanged" :extra-args="{ onlyCell: true, noAlignment: true }" variant="normal" /> diff --git a/web-frontend/modules/core/components/nodeExplorer/NodeExplorer.vue b/web-frontend/modules/core/components/nodeExplorer/NodeExplorer.vue index efdce3aa6d..ca8b5d5afc 100644 --- a/web-frontend/modules/core/components/nodeExplorer/NodeExplorer.vue +++ b/web-frontend/modules/core/components/nodeExplorer/NodeExplorer.vue @@ -55,18 +55,24 @@ import NodeExplorerTab from '@baserow/modules/core/components/nodeExplorer/NodeExplorerTab' import _ from 'lodash' +import { BASEROW_FORMULA_MODES } from '@baserow/modules/core/formula/constants' export default { name: 'NodeExplorer', components: { NodeExplorerTab, }, + provide() { + return { + getFormulaMode: () => this.mode, + } + }, props: { mode: { type: String, required: false, default: 'advanced', - validator: (value) => ['advanced', 'simple', 'raw'].includes(value), + validator: (value) => BASEROW_FORMULA_MODES.includes(value), }, nodeSelected: { type: String, diff --git a/web-frontend/modules/core/components/nodeExplorer/NodeExplorerContent.vue b/web-frontend/modules/core/components/nodeExplorer/NodeExplorerContent.vue index a56f4e7a28..e7a3545c02 100644 --- a/web-frontend/modules/core/components/nodeExplorer/NodeExplorerContent.vue +++ b/web-frontend/modules/core/components/nodeExplorer/NodeExplorerContent.vue @@ -21,7 +21,7 @@ @@ -86,6 +86,7 @@ export default { components: { NodeHelpTooltip, }, + inject: ['getFormulaMode'], props: { node: { type: Object, @@ -185,6 +186,12 @@ export default { }, }, methods: { + allowArraySelection(node) { + return ( + node.type === 'array' && + (this.allowNodeSelection || this.getFormulaMode() === 'advanced') + ) + }, handleClick(node, isNode) { if (this.depth < 1) { // We don't want to click on first level diff --git a/web-frontend/modules/database/components/field/FieldConstraintsSubForm.vue b/web-frontend/modules/database/components/field/FieldConstraintsSubForm.vue index d2c2997570..243aebabe8 100644 --- a/web-frontend/modules/database/components/field/FieldConstraintsSubForm.vue +++ b/web-frontend/modules/database/components/field/FieldConstraintsSubForm.vue @@ -12,6 +12,7 @@ !disabled && hasAvailableConstraints && !hasConflictingConstraints " :disabled="allConstraintsAdded || hasDisabledFieldConstraints" + tag="a" icon="iconoir-plus" @click.prevent="addConstraint" > diff --git a/web-frontend/package.json b/web-frontend/package.json index 8dc7a073de..87f75e6c73 100644 --- a/web-frontend/package.json +++ b/web-frontend/package.json @@ -1,6 +1,6 @@ { "name": "baserow", - "version": "2.0.5", + "version": "2.0.6", "private": true, "description": "Baserow: open source no-code database web frontend.", "author": "Bram Wiepjes (Baserow)",