@@ -7,22 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10- ### Added
11-
12- - The test suite runs against MySQL 8.4 and PostgreSQL 17 on every build, alongside the
13- SQLite matrix. ` DB_DRIVER ` points it at a server locally.
14-
15- ### Fixed
16-
17- - ` getCustomFields() ` and the generated filters and sorts come back ordered by
18- ` sort_order ` and then by slug. The order was whatever the database returned, so the same
19- code gave a different order on SQLite and on a server, and the ` sort_order ` column was
20- never read.
21- - A ` decimal ` value reads back the same on every driver. MySQL and PostgreSQL return the
22- full scale of the column, so a stored ` 12.5 ` came back as ` 12.500000 ` while SQLite gave
23- ` 12.5 ` .
24-
25- ## 0.1.0 - 2026-09-07
10+ ## 0.1.0 - 2026-09-08
2611
2712First public release.
2813
@@ -65,6 +50,8 @@ First public release.
6550- Model factories for both package models.
6651- A README covering installation, configuration, the field type table, the query
6752 operations, the events, the exceptions, the form metadata and the test commands.
53+ - The test suite runs against MySQL 8.4 and PostgreSQL 17 on every build, alongside the
54+ SQLite matrix. ` DB_DRIVER ` points it at a server locally.
6855
6956### Changed
7057
@@ -130,3 +117,10 @@ First public release.
130117- The test suite pins an in memory database, so ` composer build ` followed by
131118 ` composer test ` no longer fails on the migrations that ` workbench:build ` publishes into
132119 the Testbench skeleton.
120+ - ` getCustomFields() ` and the generated filters and sorts come back ordered by
121+ ` sort_order ` and then by slug. The order was whatever the database returned, so the same
122+ code gave a different order on SQLite and on a server, and the ` sort_order ` column was
123+ never read.
124+ - A ` decimal ` value reads back the same on every driver. MySQL and PostgreSQL return the
125+ full scale of the column, so a stored ` 12.5 ` came back as ` 12.500000 ` while SQLite gave
126+ ` 12.5 ` .
0 commit comments