Prepare new release v0.21.11.

This commit is contained in:
Sebastian Jeltsch
2025-12-05 14:27:44 +01:00
parent c64885c540
commit f84f6f42e6
3 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
## v0.21.11
- Pre-built binary releases:
- Release aarch64 (arm64) static binaries for Linux (#184) and update install script.
- Stop releasing Linux glibc binaries. Using them is a gamble depending on your system: best-case it won't work at all, worst-case you end up with hard to debug issues. Even "static" glibc builds aren't static, e.g. when looking up hostnames.
- There are valid, e.g. performance, reasons to use glibc builds, however it's safer to build from source or for a controlled container environment.
- Remove left-over pseudo error handling to stop swallowing errors in a few places in the admin UI, e.g. when deleting tables.
- Update Rust and JavaScript dependencies.
## v0.21.10
- Fix table renames in admin UI.

View File

@@ -162,7 +162,7 @@ export default defineConfig({
],
vite: {
plugins: [
// @ts-expect-error: https://github.com/withastro/astro/issues/14030
// @ts-ignore
tailwindcss(),
],
},

View File

@@ -75,6 +75,8 @@ export default [
],
// Collides with astro, we'd have to configure the solid plugin to ignore astro files.
"solid/no-unknown-namespaces": "off",
// Needed for astro.config.ts @ts-ignore in because @ts-expect-error doesn't work reliably across envs.
"@typescript-eslint/ban-ts-comment": "warn",
},
languageOptions: { globals: globals.browser },
},