dodopayments 2.22.4 → 2.22.6
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 +27 -0
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.22.6 (2026-03-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v2.22.5...v2.22.6](https://github.com/dodopayments/dodopayments-typescript/compare/v2.22.5...v2.22.6)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* also patch global setInterval in instructions module for CF Workers ([8f6d682](https://github.com/dodopayments/dodopayments-typescript/commit/8f6d68203477e064df6b97558f215f7d085998d6))
|
|
10
|
+
* patch code-tool-paths.cjs for Cloudflare Workers compatibility ([66d9bee](https://github.com/dodopayments/dodopayments-typescript/commit/66d9beeaeaf03f68c6a3a8d38c4db56e7df9e791))
|
|
11
|
+
* patch pino logger and await initMcpServer for CF Workers ([55dfa0f](https://github.com/dodopayments/dodopayments-typescript/commit/55dfa0f3c5435026cc2a30e056c5dc0397f9a281))
|
|
12
|
+
* prettier formatting and pin wrangler-action to commit hash ([2ac5c4c](https://github.com/dodopayments/dodopayments-typescript/commit/2ac5c4ce0569adb1a2e22146b263ed1b010b7330))
|
|
13
|
+
* rename dodopayments_api to dodopayments-mcp ([7aafafc](https://github.com/dodopayments/dodopayments-typescript/commit/7aafafcf27782ca262558fb3e1759de3b0dcdf10))
|
|
14
|
+
* resolve CodeQL TOCTOU race conditions and revert wrangler-action pin ([f5730b7](https://github.com/dodopayments/dodopayments-typescript/commit/f5730b78bcac0a2fc5bacdf77a372e1748dc6963))
|
|
15
|
+
|
|
16
|
+
## 2.22.5 (2026-03-03)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v2.22.4...v2.22.5](https://github.com/dodopayments/dodopayments-typescript/compare/v2.22.4...v2.22.5)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* stub @valtown/deno-http-worker for Cloudflare Workers compatibility ([152a361](https://github.com/dodopayments/dodopayments-typescript/commit/152a3611b3285b50faa9b7920941ebf0c2dda3e4))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
* **internal:** configure MCP Server hosting ([c8ffe79](https://github.com/dodopayments/dodopayments-typescript/commit/c8ffe79f57efb9780bc8e8d6b6a8962fcca36841))
|
|
28
|
+
* **internal:** unconfigure MCP Server hosting ([cb3f5c5](https://github.com/dodopayments/dodopayments-typescript/commit/cb3f5c5074d3db0f491f27feeb292f369258a7f3))
|
|
29
|
+
|
|
3
30
|
## 2.22.4 (2026-03-03)
|
|
4
31
|
|
|
5
32
|
Full Changelog: [v2.22.3...v2.22.4](https://github.com/dodopayments/dodopayments-typescript/compare/v2.22.3...v2.22.4)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.22.
|
|
1
|
+
export const VERSION = '2.22.6'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.22.
|
|
1
|
+
export declare const VERSION = "2.22.6";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.22.
|
|
1
|
+
export declare const VERSION = "2.22.6";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '2.22.
|
|
1
|
+
export const VERSION = '2.22.6'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|