a8a9255d4c
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/baserow/baserow](https://gitlab.com/baserow/baserow) | patch | `a459ba6` -> `103e782` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>baserow/baserow (docker.io/baserow/baserow)</summary> ### [`v1.35.2`](https://gitlab.com/baserow/baserow/blob/HEAD/changelog.md#Released-1352) [Compare Source](https://gitlab.com/baserow/baserow/compare/1.35.1...1.35.2) ##### New features - \[Database] Date dependency - allow to connect two dates as start date/end date, and a duration field, and recalculate other fields if one is modified. [#​3735](https://gitlab.com/baserow/baserow/-/issues/3735) ##### Bug fixes - \[Builder] Fix timezone issue with date time picker [#​3566](https://gitlab.com/baserow/baserow/-/issues/3566) - \[Core] Fix a bug in the Guided Tour that caused a Vue warning. [#​3721](https://gitlab.com/baserow/baserow/-/issues/3721) - \[Database] Do not fire for past entries on new webhook [#​3811](https://gitlab.com/baserow/baserow/-/issues/3811) - \[Database] Fix filter group api documentation [#​3829](https://gitlab.com/baserow/baserow/-/issues/3829) - \[Database] Fix the error when submitting form with collaborator field notification enabled in public forms. [#​3834](https://gitlab.com/baserow/baserow/-/issues/3834) - \[Builder] Fixed bug that causes the frontend to crash when an Integration is deleted. [#​3835](https://gitlab.com/baserow/baserow/-/issues/3835) - \[Database] Remove comment operations from Ctrl+Z undo stack to prevent accidental deletions [#​3837](https://gitlab.com/baserow/baserow/-/issues/3837) - \[Database] Fix a bug with frontend view filters when the root group doesn't have filters. [#​3839](https://gitlab.com/baserow/baserow/-/issues/3839) - \[Database] Fix button loading animation of publicly shared view login page. - \[Database] Fix PostgreSQL update with multiple primary keys. - \[Core] Improve SSR performance by only extending the translations once. - \[Database] Prevent multiple concurrent `update_search_data` tasks from being scheduled. - \[Core] Prevent the sync templates task from being scheduled multiple times concurrently. - \[Builder] Reload data source information on authentication - \[Builder] Resolved a bug which prevented formula fields from being filtered upon by external users. - \[Builder] Resolved a table and repeat element bug which inadvertently displayed an error popup. ##### Refactors - \[Core] Update backend and frontend dependencies 2025-09-29 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
image:
|
|
repository: docker.io/baserow/baserow
|
|
tag: 1.35.2@sha256:103e78280ab16224ca6780db1f3c5e6a0993d99eaa56cad1e4c9ab35c17264b3
|
|
pullPolicy: IfNotPresent
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10228
|
|
protocol: http
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: tcp
|
|
readiness:
|
|
type: tcp
|
|
startup:
|
|
type: tcp
|
|
env:
|
|
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DATABASE_USER: "{{ .Values.cnpg.main.user }}"
|
|
DATABASE_PORT: "5432"
|
|
REDIS_USER: "{{ .Values.redis.redisUsername }}"
|
|
REDIS_PORT: "6379"
|
|
REDIS_PROTOCOL: "redis"
|
|
BASEROW_CADDY_ADDRESSES: ":{{ .Values.service.main.ports.main.port }}"
|
|
# User Defined
|
|
BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION: false
|
|
BASEROW_PUBLIC_URL: "http://127.0.0.1:10228"
|
|
FROM_EMAIL: ""
|
|
EMAIL_SMTP: ""
|
|
EMAIL_SMTP_USE_TLS: ""
|
|
EMAIL_SMTP_HOST: ""
|
|
EMAIL_SMTP_PORT: 587
|
|
EMAIL_SMTP_USER: ""
|
|
EMAIL_SMTP_PASSWORD: ""
|
|
DATABASE_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
REDIS_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: plainhost
|
|
REDIS_PASSWORD: "{{ .Values.redis.password }}"
|
|
SECRET_KEY:
|
|
secretKeyRef:
|
|
name: secrets
|
|
key: SECRET_KEY
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /baserow/data
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: baserow
|
|
database: baserow
|
|
redis:
|
|
enabled: true
|
|
redisUsername: "default"
|