diff --git a/README.md b/README.md index 3f6c5718d..2fbd23a1b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ tool gives you the powers of a developer without leaving your browser. [](https://heroku.com/deploy?template=https://github.com/bram2w/baserow/tree/master) ```bash -docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.1 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.2 ```  @@ -88,7 +88,7 @@ Created by Baserow B.V. - bram@baserow.io. Distributes under the MIT license. See `LICENSE` for more information. -Version: 1.10.1 +Version: 1.10.2 The official repository can be found at https://gitlab.com/bramw/baserow. diff --git a/backend/setup.py b/backend/setup.py index 2927663da..5504cbd4c 100644 --- a/backend/setup.py +++ b/backend/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup PROJECT_DIR = os.path.dirname(__file__) REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements") -VERSION = "1.10.1" +VERSION = "1.10.2" def get_requirements(env): diff --git a/backend/src/baserow/config/settings/base.py b/backend/src/baserow/config/settings/base.py index ea0ae9552..9a2581022 100644 --- a/backend/src/baserow/config/settings/base.py +++ b/backend/src/baserow/config/settings/base.py @@ -295,7 +295,7 @@ SPECTACULAR_SETTINGS = { "name": "MIT", "url": "https://gitlab.com/bramw/baserow/-/blob/master/LICENSE", }, - "VERSION": "1.10.1", + "VERSION": "1.10.2", "SERVE_INCLUDE_SCHEMA": False, "TAGS": [ {"name": "Settings"}, diff --git a/backend/src/baserow/version.py b/backend/src/baserow/version.py index 94a4e81df..a975a92ec 100644 --- a/backend/src/baserow/version.py +++ b/backend/src/baserow/version.py @@ -1 +1 @@ -VERSION = "1.10.1" +VERSION = "1.10.2" diff --git a/changelog.md b/changelog.md index 1f34e0a0f..84b2c537e 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,15 @@ For example: ### New Features +### Bug Fixes + +### Breaking Changes + + +## Released (2022-07-05 1.10.2) + +### New Features + * Added prefill query parameters for forms. [#852](https://gitlab.com/bramw/baserow/-/issues/852) * Added Link Row contains filter. [874](https://gitlab.com/bramw/baserow/-/issues/874) * Made the styling of the dashboard cleaner and more efficient. diff --git a/deploy/all-in-one/README.md b/deploy/all-in-one/README.md index ddbf7820c..9897ec21f 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:1.10.1 +docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.2 ``` ## Quick Reference @@ -49,7 +49,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable @@ -71,7 +71,7 @@ docker run \ ## Image Feature Overview -The `baserow/baserow:1.10.1` image by default runs all of Baserow's various services in a +The `baserow/baserow:1.10.2` image by default runs all of Baserow's various services in a single container for ease of use. A quick summary of its features are: * Runs a Postgres database and Redis server by default internally and stores all data in @@ -114,7 +114,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### Behind a reverse proxy already handling ssl @@ -127,7 +127,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### On a nonstandard HTTP port @@ -140,7 +140,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 3001:80 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external PostgresSQL server @@ -159,7 +159,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external Redis server @@ -178,7 +178,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external email server @@ -198,7 +198,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### Start just the embedded database @@ -211,7 +211,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:1.10.1 \ + baserow/baserow:1.10.2 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -229,7 +229,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:1.10.1 \ + baserow/baserow:1.10.2 \ backend-cmd-with-db manage dbshell ``` @@ -286,16 +286,16 @@ the command below. ```bash # First read the help message for this command -docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.2 \ backend-cmd-with-db backup # By default backs up to the backups folder in the baserow_data volume. -docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.2 \ 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:1.10.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:1.10.2 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -364,7 +364,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will @@ -373,7 +373,7 @@ be loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:1.10.1 +FROM baserow/baserow:1.10.2 # 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 d21e08df0..77b9def0f 100755 --- a/deploy/all-in-one/supervisor/start.sh +++ b/deploy/all-in-one/supervisor/start.sh @@ -14,7 +14,7 @@ cat << EOF ██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝ -Version 1.10.1 +Version 1.10.2 ========================================================================================= EOF diff --git a/deploy/cloudron/CloudronManifest.json b/deploy/cloudron/CloudronManifest.json index 5f3f5b4d7..cdd242b53 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": "1.10.1", + "version": "1.10.2", "healthCheckPath": "/api/_health/", "httpPort": 80, "addons": { diff --git a/deploy/cloudron/Dockerfile b/deploy/cloudron/Dockerfile index 6e1645a74..5a7490b8d 100644 --- a/deploy/cloudron/Dockerfile +++ b/deploy/cloudron/Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:1.10.1 +ARG FROM_IMAGE=baserow/baserow:1.10.2 # 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 1623a6c47..b3d86af18 100644 --- a/docker-compose.all-in-one.yml +++ b/docker-compose.all-in-one.yml @@ -4,7 +4,7 @@ version: "3.4" services: baserow: container_name: baserow - image: baserow/baserow:1.10.1 + image: baserow/baserow:1.10.2 environment: BASEROW_PUBLIC_URL: 'http://localhost' ports: diff --git a/docker-compose.yml b/docker-compose.yml index 816530bf1..046a30746 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -127,7 +127,7 @@ services: local: backend: - image: baserow/backend:1.10.1 + image: baserow/backend:1.10.2 restart: unless-stopped environment: <<: *backend-variables @@ -140,7 +140,7 @@ services: local: web-frontend: - image: baserow/web-frontend:1.10.1 + image: baserow/web-frontend:1.10.2 restart: unless-stopped environment: BASEROW_PUBLIC_URL: ${BASEROW_PUBLIC_URL-http://localhost} @@ -160,7 +160,7 @@ services: local: celery: - image: baserow/backend:1.10.1 + image: baserow/backend:1.10.2 restart: unless-stopped environment: <<: *backend-variables @@ -177,7 +177,7 @@ services: local: celery-export-worker: - image: baserow/backend:1.10.1 + image: baserow/backend:1.10.2 restart: unless-stopped command: celery-exportworker environment: @@ -194,7 +194,7 @@ services: local: celery-beat-worker: - image: baserow/backend:1.10.1 + image: baserow/backend:1.10.2 restart: unless-stopped command: celery-beat environment: diff --git a/docs/installation/install-on-cloudron.md b/docs/installation/install-on-cloudron.md index 2fc1f0cb8..54d974e1f 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:1.10.1 +$ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:1.10.2 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:1.10.1 +cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:1.10.2 ``` > Note that you must replace the image with the most recent image of Baserow. The diff --git a/docs/installation/install-on-ubuntu.md b/docs/installation/install-on-ubuntu.md index 1c5fa54fe..f10ef5c27 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:1.10.1 +baserow/baserow:1.10.2 # 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:1.10.1 + baserow/baserow:1.10.2 # 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 b911886f5..3f036e3b0 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:1.10.1` which by default starts the Gunicorn Django backend server +* `baserow/backend:1.10.2` 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:1.10.1` which is a Nuxt server providing Server Side rendering +* `baserow/web-frontend:1.10.2` 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:1.10.1` (default command is `gunicorn`) -* `baserow/backend:1.10.1` with command `celery-worker` -* `baserow/backend:1.10.1` with command `celery-export-worker` -* `baserow/web-frontend:1.10.1` (default command is `nuxt-local`) +* `baserow/backend:1.10.2` (default command is `gunicorn`) +* `baserow/backend:1.10.2` with command `celery-worker` +* `baserow/backend:1.10.2` with command `celery-export-worker` +* `baserow/web-frontend:1.10.2` (default command is `nuxt-local`) * A postgres database * A redis server diff --git a/docs/installation/install-with-docker.md b/docs/installation/install-with-docker.md index 192d54f72..fe5e2ce87 100644 --- a/docs/installation/install-with-docker.md +++ b/docs/installation/install-with-docker.md @@ -27,7 +27,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable @@ -50,7 +50,7 @@ docker run \ ## Image Feature Overview -The `baserow/baserow:1.10.1` image by default runs all of Baserow's various services in a +The `baserow/baserow:1.10.2` image by default runs all of Baserow's various services in a single container for ease of use. A quick summary of its features are: * Runs a Postgres database and Redis server by default internally and stores all data in @@ -143,7 +143,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### Behind a reverse proxy already handling ssl @@ -156,7 +156,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### On a nonstandard HTTP port @@ -169,7 +169,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 3001:80 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external PostgresSQL server @@ -188,7 +188,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external Redis server @@ -207,7 +207,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With an external email server @@ -227,7 +227,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### With a Postgresql server running on the same host as the Baserow docker container @@ -265,7 +265,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### Supply secrets using files @@ -292,7 +292,7 @@ docker run \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` ### Start just the embedded database @@ -305,7 +305,7 @@ docker run -it \ --name baserow \ -p 5432:5432 \ -v baserow_data:/baserow/data \ - baserow/baserow:1.10.1 \ + baserow/baserow:1.10.2 \ start-only-db # Now get the password from docker exec -it baserow cat /baserow/data/.pgpass @@ -323,7 +323,7 @@ docker run -it \ --rm \ --name baserow \ -v baserow_data:/baserow/data \ - baserow/baserow:1.10.1 \ + baserow/baserow:1.10.2 \ backend-cmd-with-db manage dbshell ``` @@ -379,16 +379,16 @@ the command below. ```bash # First read the help message for this command -docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.2 \ backend-cmd-with-db backup # By default backs up to the backups folder in the baserow_data volume. -docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \ +docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.2 \ 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:1.10.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz + baserow/baserow:1.10.2 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz ``` ### Restore only Baserow's Postgres Database @@ -457,7 +457,7 @@ docker run \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ - baserow/baserow:1.10.1 + baserow/baserow:1.10.2 ``` Or you can just store it directly in the volume at `baserow_data/env` meaning it will be @@ -466,7 +466,7 @@ loaded whenever you mount in this data volume. ### Building your own image from Baserow ```dockerfile -FROM baserow/baserow:1.10.1 +FROM baserow/baserow:1.10.2 # 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/plugins/installation.md b/docs/plugins/installation.md index 34d420d0a..2575ae006 100644 --- a/docs/plugins/installation.md +++ b/docs/plugins/installation.md @@ -35,7 +35,7 @@ build your own image based off the Baserow all-in-one image. in the example Dockerfile below: ```dockerfile -FROM baserow/baserow:1.10.1 +FROM baserow/baserow:1.10.2 # You can install a plugin found in a git repo: RUN /baserow/plugins/install_plugin.sh \ @@ -67,9 +67,9 @@ RUN /baserow/plugins/install_plugin.sh \ ``` 4. Now build your custom Baserow with the plugin installed by running: - `docker build -t my-customized-baserow:1.10.1 .` + `docker build -t my-customized-baserow:1.10.2 .` 5. 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:1.10.1` + `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:1.10.2` ### Installing in an existing Baserow all-in-one container @@ -106,7 +106,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:1.10.1 + baserow:1.10.2 ``` These variables will only trigger and installation when found on startup of the @@ -115,7 +115,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:1.10.1` image which does not +it, the new container is created from the `baserow/baserow:1.10.2` image which does not have any plugins installed. However, when a plugin is installed at runtime or build time it is stored in the @@ -130,7 +130,7 @@ scratch. ### Installing into standalone Baserow service images -Baserow also provides `baserow/backend:1.10.1` and `baserow/web-frontend:1.10.1` images +Baserow also provides `baserow/backend:1.10.2` and `baserow/web-frontend:1.10.2` 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. @@ -140,8 +140,8 @@ used with docker run and a specified command and the plugin env vars shown above example: ``` -docker run --rm baserow/backend:1.10.1 install-plugin ... -docker run -e BASEROW_PLUGIN_GIT_REPOS=https://example.com/example/plugin1.git,https://example.com/example/plugin2.git --rm baserow/backend:1.10.1 +docker run --rm baserow/backend:1.10.2 install-plugin ... +docker run -e BASEROW_PLUGIN_GIT_REPOS=https://example.com/example/plugin1.git,https://example.com/example/plugin2.git --rm baserow/backend:1.10.2 ``` You can use these scripts exactly as you would in the sections above to install a plugin @@ -164,13 +164,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:1.10.1 uninstall-plugin plugin_name` +3. `docker run --rm -v baserow_data:/baserow/data baserow:1.10.2 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:1.10.1 .` +6. Rebuild your image - `docker build -t my-customized-baserow:1.10.2 .` 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:1.10.1` + - `docker run -p 80:80 -v baserow_data:/baserow/data my-customized-baserow:1.10.2` 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. @@ -202,7 +202,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:1.10.1 uninstall-plugin plugin_name` + 2. `docker run --rm -v baserow_data:/baserow/data baserow:1.10.2 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 @@ -217,9 +217,9 @@ check what plugins are currently installed. docker run \ --rm \ -v baserow_data:/baserow/data \ - baserow:1.10.1 list-plugins + baserow:1.10.2 list-plugins # or on a running container docker exec baserow /baserow/plugins/list_plugin.sh -``` \ No newline at end of file +``` diff --git a/heroku.Dockerfile b/heroku.Dockerfile index 85ac9c0c0..0897cc0fb 100644 --- a/heroku.Dockerfile +++ b/heroku.Dockerfile @@ -1,4 +1,4 @@ -ARG FROM_IMAGE=baserow/baserow:1.10.1 +ARG FROM_IMAGE=baserow/baserow:1.10.2 # This is pinned as version pinning is done by the CI setting FROM_IMAGE. # hadolint ignore=DL3006 FROM $FROM_IMAGE as image_base @@ -14,4 +14,4 @@ RUN mkdir -p "$DATA_DIR" && \ COPY deploy/heroku/heroku_env.sh /baserow/supervisor/env/heroku_env.sh ENTRYPOINT [] -CMD [] \ No newline at end of file +CMD [] diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile index 5f5f9fb36..fdec95254 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/Dockerfile @@ -1,4 +1,4 @@ -FROM baserow/baserow:1.10.1 +FROM baserow/baserow:1.10.2 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 470900c37..e0851bf58 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:1.10.1 as base +FROM baserow/backend:1.10.2 as base -FROM baserow/backend:1.10.1 +FROM baserow/backend:1.10.2 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile index 953e342f5..e7fcc54d4 100644 --- a/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile +++ b/plugin-boilerplate/{{ cookiecutter.project_slug }}/backend.Dockerfile @@ -1,4 +1,4 @@ -FROM baserow/backend:1.10.1 +FROM baserow/backend:1.10.2 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/dev.Dockerfile index ace3e1798..8b596f69c 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:1.10.1 as base +FROM baserow/baserow:1.10.2 as base -FROM baserow/baserow:1.10.1 +FROM baserow/baserow:1.10.2 ARG PLUGIN_BUILD_UID ENV PLUGIN_BUILD_UID=${PLUGIN_BUILD_UID:-9999} diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend-dev.Dockerfile index 5ec3a81fb..57d6b922b 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:1.10.1 as base -FROM baserow/web-frontend:1.10.1 +FROM baserow/web-frontend:1.10.2 as base +FROM baserow/web-frontend:1.10.2 USER root diff --git a/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile b/plugin-boilerplate/{{ cookiecutter.project_slug }}/web-frontend.Dockerfile index a34376b6f..348899358 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:1.10.1 +FROM baserow/web-frontend:1.10.2 USER root diff --git a/web-frontend/package.json b/web-frontend/package.json index 6bd470053..4d5259826 100644 --- a/web-frontend/package.json +++ b/web-frontend/package.json @@ -1,6 +1,6 @@ { "name": "baserow", - "version": "1.10.1", + "version": "1.10.2", "private": true, "description": "Baserow: open source no-code database web frontend.", "author": "Bram Wiepjes (Baserow)", @@ -80,4 +80,4 @@ "stylelint-webpack-plugin": "^3.0.1", "vue-jest": "^3.0.3" } -} \ No newline at end of file +}