@geekmidas/rate-limit 4.0.0 → 9.0.2
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 +36 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @geekmidas/rate-limit
|
|
2
2
|
|
|
3
|
+
## 9.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#12](https://github.com/geekmidas/toolbox/pull/12) [`d53863a`](https://github.com/geekmidas/toolbox/commit/d53863a84db2e4ab5420e08f79128b637043fc42) Thanks [@geekmidas](https://github.com/geekmidas)! - Align every published package on a single version and keep them in step.
|
|
8
|
+
|
|
9
|
+
All packages now share one version, enforced by a changesets `fixed` group. The
|
|
10
|
+
baseline is 9.0.1 — @geekmidas/client's published version — so nothing moves
|
|
11
|
+
backwards; this release takes the whole set to 9.0.2 together.
|
|
12
|
+
|
|
13
|
+
Independent versions made "which version of the docs applies to me"
|
|
14
|
+
unanswerable: a reader on constructs@7 and cli@2 was on no version at all. One
|
|
15
|
+
number per release makes versioned documentation possible, and lets 9 freeze as
|
|
16
|
+
the current paradigm while the constructs rework is developed against it.
|
|
17
|
+
|
|
18
|
+
Every release now publishes every package, and a major anywhere is a major
|
|
19
|
+
everywhere. Peer ranges get simpler in return.
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`d53863a`](https://github.com/geekmidas/toolbox/commit/d53863a84db2e4ab5420e08f79128b637043fc42)]:
|
|
22
|
+
- @geekmidas/cache@9.0.2
|
|
23
|
+
- @geekmidas/logger@9.0.2
|
|
24
|
+
- @geekmidas/services@9.0.2
|
|
25
|
+
|
|
26
|
+
## 4.0.1
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 🐛 [#11](https://github.com/geekmidas/toolbox/pull/11) [`40f4dc0`](https://github.com/geekmidas/toolbox/commit/40f4dc095911b2223a255029d8f776caf7781309) Thanks [@geekmidas](https://github.com/geekmidas)! - Patch release across all packages to realign published versions with the
|
|
31
|
+
registry. The previous release only published the four packages that had
|
|
32
|
+
version bumps; the remaining packages failed with "cannot publish over the
|
|
33
|
+
previously published versions" because their versions were unchanged.
|
|
34
|
+
- Updated dependencies [[`40f4dc0`](https://github.com/geekmidas/toolbox/commit/40f4dc095911b2223a255029d8f776caf7781309)]:
|
|
35
|
+
- @geekmidas/cache@1.1.2
|
|
36
|
+
- @geekmidas/logger@1.0.3
|
|
37
|
+
- @geekmidas/services@2.0.1
|
|
38
|
+
|
|
3
39
|
## 4.0.0
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/rate-limit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@geekmidas/cache": "^
|
|
29
|
-
"@geekmidas/logger": "^
|
|
30
|
-
"@geekmidas/services": "^
|
|
28
|
+
"@geekmidas/cache": "^9.0.2",
|
|
29
|
+
"@geekmidas/logger": "^9.0.2",
|
|
30
|
+
"@geekmidas/services": "^9.0.2"
|
|
31
31
|
},
|
|
32
32
|
"peerDependenciesMeta": {
|
|
33
33
|
"@geekmidas/cache": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@geekmidas/cache": "^
|
|
45
|
-
"@geekmidas/logger": "^
|
|
46
|
-
"@geekmidas/services": "^
|
|
44
|
+
"@geekmidas/cache": "^9.0.2",
|
|
45
|
+
"@geekmidas/logger": "^9.0.2",
|
|
46
|
+
"@geekmidas/services": "^9.0.2"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"ts": "tsc --noEmit --skipLibCheck src/**/*.ts"
|