Skip to content

Releases: GEOLYTIX/xyz

v4.12.12 (2025/03/10)

10 Mar 10:29
Compare
Choose a tag to compare

Release Notes: patch v4.12.12 🩹

Bugs 🐛

Full Changelog: v4.12.11...v4.12.12

v4.12.11 (2025/02/27)

27 Feb 16:17
Compare
Choose a tag to compare

Release Notes: patch v4.12.11 🩹

Bugs 🐛

Full Changelog: v4.12.10...v4.12.11

v4.12.10 (2025/02/20)

20 Feb 12:42
Compare
Choose a tag to compare

Release Notes: patch v4.12.10 🩹

Enhancements ✨

Bugs 🐛

Library Changes 📚

Full Changelog: v4.12.9...v4.12.10

v4.12.9 (2025/02/10)

10 Feb 09:05
Compare
Choose a tag to compare

Release Notes: patch v4.12.9 🩹

Bugs 🐛

Full Changelog: v{{v4.12.8}}...v{{v4.12.9}}

v4.12.8 (2025/01/24)

24 Jan 12:12
Compare
Choose a tag to compare

Release Notes: patch v4.12.8 🩹

New Features 🚀

Enhancements ✨

Bugs 🐛

Security 🔐

Full Changelog: v4.12.7...v4.12.8

v4.12.7 Update (14/01/2025)

14 Jan 11:58
Compare
Choose a tag to compare

Release Notes: patch v4.12.7 (January 14th 2025)

New Features 🚀

Bugs 🐛

Security 🔐

Full Changelog: v4.12.6...v4.12.7

v4.12.6 Update (9/12/2024)

18 Dec 08:58
2e53367
Compare
Choose a tag to compare

Release Notes: Patch v4.12.6 (December 9th 2024) 🩹

Enhancements ✨

Full Changelog: v4.12.5...v4.12.6

v4.12.5 Update (29/11/2024)

29 Nov 11:45
Compare
Choose a tag to compare

Release Notes: Patch v4.12.5 (November 29th 2024) 🩹

Enhancements ✨

Bugs 🐛

Documentation

Full Changelog: v4.12.4...v4.12.5

v4.12.4 Update (22/11/2024)

22 Nov 14:36
Compare
Choose a tag to compare

Release Notes: Patch v4.12.4 (November 22nd 2024) 🩹

Enhancements ✨

Bugs 🐛

Full Changelog: v4.12.3...v4.12.4

v4.12.3 Update (13/11/2024)

18 Nov 08:19
79c3d10
Compare
Choose a tag to compare

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