Update dependency piccolo to ~=1.33.0 #92
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/piccolo-1.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
~=1.32.0→~=1.33.0Release Notes
piccolo-orm/piccolo (piccolo)
v1.33.0Compare Source
UUID v7
Added the
Coalescefunction - which lets you specify a fall back if a nullvalue is found.
For example:
.. code-block:: python
Or you can use this abbreviated syntax:
.. code-block:: python
Other changes
Added an
Arraycolumn to the playground (Album.awards), for easierexperimentation with array columns.
CoachroachDB is now supported in the playground (thanks to @sinisaos for this).
.. code-block:: bash
piccolo playground run --engine=cockroach
Functions
Values can be prepended:
.. code-block:: python
And multiple arrays can be concatenated in one go:
.. code-block:: python
is_inandnot_insub queriesWe recently added support for
COUNT DISTINCTqueries. The syntax is:.. code-block:: python
await Concert.count(distinct=[Concert.start_date])
The following alternative syntax now also works (just to be consistent with
other queries like
select):.. code-block:: python
await Concert.count().distinct([Concert.start_date])
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.