Release 2.0.3

This commit is contained in:
mihaisc 2022-08-02 20:12:19 +03:00
parent fd40e490cc
commit 8416d773cc
4 changed files with 40 additions and 4 deletions

View File

@ -4,9 +4,45 @@ 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).
#### [v2.0.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.2...v2.0.3)
- Tracking templateId [`#508`](https://github.com/oceanprotocol/ocean-subgraph/pull/508)
- Additional tests for NFT and Datatokens [`#498`](https://github.com/oceanprotocol/ocean-subgraph/pull/498)
- Bump mock-local-storage from 1.1.21 to 1.1.23 [`#507`](https://github.com/oceanprotocol/ocean-subgraph/pull/507)
- Removing Pool example queries and adding new examples [`#493`](https://github.com/oceanprotocol/ocean-subgraph/pull/493)
- Remove tracking of pools [`#492`](https://github.com/oceanprotocol/ocean-subgraph/pull/492)
- Bump release-it from 15.1.4 to 15.2.0 [`#503`](https://github.com/oceanprotocol/ocean-subgraph/pull/503)
- minor change [`#501`](https://github.com/oceanprotocol/ocean-subgraph/pull/501)
- Revert "roolback deps" [`4353b15`](https://github.com/oceanprotocol/ocean-subgraph/commit/4353b153910717182930735c7bd596301132eb92)
- roolback deps [`a8396ae`](https://github.com/oceanprotocol/ocean-subgraph/commit/a8396aec1941769c69fd462d0b318464afdb2193)
- Update globalUtils.ts [`3ced2e4`](https://github.com/oceanprotocol/ocean-subgraph/commit/3ced2e41791306dbc1aa846c985e8f2f30773f13)
#### [v2.0.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.1...v2.0.2)
> 26 July 2022
- add event Index to pool transactions [`#497`](https://github.com/oceanprotocol/ocean-subgraph/pull/497)
- Bump release-it from 15.1.3 to 15.1.4 [`#499`](https://github.com/oceanprotocol/ocean-subgraph/pull/499)
- Bump @graphprotocol/graph-cli from 0.29.0 to 0.33.0 [`#495`](https://github.com/oceanprotocol/ocean-subgraph/pull/495)
- Bump typescript from 4.6.4 to 4.7.4 [`#461`](https://github.com/oceanprotocol/ocean-subgraph/pull/461)
- Bump release-it from 15.1.2 to 15.1.3 [`#496`](https://github.com/oceanprotocol/ocean-subgraph/pull/496)
- Bump release-it from 15.1.1 to 15.1.2 [`#489`](https://github.com/oceanprotocol/ocean-subgraph/pull/489)
- Bump @oceanprotocol/lib from 1.1.5 to 1.1.6 [`#488`](https://github.com/oceanprotocol/ocean-subgraph/pull/488)
- Issue 471 provider fees [`#474`](https://github.com/oceanprotocol/ocean-subgraph/pull/474)
- Bump parse-url from 6.0.0 to 6.0.2 [`#485`](https://github.com/oceanprotocol/ocean-subgraph/pull/485)
- Bump @oceanprotocol/lib from 1.1.3 to 1.1.5 [`#481`](https://github.com/oceanprotocol/ocean-subgraph/pull/481)
- Bump release-it from 15.1.0 to 15.1.1 [`#479`](https://github.com/oceanprotocol/ocean-subgraph/pull/479)
- Bump eslint-plugin-prettier from 4.0.0 to 4.2.1 [`#478`](https://github.com/oceanprotocol/ocean-subgraph/pull/478)
- Revert "Removing pools from schema" [`493a6d2`](https://github.com/oceanprotocol/ocean-subgraph/commit/493a6d25461b163c52b08358b62ba17a77cee41f)
- Removing pools from schema [`0b8f6e1`](https://github.com/oceanprotocol/ocean-subgraph/commit/0b8f6e1af510c8164f56bd81687012c8a23665b6)
- Revert "Removing pool events from subgraph.template.yaml" [`a733b27`](https://github.com/oceanprotocol/ocean-subgraph/commit/a733b27fa134073073390829d6c3e9ae939bb337)
#### [v2.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.0...v2.0.1)
> 30 June 2022
- changing lastPriceToken from token to string [`#477`](https://github.com/oceanprotocol/ocean-subgraph/pull/477)
- Release 2.0.1 [`cb98901`](https://github.com/oceanprotocol/ocean-subgraph/commit/cb9890122c02cb42b4fc374892c010e6f7166b8e)
### [v2.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.1...v2.0.0)

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "ocean-subgraph",
"version": "2.0.1",
"version": "2.0.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "2.0.1",
"version": "2.0.3",
"license": "Apache-2.0",
"dependencies": {
"@oceanprotocol/lib": "^1.1.6",

View File

@ -1,6 +1,6 @@
{
"name": "ocean-subgraph",
"version": "2.0.1",
"version": "2.0.3",
"scripts": {
"start": "",
"quickstart:development": "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local",

View File

@ -13,7 +13,7 @@ export function getGlobalStats(): GlobalStatistic {
let globalStats = GlobalStatistic.load(GLOBAL_ID)
if (!globalStats) {
globalStats = new GlobalStatistic(GLOBAL_ID)
globalStats.version = '2.0.2'
globalStats.version = '2.0.3'
globalStats.orderCount = 0
globalStats.fixedCount = 0
globalStats.datatokenCount = 0