summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-12 10:03:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-12 10:03:37 +0000
commit24e839c04c39d1f4423b267c371e8e5b5bc33867 (patch)
tree2395ec71424fe1ff783e0dc7ca0f9b4e16def8a9 /CHANGELOG.md
parentAdding upstream version 10.6.3. (diff)
downloadsqlglot-24e839c04c39d1f4423b267c371e8e5b5bc33867.tar.xz
sqlglot-24e839c04c39d1f4423b267c371e8e5b5bc33867.zip
Adding upstream version 11.0.1.upstream/11.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76c9e96..3b70b85 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,39 @@
Changelog
=========
+v11.0.0
+------
+
+Changes:
+
+- Breaking: Renamed ESCAPES to STRING_ESCAPES in the Tokenizer class.
+
+- New: Deployed pdoc documentation page.
+
+- New: Add support for read locking using the FOR UPDATE/SHARE syntax (e.g. MySQL).
+
+- New: Added support for CASCADE, SET NULL and SET DEFAULT constraints.
+
+- New: Added "cast" expression helper.
+
+- New: Add support for transpiling Postgres GENERATE_SERIES into Presto SEQUENCE.
+
+- Improvement: Fix tokenizing of identifier escapes.
+
+- Improvement: Fix eliminate_subqueries [bug](https://github.com/tobymao/sqlglot/commit/b5df65e3fb5ee1ebc3cbab64b6d89598cf47a10b) related to unions.
+
+- Improvement: IFNULL is now transpiled to COALESCE by default for every dialect.
+
+- Improvement: Refactored the way properties are handled. Now it's easier to add them and specify their position in a SQL expression.
+
+- Improvement: Fixed alias quoting bug.
+
+- Improvement: Fixed CUBE / ROLLUP / GROUPING SETS parsing and generation.
+
+- Improvement: Fixed get_or_raise Dialect/t.Type[Dialect] argument bug.
+
+- Improvement: Improved python type hints.
+
v10.6.0
------