@pluv/platform-cloudflare 3.2.0 → 3.2.2
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.2.
|
|
2
|
+
> @pluv/platform-cloudflare@3.2.2 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 31ms
|
|
13
13
|
[34mDTS[39m Build start
|
|
14
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
+
[32mDTS[39m ⚡️ Build success in 927ms
|
|
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.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8665dbe]
|
|
8
|
+
- @pluv/types@3.2.2
|
|
9
|
+
- @pluv/crdt@3.2.2
|
|
10
|
+
- @pluv/io@3.2.2
|
|
11
|
+
- @pluv/persistence-cloudflare-transactional-storage@3.2.2
|
|
12
|
+
|
|
13
|
+
## 3.2.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- @pluv/crdt@3.2.1
|
|
18
|
+
- @pluv/io@3.2.1
|
|
19
|
+
- @pluv/persistence-cloudflare-transactional-storage@3.2.1
|
|
20
|
+
- @pluv/types@3.2.1
|
|
21
|
+
|
|
3
22
|
## 3.2.0
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1323,7 +1342,6 @@
|
|
|
1323
1342
|
### Minor Changes
|
|
1324
1343
|
|
|
1325
1344
|
- 99b5ca9: ## Breaking Changes
|
|
1326
|
-
|
|
1327
1345
|
- `@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.
|
|
1328
1346
|
|
|
1329
1347
|
### Before:
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-cloudflare",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
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.2.
|
|
21
|
-
"@pluv/io": "^3.2.
|
|
22
|
-
"@pluv/persistence-cloudflare-transactional-storage": "^3.2.
|
|
23
|
-
"@pluv/types": "^3.2.
|
|
24
|
+
"@pluv/crdt": "^3.2.2",
|
|
25
|
+
"@pluv/io": "^3.2.2",
|
|
26
|
+
"@pluv/persistence-cloudflare-transactional-storage": "^3.2.2",
|
|
27
|
+
"@pluv/types": "^3.2.2"
|
|
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.2.
|
|
31
|
-
"eslint-config-pluv": "^3.2.
|
|
34
|
+
"@pluv/tsconfig": "^3.2.2",
|
|
35
|
+
"eslint-config-pluv": "^3.2.2"
|
|
32
36
|
},
|
|
33
37
|
"scripts": {
|
|
34
38
|
"build": "tsup src/index.ts",
|