@oceanprotocol/lib 4.1.3 → 4.2.0
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 +17 -0
- package/ComputeExamples.md +2 -2
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.modern.js +1 -1
- package/dist/lib.modern.js.map +1 -1
- package/dist/lib.module.mjs +1 -1
- package/dist/lib.module.mjs.map +1 -1
- package/dist/lib.umd.js +1 -1
- package/dist/lib.umd.js.map +1 -1
- package/dist/types/services/Aquarius.d.ts +5 -5
- package/dist/types/services/Provider.d.ts +36 -19
- package/dist/types/utils/Addresses.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,26 @@ 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.2.0](https://github.com/oceanprotocol/ocean.js/compare/v4.1.4...v4.2.0)
|
|
8
|
+
|
|
9
|
+
- Bump eslint-config-prettier from 9.1.0 to 10.1.5 [`#1951`](https://github.com/oceanprotocol/ocean.js/pull/1951)
|
|
10
|
+
- Bump base-x from 3.0.10 to 3.0.11 [`#1939`](https://github.com/oceanprotocol/ocean.js/pull/1939)
|
|
11
|
+
- Auth header + auth token methods [`#1953`](https://github.com/oceanprotocol/ocean.js/pull/1953)
|
|
12
|
+
|
|
13
|
+
#### [v4.1.4](https://github.com/oceanprotocol/ocean.js/compare/v4.1.3...v4.1.4)
|
|
14
|
+
|
|
15
|
+
> 11 June 2025
|
|
16
|
+
|
|
17
|
+
- Release 4.1.3 [`#1956`](https://github.com/oceanprotocol/ocean.js/pull/1956)
|
|
18
|
+
- Update ddo.js version. [`#1954`](https://github.com/oceanprotocol/ocean.js/pull/1954)
|
|
19
|
+
- Release 4.1.4 [`1ed8713`](https://github.com/oceanprotocol/ocean.js/commit/1ed87132605f2d36835526259bed41226b33442d)
|
|
20
|
+
|
|
7
21
|
#### [v4.1.3](https://github.com/oceanprotocol/ocean.js/compare/v4.1.2...v4.1.3)
|
|
8
22
|
|
|
23
|
+
> 2 June 2025
|
|
24
|
+
|
|
9
25
|
- Fix bugs and log fixes [`#1949`](https://github.com/oceanprotocol/ocean.js/pull/1949)
|
|
26
|
+
- Release 4.1.3 [`f96befa`](https://github.com/oceanprotocol/ocean.js/commit/f96befa4c32b742ec7f962c2bd7667ad59515972)
|
|
10
27
|
- Bump base-x from 3.0.10 to 3.0.11 [`b6338db`](https://github.com/oceanprotocol/ocean.js/commit/b6338dbcc7bbb94c3a67b5da8b37c642dd2eb09c)
|
|
11
28
|
|
|
12
29
|
#### [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
|
}
|