@memberjunction/ai-heygen 6.1.0-edge.6 → 6.1.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +62 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @memberjunction/ai-heygen
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7857d8e: Add `@memberjunction/network-utils` and remove `axios` from the repository.
|
|
8
|
+
|
|
9
|
+
The SSRF guard added for the web/HTTP actions was Actions-specific but the concern is not, so it
|
|
10
|
+
moves into a new dependency-free, Node-only package (`node:dns` + `node:net` only) that any
|
|
11
|
+
server-side package can depend on: `AssertPublicUrl`, `SafeFetch`, `IsBlockedIPAddress`, `SSRFError`.
|
|
12
|
+
|
|
13
|
+
The same package ships `HttpClient` / `HttpRequest` — a native-`fetch` HTTP client that replaces
|
|
14
|
+
`axios` across all 11 packages that used it. Consolidating on one client removes the third-party
|
|
15
|
+
dependency and puts the SSRF guard one option flag (`ValidateUrl`) away from every outbound call
|
|
16
|
+
site, which was impossible when each package reached for `axios` directly.
|
|
17
|
+
|
|
18
|
+
Also fixes an SSRF sink the original pass missed: the `API Rate Limiter` action takes a
|
|
19
|
+
caller-controlled URL and returns the response body, and is now guarded.
|
|
20
|
+
|
|
21
|
+
Public exports use `PascalCase`, per repo convention.
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [834f8d7]
|
|
24
|
+
- Updated dependencies [e533ce5]
|
|
25
|
+
- Updated dependencies [b1b24d7]
|
|
26
|
+
- Updated dependencies [2c826f7]
|
|
27
|
+
- Updated dependencies [61b5612]
|
|
28
|
+
- Updated dependencies [4586215]
|
|
29
|
+
- Updated dependencies [197fdf8]
|
|
30
|
+
- Updated dependencies [f5ec13b]
|
|
31
|
+
- Updated dependencies [1a2ce13]
|
|
32
|
+
- Updated dependencies [1940a4d]
|
|
33
|
+
- Updated dependencies [5ecfdb4]
|
|
34
|
+
- Updated dependencies [a5f92d2]
|
|
35
|
+
- Updated dependencies [ada8784]
|
|
36
|
+
- Updated dependencies [11de1a3]
|
|
37
|
+
- Updated dependencies [cefc302]
|
|
38
|
+
- Updated dependencies [080f4cd]
|
|
39
|
+
- Updated dependencies [be0bdb2]
|
|
40
|
+
- Updated dependencies [48ff99f]
|
|
41
|
+
- Updated dependencies [076fa5d]
|
|
42
|
+
- Updated dependencies [7857d8e]
|
|
43
|
+
- Updated dependencies [23c2521]
|
|
44
|
+
- Updated dependencies [9cbe17f]
|
|
45
|
+
- Updated dependencies [97cbf5f]
|
|
46
|
+
- Updated dependencies [f5ec13b]
|
|
47
|
+
- Updated dependencies [de343b5]
|
|
48
|
+
- Updated dependencies [1bd9674]
|
|
49
|
+
- Updated dependencies [7fcdc2d]
|
|
50
|
+
- @memberjunction/global@6.1.0
|
|
51
|
+
- @memberjunction/ai@6.1.0
|
|
52
|
+
- @memberjunction/network-utils@6.1.0
|
|
53
|
+
|
|
54
|
+
## 6.1.0-edge.7
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- Updated dependencies [61b5612]
|
|
59
|
+
- Updated dependencies [076fa5d]
|
|
60
|
+
- Updated dependencies [7fcdc2d]
|
|
61
|
+
- @memberjunction/ai@6.1.0-edge.7
|
|
62
|
+
- @memberjunction/global@6.1.0-edge.7
|
|
63
|
+
- @memberjunction/network-utils@6.1.0-edge.7
|
|
64
|
+
|
|
3
65
|
## 6.1.0-edge.6
|
|
4
66
|
|
|
5
67
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ai-heygen",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "6.1.0
|
|
4
|
+
"version": "6.1.0",
|
|
5
5
|
"description": "MemberJunction Wrapper for HeyGen Video Generation",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"author": "MemberJunction.com",
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@elevenlabs/elevenlabs-js": "^2.34.0",
|
|
15
|
-
"@memberjunction/ai": "6.1.0
|
|
16
|
-
"@memberjunction/global": "6.1.0
|
|
17
|
-
"@memberjunction/network-utils": "6.1.0
|
|
15
|
+
"@memberjunction/ai": "6.1.0",
|
|
16
|
+
"@memberjunction/global": "6.1.0",
|
|
17
|
+
"@memberjunction/network-utils": "6.1.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|