@pluv/platform-pluv 2.3.0 → 2.3.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pluv/platform-pluv@2.3.0 build /home/runner/work/pluv/pluv/packages/platform-pluv
2
+ > @pluv/platform-pluv@2.3.1 build /home/runner/work/pluv/pluv/packages/platform-pluv
3
3
  > tsup src/index.ts --format esm,cjs --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist/index.js 16.82 KB
12
- CJS ⚡️ Build success in 64ms
13
- ESM dist/index.mjs 14.98 KB
14
- ESM ⚡️ Build success in 65ms
11
+ ESM dist/index.mjs 15.03 KB
12
+ ESM ⚡️ Build success in 131ms
13
+ CJS dist/index.js 16.87 KB
14
+ CJS ⚡️ Build success in 137ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 6964ms
16
+ DTS ⚡️ Build success in 6927ms
17
17
  DTS dist/index.d.mts 3.79 KB
18
18
  DTS dist/index.d.ts 3.79 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pluv/platform-pluv
2
2
 
3
+ ## 2.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 824c98b: Added more webhook logging.
8
+ - @pluv/crdt@2.3.1
9
+ - @pluv/io@2.3.1
10
+ - @pluv/types@2.3.1
11
+
3
12
  ## 2.3.0
4
13
 
5
14
  ### Minor Changes
package/dist/index.js CHANGED
@@ -394,6 +394,7 @@ var PluvPlatform = class extends import_io.AbstractPlatform {
394
394
  } catch (error) {
395
395
  const message = error instanceof Error ? error.message : "Unexpected error";
396
396
  const status = error instanceof HttpError ? error.status : 500;
397
+ this._logDebug("Uncaught error: ", message);
397
398
  return createErrorResponse(c, { message }, status);
398
399
  }
399
400
  }));
package/dist/index.mjs CHANGED
@@ -364,6 +364,7 @@ var PluvPlatform = class extends AbstractPlatform {
364
364
  } catch (error) {
365
365
  const message = error instanceof Error ? error.message : "Unexpected error";
366
366
  const status = error instanceof HttpError ? error.status : 500;
367
+ this._logDebug("Uncaught error: ", message);
367
368
  return createErrorResponse(c, { message }, status);
368
369
  }
369
370
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluv/platform-pluv",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "@pluv/io adapter for pluv.io",
5
5
  "author": "leedavidcs",
6
6
  "license": "MIT",
@@ -21,16 +21,16 @@
21
21
  "fast-json-stable-stringify": "^2.1.0",
22
22
  "hono": "^4.7.10",
23
23
  "zod": "^3.25.17",
24
- "@pluv/types": "^2.3.0",
25
- "@pluv/crdt": "^2.3.0",
26
- "@pluv/io": "^2.3.0"
24
+ "@pluv/crdt": "^2.3.1",
25
+ "@pluv/io": "^2.3.1",
26
+ "@pluv/types": "^2.3.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "eslint": "^9.27.0",
30
30
  "tsup": "^8.5.0",
31
31
  "typescript": "^5.8.3",
32
- "@pluv/tsconfig": "^2.3.0",
33
- "eslint-config-pluv": "^2.3.0"
32
+ "@pluv/tsconfig": "^2.3.1",
33
+ "eslint-config-pluv": "^2.3.1"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "tsup src/index.ts --format esm,cjs --dts",
@@ -370,6 +370,8 @@ export class PluvPlatform<
370
370
  const message = error instanceof Error ? error.message : "Unexpected error";
371
371
  const status = error instanceof HttpError ? error.status : 500;
372
372
 
373
+ this._logDebug("Uncaught error: ", message);
374
+
373
375
  return createErrorResponse(c, { message }, status);
374
376
  }
375
377
  });