extreme-router 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.MD CHANGED
@@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
 
9
+ ## [1.2.0] - 2025-12-23
10
+
11
+ ### Added
12
+ - Introduced the `skipPluginValidation` option to the router constructor and for use with `router.use()`. When enabled (`true`), plugin validation is skipped during plugin registration, improving router initialization time. Defaults to `false`. **⚠️ WARNING:** This option should only be enabled when using official plugins or well validated custom plugins, as skipping validation can lead to runtime errors if plugins are malformed.
13
+
14
+ ### Documentation
15
+ - Added comprehensive documentation for the `skipPluginValidation` option in the README, including safety warnings and usage guidelines.
16
+ - Added tests for the `skipPluginValidation` feature covering both constructor initialization and `use()` method usage.
17
+
9
18
  ## [1.1.1] - 2025-05-19
10
19
 
11
20
  ### Fixed