Prepare new minor release

This commit is contained in:
Simon Binder 2023-01-02 23:56:28 +01:00
parent 4723d8474e
commit fafcf114a3
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
6 changed files with 19 additions and 5 deletions

View File

@ -1,3 +1,8 @@
## 2.4.2
- Fix an exception when a client disconnects from a drift remote server while
processing a pending table update.
## 2.4.1
- Fix `DriftIsolate` leaking resources for closed connections.

View File

@ -1,6 +1,6 @@
name: drift
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
version: 2.4.1
version: 2.4.2
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues

View File

@ -1,3 +1,12 @@
## 2.4.1
- Improvements and fixes for schema files:
- Fix views with an existing row type generating invalid SQL in schema files.
- Fix `schema generate --companions` implicitly requiring `--data-classes` as well.
- Fix `toColumns()` not being generated correclty.
- Fix conflicting names being generated by `schema generate` when using existing
row types on views.
## 2.4.0
- Add support for `textEnum` columns in Dart (or `ENUMNAME` in `.drift`) to store enum columns as text (via `Enum.name`).

View File

@ -1,6 +1,6 @@
name: drift_dev
description: Dev-dependency for users of drift. Contains a the generator and development tools.
version: 2.4.0
version: 2.4.1
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
@ -27,7 +27,7 @@ dependencies:
# Drift-specific analysis and apis
drift: '>=2.4.0 <2.5.0'
sqlite3: '>=0.1.6 <2.0.0'
sqlparser: ^0.25.0
sqlparser: '>=0.25.0 <0.27.0'
# Dart analysis
analyzer: ^5.2.0

View File

@ -1,4 +1,4 @@
## 0.26.0-dev
## 0.26.0
- Remove token parameter from constructor in `Literal` subclasses and `NumberedVariable`.

View File

@ -1,6 +1,6 @@
name: sqlparser
description: Parses sqlite statements and performs static analysis on them
version: 0.25.0
version: 0.26.0
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
repository: https://github.com/simolus3/drift
#homepage: https://drift.simonbinder.eu/