@artblocks/abx-effects 0.1.0-alpha.27 → 0.1.0-alpha.28
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/CHANGELOG.md +15 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @artblocks/abx-effects
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.28
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c5e0d84: Published package `homepage` and `bugs` fields now point at docs.abx.io instead of a private GitHub
|
|
8
|
+
repo that 404s. File reports with `abx feedback`; `npm bugs` no longer names a repository the public
|
|
9
|
+
cannot open.
|
|
10
|
+
|
|
11
|
+
Reported in the 2026-08-27 tester batch (feedback 40142396).
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [c5e0d84]
|
|
14
|
+
- Updated dependencies [c5e0d84]
|
|
15
|
+
- @artblocks/abx-sdk@0.1.0-alpha.28
|
|
16
|
+
- @artblocks/abx-storage@0.1.0-alpha.28
|
|
17
|
+
|
|
3
18
|
## 0.1.0-alpha.27
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artblocks/abx-effects",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.28",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ABX Self-Host Toolkit (Layer 3) — the reference effect runner. A deployed, long-running service hosting spine-subscribing effects (render first) behind one harness; stateless via inputsHash addressing. The playwright npm package is a normal (small, browserless) dependency pinned EXACTLY to the Dockerfile.effects base-image tag; browsers install only where captures run (`npx playwright install chromium`).",
|
|
6
6
|
"type": "module",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"url": "git+https://github.com/ArtBlocks/abx.git",
|
|
26
26
|
"directory": "packages/effects"
|
|
27
27
|
},
|
|
28
|
-
"homepage": "https://
|
|
29
|
-
"bugs": "https://
|
|
28
|
+
"homepage": "https://docs.abx.io",
|
|
29
|
+
"bugs": "https://docs.abx.io/docs/using-abx/remote-services",
|
|
30
30
|
"keywords": [
|
|
31
31
|
"abx",
|
|
32
32
|
"nft",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"playwright": "1.61.1",
|
|
43
43
|
"viem": "^2.21.0",
|
|
44
|
-
"@artblocks/abx-sdk": "0.1.0-alpha.
|
|
45
|
-
"@artblocks/abx-storage": "0.1.0-alpha.
|
|
44
|
+
"@artblocks/abx-sdk": "0.1.0-alpha.28",
|
|
45
|
+
"@artblocks/abx-storage": "0.1.0-alpha.28"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsc -b tsconfig.build.json"
|