Skip to content

Latest commit

 

History

History
109 lines (67 loc) · 3.04 KB

CHANGELOG.md

File metadata and controls

109 lines (67 loc) · 3.04 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.4.1 - 2024-11-26

Added

  • Support Shakapacker in the installation script. (@skryukov)

Fixed

  • Fix installation script interactive mode. (@skryukov)
  • Fix installation script dependencies installation. (@skryukov)

0.4.0 - 2024-11-03

Added

  • [BREAKING] Support Svelte 5. (@skryukov) turbo-mount/svelte is now the Svelte 5 plugin. The Svelte 4 plugin is now turbo-mount/svelte4.

0.3.3 - 2024-09-24

Added

  • Support components in nested directories. (@skryukov)
  • Support pnpm build tool. (@jkogara)

0.3.2 - 2024-06-24

Fixed

0.3.1 - 2024-06-16

Added

  • Add registerComponents helper for ESBuild. (@skryukov)

Fixed

  • Fix entrypoint issue in the install generator. (@skryukov)

0.3.0 - 2024-05-31

Added

Changed

  • [BREAKING] New API without controller inheritance. (@skryukov) To migrate to the new API:
    • Replace new TurboMountReact() (or any other framework specific constructor) with new TurboMount()
    • Replace turboMount.register(...) with registerComponent(turboMount, ...)
    • Replace turbo_mount_react_component (or any other framework specific helper) with turbo_mount
    • Also see the new API for plugins and custom controllers in the README.

0.2.3 - 2024-05-12

Added

  • Add a mount target to the base controller. (@skryukov)
  • Add registerComponents helper for vite. (@skryukov)
  • Allow to omit the application property in the constructor. (@skryukov) TurboMount will try to find the application in the window.Stimulus and will initialize new one if not found.

0.2.2 - 2024-05-09

Fixed

0.2.0 - 2024-05-09

Added

0.1.0 - 2024-05-07

Added