@pluv/platform-cloudflare 0.21.0 → 0.21.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-cloudflare@0.21.0 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
2
+ > @pluv/platform-cloudflare@0.21.1 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
3
3
  > tsup src/index.ts --format esm,cjs --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -9,10 +9,10 @@
9
9
  ESM Build start
10
10
  CJS Build start
11
11
  CJS dist/index.js 15.00 KB
12
- CJS ⚡️ Build success in 80ms
12
+ CJS ⚡️ Build success in 118ms
13
13
  ESM dist/index.mjs 13.96 KB
14
- ESM ⚡️ Build success in 85ms
14
+ ESM ⚡️ Build success in 122ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 2845ms
16
+ DTS ⚡️ Build success in 2904ms
17
17
  DTS dist/index.d.mts 4.11 KB
18
18
  DTS dist/index.d.ts 4.11 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @pluv/platform-cloudflare
2
2
 
3
+ ## 0.21.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ba53e7a: Revert `@platform/cloudflare` mode to `attached` from `detached` temporarily.
8
+ - @pluv/io@0.21.1
9
+ - @pluv/types@0.21.1
10
+
3
11
  ## 0.21.0
4
12
 
5
13
  ### Minor Changes
package/dist/index.js CHANGED
@@ -333,7 +333,7 @@ var PersistanceCloudflare = class extends import_io2.AbstractPersistance {
333
333
  };
334
334
 
335
335
  // src/constants.ts
336
- var DEFAULT_REGISTRATION_MODE = "detached";
336
+ var DEFAULT_REGISTRATION_MODE = "attached";
337
337
 
338
338
  // src/CloudflarePlatform.ts
339
339
  var CloudflarePlatform = class _CloudflarePlatform extends import_io3.AbstractPlatform {
package/dist/index.mjs CHANGED
@@ -309,7 +309,7 @@ var PersistanceCloudflare = class extends AbstractPersistance {
309
309
  };
310
310
 
311
311
  // src/constants.ts
312
- var DEFAULT_REGISTRATION_MODE = "detached";
312
+ var DEFAULT_REGISTRATION_MODE = "attached";
313
313
 
314
314
  // src/CloudflarePlatform.ts
315
315
  var CloudflarePlatform = class _CloudflarePlatform extends AbstractPlatform {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluv/platform-cloudflare",
3
- "version": "0.21.0",
3
+ "version": "0.21.1",
4
4
  "description": "@pluv/io adapter for cloudflare workers",
5
5
  "author": "leedavidcs",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "path-to-regexp": "^7.1.0",
21
- "@pluv/io": "^0.21.0",
22
- "@pluv/types": "^0.21.0"
21
+ "@pluv/io": "^0.21.1",
22
+ "@pluv/types": "^0.21.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@cloudflare/workers-types": "^4.20240806.0",
26
26
  "eslint": "^8.57.0",
27
27
  "tsup": "^8.2.4",
28
28
  "typescript": "^5.5.4",
29
- "@pluv/tsconfig": "^0.21.0",
30
- "eslint-config-pluv": "^0.21.0"
29
+ "@pluv/tsconfig": "^0.21.1",
30
+ "eslint-config-pluv": "^0.21.1"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "tsup src/index.ts --format esm,cjs --dts",
package/src/constants.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import type { WebSocketRegistrationMode } from "@pluv/io";
2
2
 
3
- export const DEFAULT_REGISTRATION_MODE: WebSocketRegistrationMode = "detached";
3
+ export const DEFAULT_REGISTRATION_MODE: WebSocketRegistrationMode = "attached";