@@ -23,17 +23,17 @@ generating forms and serialisers.
2323
24240.12.4
2525------
26- Using orjson for JSON serialisation when using the output(as_json=True) clause.
27- It supports more Python types than ujson.
26+ Using orjson for JSON serialisation when using the `` output(as_json=True)``
27+ clause. It supports more Python types than ujson.
2828
29290.12.3
3030------
31- Improved `piccolo user create` command - defaults the username to the current
31+ Improved `` piccolo user create` ` command - defaults the username to the current
3232system user.
3333
34340.12.2
3535------
36- Fixing bug when sorting ' extra_definitions' in auto migrations.
36+ Fixing bug when sorting `` extra_definitions`` in auto migrations.
3737
38380.12.1
3939------
@@ -118,15 +118,15 @@ Auto migrations can now run backwards.
1181180.10.4
119119------
120120Fixing some typos with ``Table`` imports. Showing a traceback when piccolo_conf
121- can't be found by engine_finder.
121+ can't be found by `` engine_finder`` .
122122
1231230.10.3
124124------
125125Adding missing jinja templates to setup.py.
126126
1271270.10.2
128128------
129- Fixing a bug when using ' piccolo project new' in a new project.
129+ Fixing a bug when using `` piccolo project new`` in a new project.
130130
1311310.10.1
132132------
@@ -139,15 +139,15 @@ Using targ for the CLI. Refactored some core code into apps.
1391390.9.3
140140-----
141141Suppressing exceptions when trying to find the Postgres version, to avoid
142- an ImportError when importing piccolo_conf.py.
142+ an `` ImportError`` when importing ` piccolo_conf.py` .
143143
1441440.9.2
145145-----
146- .first() bug fix.
146+ `` .first()`` bug fix.
147147
1481480.9.1
149149-----
150- Auto migration fixes, and .first() method now returns None is no match is
150+ Auto migration fixes, and `` .first()`` method now returns None is no match is
151151found.
152152
1531530.9.0
@@ -164,69 +164,70 @@ Fixing release issue.
164164
1651650.8.1
166166-----
167- Improved transaction support - can now use a context manager. Added Secret,
168- BigInt and SmallInt column types. Foreign keys can now reference the parent
169- table.
167+ Improved transaction support - can now use a context manager. Added `` Secret`` ,
168+ `` BigInt`` and `` SmallInt`` column types. Foreign keys can now reference the
169+ parent table.
170170
1711710.8.0
172172-----
173173Fixing bug when joining across several tables. Can pass values directly into
174- the Table.update method. Added 'if_not_exists' option when creating a table.
174+ the ``Table.update`` method. Added ``if_not_exists`` option when creating a
175+ table.
175176
1761770.7.7
177178-----
178179Column sequencing matches the definition order.
179180
1801810.7.6
181182-----
182- Supporting ON DELETE and ON UPDATE for foreign keys. Recording reverse foreign
183- key relationships.
183+ Supporting ` ON DELETE` and ` ON UPDATE` for foreign keys. Recording reverse
184+ foreign key relationships.
184185
1851860.7.5
186187-----
187- Make response_handler async. Made it easier to rename columns.
188+ Made `` response_handler`` async. Made it easier to rename columns.
188189
1891900.7.4
190191-----
191192Bug fixes and dependency updates.
192193
1931940.7.3
194195-----
195- Adding missing __int__.py file.
196+ Adding missing ` __int__.py` file.
196197
1971980.7.2
198199-----
199200Changed migration import paths.
200201
2012020.7.1
202203-----
203- Added remove_db_file method to SQLiteEngine - makes testing easier.
204+ Added `` remove_db_file`` method to `` SQLiteEngine`` - makes testing easier.
204205
2052060.7.0
206207-----
207- Renamed `create` to `create_table`, and can register commands via
208+ Renamed `` create`` to `` create_table` `, and can register commands via
208209`piccolo_conf`.
209210
2102110.6.1
211212-----
212- Adding missing __init__.py files.
213+ Adding missing ` __init__.py` files.
213214
2142150.6.0
215216-----
216- Moved BaseUser. Migration refactor.
217+ Moved `` BaseUser`` . Migration refactor.
217218
2182190.5.2
219220-----
220- Moved drop table under alter - to help prevent accidental drops.
221+ Moved drop table under ``Alter`` - to help prevent accidental drops.
221222
2222230.5.1
223224-----
224- Added ' batch' support.
225+ Added `` batch`` support.
225226
2262270.5.0
227228-----
228- Refactored the Table Metaclass - much simpler now. Scoped more of the
229- attributes on Column to avoid name clashes. Added engine_finder to make
229+ Refactored the `` Table`` Metaclass - much simpler now. Scoped more of the
230+ attributes on `` Column`` to avoid name clashes. Added `` engine_finder`` to make
230231database configuration easier.
231232
2322330.4.1
@@ -239,19 +240,19 @@ Refactored to improve code completion, along with bug fixes.
239240
2402410.3.7
241242-----
242- Allowing Update queries in SQLite
243+ Allowing `` Update`` queries in SQLite
243244
2442450.3.6
245246-----
246- Falling back to LIKE instead of ILIKE for SQLite
247+ Falling back to ` LIKE` instead of ` ILIKE` for SQLite
247248
2482490.3.5
249250-----
250- Renamed User to BaseUser.
251+ Renamed `` User`` to `` BaseUser`` .
251252
2522530.3.4
253254-----
254- Added ilike.
255+ Added `` ilike`` .
255256
2562570.3.3
257258-----
@@ -272,8 +273,8 @@ Basic SQLite support - mostly for playground.
272273
2732740.2
274275---
275- Using QueryString internally to represent queries, instead of raw strings, to
276- harden against SQL injection.
276+ Using `` QueryString`` internally to represent queries, instead of raw strings,
277+ to harden against SQL injection.
277278
2782790.1.2
279280-----
0 commit comments