mstro-app 0.4.0 → 0.4.1
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/PRIVACY.md +19 -2
- package/package.json +3 -2
package/PRIVACY.md
CHANGED
|
@@ -11,7 +11,7 @@ Mstro, Inc. ("we", "us", "our", "Mstro") is committed to protecting your privacy
|
|
|
11
11
|
|
|
12
12
|
We are the **data controller** for personal data processed through the Service. Our registered place of business is in the United States.
|
|
13
13
|
|
|
14
|
-
**Privacy contact:**
|
|
14
|
+
**Privacy contact:** bravo@mstro.app
|
|
15
15
|
**Website:** https://mstro.app
|
|
16
16
|
|
|
17
17
|
If you have questions about how we handle your data, please contact us before using the Service.
|
|
@@ -140,7 +140,24 @@ When you use mstro.app, we and our third-party service providers use cookies and
|
|
|
140
140
|
|---|---|---|---|
|
|
141
141
|
| Strictly necessary | Authentication, session management, security | Clerk session cookies | No -- required for the Service |
|
|
142
142
|
| Analytics | Understanding how users interact with the platform | PostHog analytics cookies | Yes -- via telemetry opt-out or browser settings |
|
|
143
|
-
| Error tracking |
|
|
143
|
+
| Error tracking | Captu
|
|
144
|
+
npm audit --omit=dev
|
|
145
|
+
shell: /usr/bin/bash -e {0}
|
|
146
|
+
# npm audit report
|
|
147
|
+
|
|
148
|
+
path-to-regexp 8.0.0 - 8.3.0
|
|
149
|
+
Severity: high
|
|
150
|
+
path-to-regexp vulnerable to Denial of Service via sequential optional groups - https://github.com/advisories/GHSA-j3q9-mxjg-w52f
|
|
151
|
+
path-to-regexp vulnerable to Regular Expression Denial of Service via multiple wildcards - https://github.com/advisories/GHSA-27v5-c462-wpq7
|
|
152
|
+
fix available via `npm audit fix`
|
|
153
|
+
node_modules/path-to-regexp
|
|
154
|
+
|
|
155
|
+
1 high severity vulnerability
|
|
156
|
+
|
|
157
|
+
To address all issues, run:
|
|
158
|
+
npm audit fix
|
|
159
|
+
Error: Process completed with exit code 1.
|
|
160
|
+
ring errors for debugging | Sentry session replay (if enabled) | Yes -- via telemetry opt-out |
|
|
144
161
|
|
|
145
162
|
### 4.2 Managing Cookies
|
|
146
163
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mstro-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Run Claude Code from any browser - streams live sessions from your machine to mstro.app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -68,7 +68,8 @@
|
|
|
68
68
|
"node-pty": "^1.1.0"
|
|
69
69
|
},
|
|
70
70
|
"overrides": {
|
|
71
|
-
"minimatch": ">=10.2.1"
|
|
71
|
+
"minimatch": ">=10.2.1",
|
|
72
|
+
"path-to-regexp": ">=8.4.0"
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
74
75
|
"@anthropic-ai/sandbox-runtime": "^0.0.42",
|