@ember-data/legacy-compat 5.9.0-beta.0 → 5.9.0-beta.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/README.md +7 -0
- package/package.json +10 -11
- package/unstable-preview-types/index.d.ts +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,13 @@
|
|
|
28
28
|
|
|
29
29
|
# @ember-data/legacy-compat
|
|
30
30
|
|
|
31
|
+
> [!CAUTION]
|
|
32
|
+
> **⚠️ This is a legacy compatibility package** not recommended for new applications.
|
|
33
|
+
>
|
|
34
|
+
> Use [Handlers](https://warp-drive.io/api/@warp-drive/core/request/interfaces/Handler) with [@warp-drive/core](https://warp-drive.io/api/@warp-drive/core/) instead.
|
|
35
|
+
|
|
36
|
+
This package provides **compatibility shims** to bridge legacy EmberData patterns (Models, Adapters, Serializers) with modern WarpDrive infrastructure (RequestManager, Handlers, Cache).
|
|
37
|
+
|
|
31
38
|
**Tagged Releases**
|
|
32
39
|
|
|
33
40
|
- 
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-data/legacy-compat",
|
|
3
|
-
"description": "Compatibility Shims for Older EmberData",
|
|
4
|
-
"version": "5.9.0-beta.
|
|
3
|
+
"description": "Compatibility Shims for Older (Legacy) EmberData",
|
|
4
|
+
"version": "5.9.0-beta.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -42,20 +42,19 @@
|
|
|
42
42
|
"version": 2
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@embroider/macros": "^1.
|
|
46
|
-
"@warp-drive/core": "5.9.0-beta.
|
|
47
|
-
"@warp-drive/legacy": "5.9.0-beta.
|
|
48
|
-
"@warp-drive/utilities": "5.9.0-beta.
|
|
45
|
+
"@embroider/macros": "^1.20.6",
|
|
46
|
+
"@warp-drive/core": "5.9.0-beta.1",
|
|
47
|
+
"@warp-drive/legacy": "5.9.0-beta.1",
|
|
48
|
+
"@warp-drive/utilities": "5.9.0-beta.1"
|
|
49
49
|
},
|
|
50
|
-
"peerDependencies": {},
|
|
51
50
|
"devDependencies": {
|
|
52
51
|
"@babel/core": "^7.28.3",
|
|
53
52
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
54
53
|
"@babel/preset-env": "^7.28.3",
|
|
55
54
|
"@babel/preset-typescript": "^7.27.1",
|
|
56
|
-
"@warp-drive/internal-config": "5.9.0-beta.
|
|
57
|
-
"typescript": "^5.9.
|
|
58
|
-
"vite": "^7.1
|
|
55
|
+
"@warp-drive/internal-config": "5.9.0-beta.1",
|
|
56
|
+
"typescript": "^5.9.3",
|
|
57
|
+
"vite": "^7.3.1"
|
|
59
58
|
},
|
|
60
59
|
"ember": {
|
|
61
60
|
"edition": "octane"
|
|
@@ -69,7 +68,7 @@
|
|
|
69
68
|
},
|
|
70
69
|
"scripts": {
|
|
71
70
|
"lint": "eslint . --quiet --cache --cache-strategy=content",
|
|
72
|
-
"build:pkg": "vite build
|
|
71
|
+
"build:pkg": "vite build",
|
|
73
72
|
"sync": "echo \"syncing\"",
|
|
74
73
|
"start": "vite"
|
|
75
74
|
}
|