Skip to content

v4.12.3 Update (13/11/2024)

Compare
Choose a tag to compare
@RobAndrewHurst RobAndrewHurst released this 18 Nov 08:19
· 224 commits to main since this release
79c3d10

Release Notes: Patch v4.12.3 (November 13th 2024) 🩹

Enhancements ✨

Bugs 🐛

  • Cloudfront buffer support for fetch Node.js API by @RobAndrewHurst in #1701

    1. The current iteration didn't use the correct method to handle buffers from a response.
    if (ref.params?.buffer) return await response.buffer()

    Solution:

    if (ref.params?.buffer) {
    const arrayBuffer = await response.arrayBuffer()
    return Buffer.from(arrayBuffer)
    }
  • Help dialog missing minimize & close buttons by @simon-leech in #1699

  • Roles sent to client by @RobAndrewHurst in #1696

    1. The roles were being sent via the locale and layer api's. They have now been removed.
  • Zero env config fails ACL by @dbauszus-glx in #1687

  • Open layers version check failure by @simon-leech in #1673

Code Enhancements

Documentation 📖

Full Changelog: v4.12.2...v4.12.3