Skip to content

Latest commit

 

History

History
158 lines (92 loc) · 4.93 KB

CHANGELOG.md

File metadata and controls

158 lines (92 loc) · 4.93 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.

v1.2.4 - 2024-11-15

Added

  • Option to install as Vue plugin

Fixed

  • Laravel validation errors set without input name as key in errors object (#59)

v2.0.0 - 2024-11-15

Bumping version to 2.0.0 to avoid version collisions when publishing to npm registry.

v1.2.2 - 2024-11-15

Fixed

  • Lodash debounce method not found (#58)

v1.2.1 - 2024-11-15

Fixed

  • Lodash debounce method not found (#58)

v1.2.0 - 2024-10-19

Added

  • Form Validation: Introduced a new form validation feature that validates form data based on provided rules before submission, ensuring correct data is sent.- File Upload Progress Tracking: Added support for tracking the progress of file uploads during form submission.
  • Debounced Form Submission: Added support for debounced form submissions, reducing redundant network requests by delaying execution for a specified time.

Changed

  • Improved Error Handling: The error handling mechanism has been improved to integrate more effectively with Laravel's backend for validation errors.
  • Dependency Updates: Project dependencies have been updated to ensure compatibility and performance improvements.

Fixed

  • Form Error Handling: Fixed issues where form errors were not being correctly cleared or reset upon new submissions.

v1.0.11 - 2024-10-18

Added

  • Complete code refactor and restructure
  • Added support for file upload progress tracking.
  • Added handling of Laravel validation error responses within the form.

Changed

  • Updated API to support all common HTTP methods (GET, POST, PUT, PATCH, DELETE).
  • Improved error handling and validation mechanisms to integrate seamlessly with Laravel.
  • Updted dependencies

Fixed

  • Fixed CSRF token management for automatic inclusion in form requests.
  • Fixed issues where form errors were not being properly cleared or reset upon new submissions.

v0.0.11 - 17-10-2023

Added

  • Add getInitial method to Form

Changed

  • Update dependencies
  • Update docblocks to option types and update package.json
  • Update proxy instance to use lodash when checking for reserved field names

Fixed

  • Fix props being set directly on form client
  • Fix all props being set inside data and initial data props of form client

v0.0.10 - 11-10-2023

Changed

  • Update import statements to use proper relative paths
  • Export response types and error types from index.ts

v0.0.9 - 10-10-2023

Added

  • Add extractError private method to Form
  • Add getFirstInputFieldName private method to Form
  • Add exception enum
  • Add initialise private method to Form

Changed

  • Update type hints on Form class
  • Update http initialise method call priority
  • Update README.md with CI badges
  • Update error handler to extract error from response

Fixed

  • Fix typo on ErrorResponse interface name

v0.0.6 - 09-10-2023

Changed

  • Update set data method and error handler
  • Update README.md with more information about how to use with Vue 3 Composition API

v0.0.5 - 09-10-2023

Added

  • Add getIsDirty method to Form
  • Add setIsDirty method to Form
  • Add isDirty property to Form

Changed

  • Update initials data setting mechanism
  • Update allErrors method to errors
  • Integrate Axios types into Formlink types

v0.0.4 - 08-10-2023

Changed

  • Create proxy instance when Form is instantiated
  • Minor method refactors

v0.0.3 - 08-10-2023

Changed

  • Update package.json with more information about the project
  • Update package.json with proper export details

v0.0.2 - 08-10-2023

Changed

  • Update README.md with more information about the project
  • Update package description

v0.0.1 - 08-10-2023

Initial release (alpha)