1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

Merge branch 'feature/startOrder' into feature/decentralized_DDO

This commit is contained in:
Alex Coseru 2020-09-17 13:34:43 +03:00 committed by GitHub
commit 4facb18cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1518 additions and 425 deletions

View File

@ -4,14 +4,30 @@ All notable changes to this project will be documented in this file. Dates are d
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
#### [v0.2.5](https://github.com/oceanprotocol/ocean-lib-js/compare/v0.2.4...v0.2.5)
> 16 September 2020
- Bump web3 from 1.2.11 to 1.3.0 [`#282`](https://github.com/oceanprotocol/ocean-lib-js/pull/282)
- Bump @types/node from 14.10.1 to 14.10.2 [`#281`](https://github.com/oceanprotocol/ocean-lib-js/pull/281)
- Bump prettier from 2.1.1 to 2.1.2 [`#283`](https://github.com/oceanprotocol/ocean-lib-js/pull/283)
- Bump @typescript-eslint/eslint-plugin from 4.1.0 to 4.1.1 [`#274`](https://github.com/oceanprotocol/ocean-lib-js/pull/274)
- Bump @typescript-eslint/parser from 4.1.0 to 4.1.1 [`#275`](https://github.com/oceanprotocol/ocean-lib-js/pull/275)
- Bump release-it from 14.0.2 to 14.0.3 [`#276`](https://github.com/oceanprotocol/ocean-lib-js/pull/276)
- Bump @types/node from 14.10.0 to 14.10.1 [`#273`](https://github.com/oceanprotocol/ocean-lib-js/pull/273)
- Bump eslint from 7.8.1 to 7.9.0 [`#272`](https://github.com/oceanprotocol/ocean-lib-js/pull/272)
- Bump @types/node from 14.6.4 to 14.10.0 [`#269`](https://github.com/oceanprotocol/ocean-lib-js/pull/269)
- Bump @truffle/hdwallet-provider from 1.0.43 to 1.0.44 [`#268`](https://github.com/oceanprotocol/ocean-lib-js/pull/268)
- bump web3-eth-contract [`132d89e`](https://github.com/oceanprotocol/ocean-lib-js/commit/132d89e302188f404e6003d29845eedc0e02f3d7)
#### [v0.2.4](https://github.com/oceanprotocol/ocean-lib-js/compare/v0.2.3...v0.2.4)
> 10 September 2020
- Fix/check in searchForDT [`#267`](https://github.com/oceanprotocol/ocean-lib-js/pull/267)
- Release 0.2.4 [`57e8014`](https://github.com/oceanprotocol/ocean-lib-js/commit/57e8014060c9388d9aefc281611676a7dae8bdec)
- add more unit tests [`dafbb1a`](https://github.com/oceanprotocol/ocean-lib-js/commit/dafbb1a6ce33dccb616406d18d9b639b794c7f76)
- fix lint [`d6053d5`](https://github.com/oceanprotocol/ocean-lib-js/commit/d6053d5dbb98e39f5e630737a6c756bc2459b5fe)
- fix supply in searchforDT [`64d6272`](https://github.com/oceanprotocol/ocean-lib-js/commit/64d62726ffc91d8c7cc5681724b46e48be79fb64)
#### [v0.2.3](https://github.com/oceanprotocol/ocean-lib-js/compare/v0.2.2...v0.2.3)
@ -311,4 +327,4 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- minor rendering fix [`#11`](https://github.com/oceanprotocol/ocean-lib-js/pull/11)
- cleaning [`cd9f629`](https://github.com/oceanprotocol/ocean-lib-js/commit/cd9f6295ed08110936f9a092527bae5d0a974bbb)
- remove test output files [`28d1775`](https://github.com/oceanprotocol/ocean-lib-js/commit/28d1775593ab78bf404708244c49af8f912f3117)
- first cut, highly WIP [`67af4d1`](https://github.com/oceanprotocol/ocean-lib-js/commit/67af4d1d595fc105cc544ff019199c6cef9f76e5)
- add ownerAssets [`d8dadf5`](https://github.com/oceanprotocol/ocean-lib-js/commit/d8dadf5495d77e2f73d45454347c13e185bed7d4)

View File

@ -111,7 +111,7 @@ Running all tests requires running Ocean Protocol components beforehand with [Ba
git clone https://github.com/oceanprotocol/barge
cd barge
git checkout v3
export PROVIDER_VERSION=latest
./start_ocean.sh --no-dashboard
```

1907
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@oceanprotocol/lib",
"version": "0.2.4",
"version": "0.2.5",
"description": "JavaScript client library for Ocean Protocol",
"main": "./dist/node/lib.js",
"typings": "./dist/node/lib.d.ts",
@ -49,8 +49,8 @@
"node-fetch": "^2.6.1",
"save-file": "^2.3.1",
"uuid": "^8.3.0",
"web3": "^1.2.11",
"web3-eth-contract": "^1.2.11"
"web3": "^1.3.0",
"web3-eth-contract": "^1.3.0"
},
"devDependencies": {
"@release-it/bumper": "^2.0.0",
@ -60,15 +60,15 @@
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"auto-changelog": "^2.2.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint": "^7.9.0",
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"lcov-result-merger": "^3.1.0",
"mocha": "^8.0.1",