File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed
Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 11Changes
22=======
33
4- 0.35 .0
4+ 0.36 .0
55------
6+ Fixed an issue where ``like`` and ``ilike`` clauses required a wildcard. For
7+ example:
8+
9+ .. code-block:: python
610
11+ await Manager.select().where(Manager.name.ilike('Guido%')).run()
12+
13+ You can now omit wildcards if you like:
14+
15+ .. code-block:: python
16+
17+ await Manager.select().where(Manager.name.ilike('Guido')).run()
18+
19+ Which would match on ``'guido'`` and ``'Guido'``, but not ``'Guidoxyz'``.
20+
21+ Thanks to @wmshort for reporting this issue.
22+
23+ 0.35.0
24+ ------
725 * Improved ``PrimaryKey`` deprecation warning (courtesy @tonybaloney).
826 * Added ``piccolo schema generate`` which creates a Piccolo schema from an
927 existing database.
Original file line number Diff line number Diff line change 1- __VERSION__ = "0.35 .0"
1+ __VERSION__ = "0.36 .0"
You can’t perform that action at this time.
0 commit comments