@joeyshi12/casper 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/dist/server.js +2 -2
  2. package/package.json +1 -1
package/dist/server.js CHANGED
@@ -2892,7 +2892,7 @@ function registerUploadRoutes(app, manager) {
2892
2892
  return { error: "Invalid session id" };
2893
2893
  }
2894
2894
  const uploadDir = uploadDirFor(req.params.id);
2895
- await fs12.mkdir(uploadDir, { recursive: true });
2895
+ await fs12.mkdir(uploadDir, { recursive: true, mode: 448 });
2896
2896
  const results = [];
2897
2897
  const parts = req.files();
2898
2898
  for await (const part of parts) {
@@ -6764,7 +6764,7 @@ var program = new Command();
6764
6764
  // server/src/cli/program.ts
6765
6765
  init_paths();
6766
6766
  init_settings();
6767
- var VERSION = true ? "0.7.0" : "dev";
6767
+ var VERSION = true ? "0.7.1" : "dev";
6768
6768
  async function bootstrap() {
6769
6769
  const file = configFilePath();
6770
6770
  const settings = readSettings(file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joeyshi12/casper",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Web client for kiro-cli over the Agent Client Protocol",
5
5
  "license": "MIT",
6
6
  "author": "Joey Shi",