Skip to content

Commit 2caea41

Browse files
Moving specversion releases (#876)
* Moving specversion releases * Fixing * Ida's feedback * Fix
1 parent a8d0588 commit 2caea41

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

website/src/pages/en/subgraphs/developing/creating/graph-ts/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphprotocol/graph-ts
22

3+
## 0.38.0
4+
5+
### Minor Changes
6+
7+
- [#1935](https://github.com/graphprotocol/graph-tooling/pull/1935) [`0c36a02`](https://github.com/graphprotocol/graph-tooling/commit/0c36a024e0516bbf883ae62b8312dba3d9945f04) Thanks [@isum](https://github.com/isum)! - feat: add yaml parsing support to mappings
8+
39
## 0.37.0
410

511
### Minor Changes

website/src/pages/en/subgraphs/developing/creating/install-the-cli.mdx

-14
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,3 @@ The ABI file(s) must match your contract(s). There are a few ways to obtain ABI
103103
- If you are building your own project, you will likely have access to your most current ABIs.
104104
- If you are building a subgraph for a public project, you can download that project to your computer and get the ABI by using [`npx hardhat compile`](https://hardhat.org/hardhat-runner/docs/guides/compile-contracts#compiling-your-contracts) or using `solc` to compile.
105105
- You can also find the ABI on [Etherscan](https://etherscan.io/), but this isn't always reliable, as the ABI that is uploaded there may be out of date. Make sure you have the right ABI, otherwise running your subgraph will fail.
106-
107-
## SpecVersion Releases
108-
109-
| Version | Release notes |
110-
| :-: | --- |
111-
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
112-
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
113-
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
114-
| 0.0.9 | Supports `endBlock` feature |
115-
| 0.0.8 | Added support for polling [Block Handlers](/developing/creating-a-subgraph/#polling-filter) and [Initialisation Handlers](/developing/creating-a-subgraph/#once-filter). |
116-
| 0.0.7 | Added support for [File Data Sources](/developing/creating-a-subgraph/#file-data-sources). |
117-
| 0.0.6 | Supports fast [Proof of Indexing](/indexing/overview/#what-is-a-proof-of-indexing-poi) calculation variant. |
118-
| 0.0.5 | Added support for event handlers having access to transaction receipts. |
119-
| 0.0.4 | Added support for managing subgraph features. |

website/src/pages/en/subgraphs/developing/creating/starting-your-subgraph.mdx

+12
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,15 @@ Start the process and build a subgraph that matches your needs:
2121
5. [Advanced Features](/subgraphs/developing/creating/advanced/) - Customize your subgraph with advanced features
2222

2323
Explore additional [resources for APIs](/subgraphs/developing/creating/graph-ts/README/) and conduct local testing with [Matchstick](/subgraphs/developing/creating/unit-testing-framework/).
24+
25+
| Version | Release notes |
26+
| :-: | --- |
27+
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
28+
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
29+
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
30+
| 0.0.9 | Supports `endBlock` feature |
31+
| 0.0.8 | Added support for polling [Block Handlers](/developing/creating-a-subgraph/#polling-filter) and [Initialisation Handlers](/developing/creating-a-subgraph/#once-filter). |
32+
| 0.0.7 | Added support for [File Data Sources](/developing/creating-a-subgraph/#file-data-sources). |
33+
| 0.0.6 | Supports fast [Proof of Indexing](/indexing/overview/#what-is-a-proof-of-indexing-poi) calculation variant. |
34+
| 0.0.5 | Added support for event handlers having access to transaction receipts. |
35+
| 0.0.4 | Added support for managing subgraph features. |

website/src/pages/en/subgraphs/developing/creating/subgraph-manifest.mdx

+14
Original file line numberDiff line numberDiff line change
@@ -532,3 +532,17 @@ To preserve the complete history of entity states:
532532
indexerHints:
533533
prune: never
534534
```
535+
536+
## SpecVersion Releases
537+
538+
| Version | Release notes |
539+
| :-: | --- |
540+
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
541+
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
542+
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
543+
| 0.0.9 | Supports `endBlock` feature |
544+
| 0.0.8 | Added support for polling [Block Handlers](/developing/creating-a-subgraph/#polling-filter) and [Initialisation Handlers](/developing/creating-a-subgraph/#once-filter). |
545+
| 0.0.7 | Added support for [File Data Sources](/developing/creating-a-subgraph/#file-data-sources). |
546+
| 0.0.6 | Supports fast [Proof of Indexing](/indexing/overview/#what-is-a-proof-of-indexing-poi) calculation variant. |
547+
| 0.0.5 | Added support for event handlers having access to transaction receipts. |
548+
| 0.0.4 | Added support for managing subgraph features. |

0 commit comments

Comments
 (0)