@oceanprotocol/lib 4.1.3 → 4.1.4
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 +8 -0
- package/ComputeExamples.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v4.1.4](https://github.com/oceanprotocol/ocean.js/compare/v4.1.3...v4.1.4)
|
|
8
|
+
|
|
9
|
+
- Release 4.1.3 [`#1956`](https://github.com/oceanprotocol/ocean.js/pull/1956)
|
|
10
|
+
- Update ddo.js version. [`#1954`](https://github.com/oceanprotocol/ocean.js/pull/1954)
|
|
11
|
+
|
|
7
12
|
#### [v4.1.3](https://github.com/oceanprotocol/ocean.js/compare/v4.1.2...v4.1.3)
|
|
8
13
|
|
|
14
|
+
> 2 June 2025
|
|
15
|
+
|
|
9
16
|
- Fix bugs and log fixes [`#1949`](https://github.com/oceanprotocol/ocean.js/pull/1949)
|
|
17
|
+
- Release 4.1.3 [`f96befa`](https://github.com/oceanprotocol/ocean.js/commit/f96befa4c32b742ec7f962c2bd7667ad59515972)
|
|
10
18
|
- Bump base-x from 3.0.10 to 3.0.11 [`b6338db`](https://github.com/oceanprotocol/ocean.js/commit/b6338dbcc7bbb94c3a67b5da8b37c642dd2eb09c)
|
|
11
19
|
|
|
12
20
|
#### [v4.1.2](https://github.com/oceanprotocol/ocean.js/compare/v4.1.1...v4.1.2)
|
package/ComputeExamples.md
CHANGED
|
@@ -213,8 +213,8 @@ const DATASET_DDO: DDO = {
|
|
|
213
213
|
serviceEndpoint: 'http://127.0.0.1:8001',
|
|
214
214
|
timeout: 300,
|
|
215
215
|
compute: {
|
|
216
|
-
publisherTrustedAlgorithmPublishers: [] as any,
|
|
217
|
-
publisherTrustedAlgorithms: [] as any,
|
|
216
|
+
publisherTrustedAlgorithmPublishers: ['*'] as any,
|
|
217
|
+
publisherTrustedAlgorithms: ['*'] as any,
|
|
218
218
|
allowRawAlgorithm: false,
|
|
219
219
|
allowNetworkAccess: true
|
|
220
220
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oceanprotocol/lib",
|
|
3
3
|
"source": "./src/index.ts",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.4",
|
|
5
5
|
"description": "JavaScript client library for Ocean Protocol",
|
|
6
6
|
"main": "./dist/lib.cjs",
|
|
7
7
|
"umd:main": "dist/lib.umd.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@oasisprotocol/sapphire-paratime": "^1.3.2",
|
|
60
60
|
"@oceanprotocol/contracts": "^2.3.0",
|
|
61
|
-
"@oceanprotocol/ddo-js": "^0.0
|
|
61
|
+
"@oceanprotocol/ddo-js": "^0.1.0",
|
|
62
62
|
"@rdfjs/dataset": "^2.0.2",
|
|
63
63
|
"@rdfjs/formats-common": "^3.1.0",
|
|
64
64
|
"@zazuko/env-node": "^2.1.4",
|