Skip to content

Commit

Permalink
Mention that we dropped id from free objects in the changelog (#8392
Browse files Browse the repository at this point in the history
)

Co-authored-by: Scott Trinh <[email protected]>
  • Loading branch information
msullivan and scotttrinh authored Feb 25, 2025
1 parent 950b85f commit 629f16e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/resources/changelog/6_x.rst
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,18 @@ Additional changes
EdgeQL
------

* Free objects no longer have an ``id`` property. This is a breaking
change, though we expect the real-world impact to be minor. If you
need a dynamically generated new ID for free objects, it can be
added manually, using one of our UUID generation functions.

.. code-block:: edgeql
select {
id := uuid_generate_v1mc(),
property := 'Some string',
}
* Add ``__default__`` keyword to refer to default value.
(:eql:gh:`#7214`)

Expand Down

0 comments on commit 629f16e

Please sign in to comment.