Skip to content

Commit

Permalink
Prepare new minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jan 2, 2023
1 parent 4723d84 commit fafcf11
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
5 changes: 5 additions & 0 deletions drift/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion drift/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions drift_dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`).
Expand Down
4 changes: 2 additions & 2 deletions drift_dev/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sqlparser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.26.0-dev
## 0.26.0

- Remove token parameter from constructor in `Literal` subclasses and `NumberedVariable`.

Expand Down
2 changes: 1 addition & 1 deletion sqlparser/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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/
Expand Down

0 comments on commit fafcf11

Please sign in to comment.