@lilaquadrat/interfaces 1.43.0 → 1.44.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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.44.0](https://github.com/lilaquadrat/interfaces/compare/v1.43.0...v1.44.0) (2026-06-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **limiterplugin:** added whitelist ([c8bda16](https://github.com/lilaquadrat/interfaces/commit/c8bda166841b0fbece56c6c724ca6578ba925de8))
|
|
11
|
+
|
|
5
12
|
## [1.43.0](https://github.com/lilaquadrat/interfaces/compare/v1.42.0...v1.43.0) (2026-05-28)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -30,6 +30,8 @@ export interface LimiterPluginOptions {
|
|
|
30
30
|
overrides?: LimiterPrefixOverride[];
|
|
31
31
|
/** Routes to skip entirely. Default: ['/health', '/']. */
|
|
32
32
|
ignoreRoutes?: string[];
|
|
33
|
+
/** URL prefixes that skip rate limiting entirely. Longest match wins. */
|
|
34
|
+
whitelist?: string[];
|
|
33
35
|
/** Fail-open if Mongo errors. Default: true. */
|
|
34
36
|
skipOnError?: boolean;
|
|
35
37
|
}
|
|
@@ -30,6 +30,8 @@ export interface LimiterPluginOptions {
|
|
|
30
30
|
overrides?: LimiterPrefixOverride[];
|
|
31
31
|
/** Routes to skip entirely. Default: ['/health', '/']. */
|
|
32
32
|
ignoreRoutes?: string[];
|
|
33
|
+
/** URL prefixes that skip rate limiting entirely. Longest match wins. */
|
|
34
|
+
whitelist?: string[];
|
|
33
35
|
/** Fail-open if Mongo errors. Default: true. */
|
|
34
36
|
skipOnError?: boolean;
|
|
35
37
|
}
|
package/package.json
CHANGED
|
@@ -32,6 +32,8 @@ export interface LimiterPluginOptions {
|
|
|
32
32
|
overrides?: LimiterPrefixOverride[];
|
|
33
33
|
/** Routes to skip entirely. Default: ['/health', '/']. */
|
|
34
34
|
ignoreRoutes?: string[];
|
|
35
|
+
/** URL prefixes that skip rate limiting entirely. Longest match wins. */
|
|
36
|
+
whitelist?: string[];
|
|
35
37
|
/** Fail-open if Mongo errors. Default: true. */
|
|
36
38
|
skipOnError?: boolean;
|
|
37
39
|
}
|