@pluv/platform-cloudflare 3.1.7 → 3.2.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +19 -1
- package/package.json +14 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-cloudflare@3.1
|
|
2
|
+
> @pluv/platform-cloudflare@3.2.1 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
|
|
3
3
|
> tsup src/index.ts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[34mCLI[39m Target: es6
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.mjs [22m[32m8.92 KB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 21ms
|
|
13
13
|
[34mDTS[39m Build start
|
|
14
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
+
[32mDTS[39m ⚡️ Build success in 913ms
|
|
15
15
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m5.50 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @pluv/platform-cloudflare
|
|
2
2
|
|
|
3
|
+
## 3.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @pluv/crdt@3.2.1
|
|
8
|
+
- @pluv/io@3.2.1
|
|
9
|
+
- @pluv/persistence-cloudflare-transactional-storage@3.2.1
|
|
10
|
+
- @pluv/types@3.2.1
|
|
11
|
+
|
|
12
|
+
## 3.2.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [6d2b257]
|
|
17
|
+
- @pluv/io@3.2.0
|
|
18
|
+
- @pluv/persistence-cloudflare-transactional-storage@3.2.0
|
|
19
|
+
- @pluv/crdt@3.2.0
|
|
20
|
+
- @pluv/types@3.2.0
|
|
21
|
+
|
|
3
22
|
## 3.1.7
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1313,7 +1332,6 @@
|
|
|
1313
1332
|
### Minor Changes
|
|
1314
1333
|
|
|
1315
1334
|
- 99b5ca9: ## Breaking Changes
|
|
1316
|
-
|
|
1317
1335
|
- `@pluv/io` has been updated to introduce `PluvProcedure`, `PluvRouter` and `PluvServer`. This change is intended to improve the ergonomics of declaring events and simplifying inferences of event types.
|
|
1318
1336
|
|
|
1319
1337
|
### Before:
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-cloudflare",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "@pluv/io adapter for cloudflare workers",
|
|
5
|
-
"author":
|
|
5
|
+
"author": {
|
|
6
|
+
"email": "david@pluv.io",
|
|
7
|
+
"name": "i3dly",
|
|
8
|
+
"url": "https://github.com/i3dly"
|
|
9
|
+
},
|
|
6
10
|
"license": "MIT",
|
|
7
11
|
"homepage": "https://github.com/pluv-io/pluv",
|
|
8
12
|
"repository": {
|
|
@@ -17,18 +21,18 @@
|
|
|
17
21
|
},
|
|
18
22
|
"dependencies": {
|
|
19
23
|
"path-to-regexp": "^8.2.0",
|
|
20
|
-
"@pluv/crdt": "^3.1
|
|
21
|
-
"@pluv/io": "^3.1
|
|
22
|
-
"@pluv/persistence-cloudflare-transactional-storage": "^3.1
|
|
23
|
-
"@pluv/types": "^3.1
|
|
24
|
+
"@pluv/crdt": "^3.2.1",
|
|
25
|
+
"@pluv/io": "^3.2.1",
|
|
26
|
+
"@pluv/persistence-cloudflare-transactional-storage": "^3.2.1",
|
|
27
|
+
"@pluv/types": "^3.2.1"
|
|
24
28
|
},
|
|
25
29
|
"devDependencies": {
|
|
26
|
-
"@cloudflare/workers-types": "^4.
|
|
27
|
-
"eslint": "^9.
|
|
30
|
+
"@cloudflare/workers-types": "^4.20250715.0",
|
|
31
|
+
"eslint": "^9.31.0",
|
|
28
32
|
"tsup": "^8.5.0",
|
|
29
33
|
"typescript": "^5.8.3",
|
|
30
|
-
"@pluv/tsconfig": "^3.1
|
|
31
|
-
"eslint-config-pluv": "^3.1
|
|
34
|
+
"@pluv/tsconfig": "^3.2.1",
|
|
35
|
+
"eslint-config-pluv": "^3.2.1"
|
|
32
36
|
},
|
|
33
37
|
"scripts": {
|
|
34
38
|
"build": "tsup src/index.ts",
|