summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e38393d3..7df12745 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,8 +6,17 @@ What's New in astroid 2.15.0?
=============================
Release date: TBA
+* ``Astroid`` now supports custom import hooks.
+ Refs PyCQA/pylint#7306
+* ``Astroid`` now retrieves the default values of keyword only arguments and sets them on
+ ``Arguments.kw_defaults``.
+
+* ``Uninferable`` now has the type ``UninferableBase``. This is to facilitate correctly type annotating
+ code that uses this singleton.
+
+ Closes #1680