mirror of
https://github.com/trailbaseio/trailbase.git
synced 2025-12-21 09:29:44 -06:00
Prepare new release v0.21.11.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -162,7 +162,7 @@ export default defineConfig({
|
||||
],
|
||||
vite: {
|
||||
plugins: [
|
||||
// @ts-expect-error: https://github.com/withastro/astro/issues/14030
|
||||
// @ts-ignore
|
||||
tailwindcss(),
|
||||
],
|
||||
},
|
||||
|
||||
@@ -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 },
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user