From 64ec36bef7b84c8b344f3982f08e2012604e4845 Mon Sep 17 00:00:00 2001 From: fern-support <126544928+fern-support@users.noreply.github.com> Date: Fri, 29 Aug 2025 14:14:14 +0000 Subject: [PATCH] update changelogs --- fern/products/sdks/overview/python/changelog/2025-08-27.mdx | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 fern/products/sdks/overview/python/changelog/2025-08-27.mdx diff --git a/fern/products/sdks/overview/python/changelog/2025-08-27.mdx b/fern/products/sdks/overview/python/changelog/2025-08-27.mdx new file mode 100644 index 000000000..4ec5bea81 --- /dev/null +++ b/fern/products/sdks/overview/python/changelog/2025-08-27.mdx @@ -0,0 +1,6 @@ +## 4.27.0-rc0 +**`(feat):`** Client imports are now lazy loaded by default. This will greatly reduce memory footprint when using a small portion of a large API. +The tradeoff is a latency penalty when first accessing a client. +Users can opt in to eager loading (the old behavior) by setting the `lazy_imports` flag to `false` in their configuration. + +