Skip to content

Commit 15e1974

Browse files
committed
Prepare for release 1.5.1
1 parent 538b37c commit 15e1974

File tree

3 files changed

+50
-2
lines changed

3 files changed

+50
-2
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Change Log
22

3+
## [1.5.1] - 2021-07-16
4+
### Added
5+
- [PostgreSQL Dialect] PostgreSQL JSONB and ON Conflict Do Nothing (by [Andrew Stewart][satook])
6+
- [PostgreSQL Dialect] Adds support for PostgreSQL ON CONFLICT (column, ...) DO UPDATE (by [Andrew Stewart][satook])
7+
- [MySQL Dialect] Support MySQL generated columns (by [Jeff Gulbronson][JeffG])
8+
- [Native Driver] Add watchosX64 support
9+
- [IDE Plugin] Add parameter types and annotations (by [Alexander Perfilyev][aperfilyev])
10+
- [IDE Plugin] Add action to generate 'select all' query (by [Alexander Perfilyev][aperfilyev])
11+
- [IDE Plugin] Show column types in autocomplete (by [Alexander Perfilyev][aperfilyev])
12+
- [IDE Plugin] Add icons to autocomplete (by [Alexander Perfilyev][aperfilyev])
13+
- [IDE Plugin] Add action to generate 'select by primary key' query (by [Alexander Perfilyev][aperfilyev])
14+
- [IDE Plugin] Add action to generate 'insert into' query (by [Alexander Perfilyev][aperfilyev])
15+
- [IDE Plugin] Add highlighting for column names, stmt identifiers, function names (by [Alexander Perfilyev][aperfilyev])
16+
- [IDE Plugin] Add remaining query generation actions (#489 by [Alexander Perfilyev][aperfilyev])
17+
- [IDE Plugin] Show parameter hints from insert-stmt (by [Alexander Perfilyev][aperfilyev])
18+
- [IDE Plugin] Table alias intention action (by [Alexander Perfilyev][aperfilyev])
19+
- [IDE Plugin] Qualify column name intention (by [Alexander Perfilyev][aperfilyev])
20+
- [IDE Plugin] Go to declaration for kotlin property (by [Alexander Perfilyev][aperfilyev])
21+
22+
### Changed
23+
- [Native Driver] Improve native transaction performance by avoiding freezing and shareable data structures when possible (by [Anders Ha][andersio])
24+
- [Paging 3] Bump Paging3 version to 3.0.0 stable
25+
- [JS Driver] Upgrade sql.js to 1.5.0
26+
27+
### Fixed
28+
- [JDBC SQLite Driver] Call close() on connection before clearing the ThreadLocal (#2444 by [Hannes Struß][hannesstruss])
29+
- [RX extensions] Fix subscription / disposal race leak (#2403 by [Pierre Yves Ricau][pyricau])
30+
- [Coroutines extension] Ensure we register query listener before notifying
31+
- [Compiler] Sort notifyQueries to have consistent kotlin output file (by [Jiayu Chen][thomascjy])
32+
- [Compiler] Don't annotate select query class properties with @JvmField (by [Eliezer Graber][eygraber])
33+
- [IDE Plugin] Fix import optimizer (#2350 by [Alexander Perfilyev][aperfilyev])
34+
- [IDE Plugin] Fix unused column inspection (by [Alexander Perfilyev][aperfilyev])
35+
- [IDE Plugin] Add nested classes support to import inspection and class annotator (by [Alexander Perfilyev][aperfilyev])
36+
- [IDE Plugin] Fix npe in CopyPasteProcessor (#2363 by [Alexander Perfilyev][aperfilyev])
37+
- [IDE Plugin] Fix crash in InlayParameterHintsProvider (#2359 by [Alexander Perfilyev][aperfilyev])
38+
- [IDE Plugin] Fix insertion of blank lines when copy-pasting any text into create table stmt (#2431 by [Alexander Perfilyev][aperfilyev])
39+
40+
41+
## [1.5.0] - 2021-04-23
42+
### Added
43+
- [SQLite Javascript Driver] Enable sqljs-driver publication (#1667 by [Derek Ellis][dellisd])
44+
- [Paging3 Extension] Extension for Android Paging 3 Library (#1786 by [Kevin Cianfarini][kevincianfarini])
45+
46+
347
## [1.5.0] - 2021-04-23
448
### Added
549
- [SQLite Javascript Driver] Enable sqljs-driver publication (#1667 by [Derek Ellis][dellisd])
@@ -457,3 +501,7 @@ Initial release.
457501
[ilmat192]: https://github.com/ilmat192
458502
[3flex]: https://github.com/3flex
459503
[aperfilyev]: https://github.com/aperfilyev
504+
[satook]: https://github.com/Satook
505+
[thomascjy]: https://github.com/ThomasCJY
506+
[pyricau]: https://github.com/pyricau
507+
[hannesstruss]: https://github.com/hannesstruss

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.squareup.sqldelight
2-
VERSION_NAME=1.6.0-SNAPSHOT
2+
VERSION_NAME=1.5.1
33

44
POM_URL=https://github.com/square/sqldelight/
55
POM_SCM_URL=https://github.com/square/sqldelight/

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,4 @@ plugins:
200200

201201
extra:
202202
versions:
203-
sqldelight: '1.5.0'
203+
sqldelight: '1.5.1'

0 commit comments

Comments
 (0)