diff --git a/changelog.md b/changelog.md index 4e608ee1c1..650be75a1e 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,27 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). + +## 6.0.0-beta.1 - 2023-02-12 + +### Warnings + +- ⚠️ Make a backup of your database first! +- ⚠️ This version requires **PHP 8.2**. + +You can access the new V3 layout under `/v3/`. If you decide to use or test it: + +- ⚠️ Read the instructions under the ☠️ icon FIRST. +- ⚠️ The new layout is not yet finished. Use it to change your data at your own risk. + +### Added +- Introduce Jetbrains Qodana code scanning +- Reintroduced test framework + +### Fixed +- [Issue 6834](https://github.com/firefly-iii/firefly-iii/issues/6834) Better check on IBANs +- Various small bugs + ## 6.0.0-alpha.2 - 2023-02-05 ### Warnings diff --git a/config/firefly.php b/config/firefly.php index ce9cb18201..b6b521c6e4 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -106,8 +106,8 @@ return [ 'webhooks' => true, 'handle_debts' => true, ], - 'version' => '6.0.0-alpha.2', - 'api_version' => '2.0.0-alpha.2', + 'version' => '6.0.0-beta.1', + 'api_version' => '2.0.0-beta.1', 'db_version' => 19, // generic settings diff --git a/frontend/src/components/transactions/LargeTable.vue b/frontend/src/components/transactions/LargeTable.vue index 4943f46f72..47d6be4b81 100644 --- a/frontend/src/components/transactions/LargeTable.vue +++ b/frontend/src/components/transactions/LargeTable.vue @@ -23,6 +23,7 @@ v-model:pagination="pagination" :columns="columns" :loading="loading" + dense :rows="rows" class="q-ma-md" row-key="group_id" diff --git a/frontend/src/layouts/MainLayout.vue b/frontend/src/layouts/MainLayout.vue index 458d9e9be4..39b8d7a62a 100644 --- a/frontend/src/layouts/MainLayout.vue +++ b/frontend/src/layouts/MainLayout.vue @@ -338,7 +338,7 @@ page container: q-ma-xs (margin all, xs) AND q-mb-md to give the page content so
- Firefly III v v6.0.0-alpha.2 © James Cole, AGPL-3.0-or-later. + Firefly III v v6.0.0-beta.1 © James Cole, AGPL-3.0-or-later.
diff --git a/frontend/src/pages/transactions/Index.vue b/frontend/src/pages/transactions/Index.vue index 4053114275..e318467b7b 100644 --- a/frontend/src/pages/transactions/Index.vue +++ b/frontend/src/pages/transactions/Index.vue @@ -18,6 +18,11 @@ - along with this program. If not, see . --> + +