Files
truecharts/charts/stable/baserow/values.yaml
T
TrueCharts BotandGitHub 113ba16927 chore(deps): update container image baserow/baserow to v1.23.0@c7a436e by renovate (#19093)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [baserow/baserow](https://gitlab.com/baserow/baserow) | minor |
`1.22.3` -> `1.23.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>baserow/baserow (baserow/baserow)</summary>

###
[`v1.23.0`](https://gitlab.com/baserow/baserow/blob/HEAD/changelog.md#Released-1230)

[Compare
Source](https://gitlab.com/baserow/baserow/compare/1.22.3...1.23.0)

##### New features

- Introduced new password field type.
[#&#8203;2123](https://gitlab.com/baserow/baserow/-/issues/2123)
- Support ad hoc filtering in grid view for editor roles and lower
[#&#8203;2329](https://gitlab.com/baserow/baserow/-/issues/2329)
- Support ad hoc sorting in grid and gallery views
[#&#8203;2361](https://gitlab.com/baserow/baserow/-/issues/2361)
- Add ad hoc filtering support for editor and lower for gallery and
kanban views
[#&#8203;2375](https://gitlab.com/baserow/baserow/-/issues/2375)
- Add rich text formatting and Markdown support to the long text field.
[#&#8203;622](https://gitlab.com/baserow/baserow/-/issues/622)

##### Bug fixes

- Fix the number of workspaces in the admin dashboard.
[#&#8203;1195](https://gitlab.com/baserow/baserow/-/issues/1195)
- File import will now ignore spaces around text values
[#&#8203;2305](https://gitlab.com/baserow/baserow/-/issues/2305)
- Resolve the issue where table import options vanish upon interacting
with the form that displays these options, disrupting the table import
process.
[#&#8203;2326](https://gitlab.com/baserow/baserow/-/issues/2326)
- Fix bug blocking grid view access after creating a lookup to a
duration field.
[#&#8203;2333](https://gitlab.com/baserow/baserow/-/issues/2333)
- Adjusted the title height in the row modal to accommodate long text.
[#&#8203;2334](https://gitlab.com/baserow/baserow/-/issues/2334)
- Fix a bug blocking users to add row color conditions if the primary
field has no compatible filters.
[#&#8203;2341](https://gitlab.com/baserow/baserow/-/issues/2341)
- Use the correct `get_human_readable_value` when creating row related
notifications.
[#&#8203;2345](https://gitlab.com/baserow/baserow/-/issues/2345)
- Return an empty body instead of a string with a HTTP 204 status code
[#&#8203;2348](https://gitlab.com/baserow/baserow/-/issues/2348)
- Prevent editor and lower roles from creating aggregations
[#&#8203;2369](https://gitlab.com/baserow/baserow/-/issues/2369)
- Sanitize filter values to remove nul characters
[#&#8203;2398](https://gitlab.com/baserow/baserow/-/issues/2398)
- Fix bug where the period field update can result in a deadlock when it
has multiple dependencies.

##### Refactors

- Optimize usage counters tasks to run only for updated tables.
[#&#8203;1297](https://gitlab.com/baserow/baserow/-/issues/1297)
- Refactored cache clearing logic to target only dynamic models,
preserving the global cache for all models.
-   Update axios and posthog-jw frontend libraries

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2024-03-11 02:03:20 +01:00

84 lines
2.2 KiB
YAML

image:
repository: baserow/baserow
tag: 1.23.0@sha256:c7a436efb381eec7416ed578fe83c142670cf51fe5f403946a192695a6b07b78
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:
path: "/_health"
readiness:
path: "/_health"
startup:
path: "/_health"
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_PUBLIC_URL: "http://localhost: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:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: 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"
portal:
open:
enabled: true