From fb11478cdfefd76522bdea9810c3ad71d5b7e40d Mon Sep 17 00:00:00 2001 From: tstanmay13 <29681256+tstanmay13@users.noreply.github.com> Date: Thu, 14 Aug 2025 18:57:55 +0000 Subject: [PATCH] update changelogs --- .../overview/java/changelog/2025-08-14.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 fern/products/sdks/overview/java/changelog/2025-08-14.mdx diff --git a/fern/products/sdks/overview/java/changelog/2025-08-14.mdx b/fern/products/sdks/overview/java/changelog/2025-08-14.mdx new file mode 100644 index 000000000..ce6e041ca --- /dev/null +++ b/fern/products/sdks/overview/java/changelog/2025-08-14.mdx @@ -0,0 +1,18 @@ +## 2.41.0 +**`(feat):`** Add support for generating wire tests via `enable-wire-tests` flag. Wire tests verify HTTP protocol communication +using MockWebServer and are generated for all endpoints in a service. + +```yaml +customConfig: + enable-wire-tests: true +``` + +Generated tests include: +- Working 404/500 error tests that compile immediately +- Success test templates with TODO comments for customization +- Proper handling of staged vs regular builders +- Constants for all magic strings for better maintainability + +Note: Complex request bodies and response validation require manual customization. + +