Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/poznote/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: poznote
description: Self-hosted note-taking and documentation platform with SQLite persistence
type: application
version: 1.0.1
appVersion: "6.29.0"
appVersion: "6.30.2"
kubeVersion: ">=1.26.0-0"
home: https://helmforge.dev/docs/charts/poznote
sources:
Expand All @@ -24,8 +24,8 @@ maintainers:
icon: https://helmforge.dev/icons/charts/poznote.png
annotations:
artifacthub.io/changes: |
- kind: added
description: "add chart (#630)"
- kind: changed
description: "bump poznote to 6.30.2 (#703)"
artifacthub.io/category: skip-prediction
artifacthub.io/license: Apache-2.0
artifacthub.io/prerelease: "false"
Expand Down
4 changes: 2 additions & 2 deletions charts/poznote/DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Scaling above one pod is blocked because Poznote uses SQLite for persistence and
The chart uses the official upstream image:

```text
ghcr.io/timothepoznanski/poznote:6.29.0
ghcr.io/timothepoznanski/poznote:6.30.2
```

The tag maps to the upstream `6.29.0` release and publishes Linux `amd64` and `arm64` manifests.
The tag maps to the upstream `6.30.2` release and publishes Linux `amd64` and `arm64` manifests.

## Database

Expand Down
12 changes: 11 additions & 1 deletion charts/poznote/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ingress:
| Parameter | Description | Default |
|-----------|-------------|---------|
| `image.repository` | Image repository | `ghcr.io/timothepoznanski/poznote` |
| `image.tag` | Image tag | `6.29.0` |
| `image.tag` | Image tag | `6.30.2` |
| `image.pullPolicy` | Pull policy | `IfNotPresent` |

#### Application Parameters
Expand Down Expand Up @@ -138,6 +138,16 @@ This chart intentionally does NOT:
- Provide a database subchart (SQLite is embedded)
- Bundle the MCP server container (separate deployment concern)

## Upgrade Notes

Poznote `6.30.2` is a stable UI, backup, API, and security hardening release.
Upstream highlights include brute-force login throttling, improved backup import
validation, trashed notes included in exports, new REST API endpoints, MCP server
fixes, dark mode fixes, and mobile/task editing fixes. No Kubernetes-facing
configuration changes are required by this chart, but back up the `data` PVC
before upgrading because it stores the SQLite database, notes, attachments, and
application configuration.

## Security Scan

Security Scan: `poznote`
Expand Down
2 changes: 1 addition & 1 deletion charts/poznote/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: "ghcr.io/timothepoznanski/poznote:6.29.0"
value: "ghcr.io/timothepoznanski/poznote:6.30.2"

- it: should expose HTTP port 80
template: templates/deployment.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/poznote/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ image:
# -- Official Poznote container image repository.
repository: ghcr.io/timothepoznanski/poznote
# -- Pinned Poznote image tag. Floating tags such as latest are not used by default.
tag: "6.29.0"
tag: "6.30.2"
# -- Kubernetes image pull policy.
pullPolicy: IfNotPresent

Expand Down