summaryrefslogtreecommitdiffstats
path: root/misc/extension_api_validation
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-17 00:27:37 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-17 00:27:37 +0100
commit8ff821670561466a5ff72044ad574dcb955b66c2 (patch)
tree4c46d0d787f355e5a831e355da33f1af45902e9f /misc/extension_api_validation
parent1b8e12c499b7e3265b21c0f9059c77e745aa0fd4 (diff)
parent99fd6ca98c3441b891d4d15b33e52eb3cfd86d7d (diff)
downloadredot-engine-8ff821670561466a5ff72044ad574dcb955b66c2.tar.gz
Merge pull request #88418 from dsnopek/gdextension-unbind-methods
Unbind GDExtension methods that can't reasonably be used
Diffstat (limited to 'misc/extension_api_validation')
-rw-r--r--misc/extension_api_validation/4.2-stable.expected9
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/extension_api_validation/4.2-stable.expected b/misc/extension_api_validation/4.2-stable.expected
index a9390487ef..2a2e74df1f 100644
--- a/misc/extension_api_validation/4.2-stable.expected
+++ b/misc/extension_api_validation/4.2-stable.expected
@@ -120,3 +120,12 @@ GH-87340
Validate extension JSON: JSON file: Field was added in a way that breaks compatibility 'classes/RenderingDevice/methods/screen_get_framebuffer_format': arguments
screen_get_framebuffer_format can now specify the screen it should get the format from. The argument defaults to the main window to emulate the behavior of the old function.
+
+
+GH-88418
+--------
+Validate extension JSON: API was removed: classes/GDExtension/methods/close_library
+Validate extension JSON: API was removed: classes/GDExtension/methods/initialize_library
+Validate extension JSON: API was removed: classes/GDExtension/methods/open_library
+
+Since it was basically impossible to use these methods in any useful way, the GDExtension team agreed that breaking compatibility by removing them was OK.