@graphprotocol/graph-cli 0.42.1 → 0.42.2-alpha-20230223202004-8ffd76e
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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.42.2-alpha-20230223202004-8ffd76e
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1132](https://github.com/graphprotocol/graph-tooling/pull/1132)
|
|
8
|
+
[`c9d4deb`](https://github.com/graphprotocol/graph-tooling/commit/c9d4debd3808e72c9e4d42d26deaf03adcdab027)
|
|
9
|
+
Thanks [@cmwhited](https://github.com/cmwhited)! - enable deployment of celo, avalance and
|
|
10
|
+
arbitrum-one in studio
|
|
11
|
+
|
|
3
12
|
## 0.42.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -19,6 +19,9 @@ exports.allowedStudioNetworks = [
|
|
|
19
19
|
'theta-testnet-001',
|
|
20
20
|
'osmo-test-4',
|
|
21
21
|
'base-testnet',
|
|
22
|
+
'celo',
|
|
23
|
+
'arbitrum-one',
|
|
24
|
+
'avalanche',
|
|
22
25
|
];
|
|
23
26
|
const validateStudioNetwork = ({ studio, product, network, }) => {
|
|
24
27
|
const isStudio = studio || product === 'subgraph-studio';
|
|
@@ -19,7 +19,7 @@ describe('Version Command Helpers', () => {
|
|
|
19
19
|
test("And it's NOT an allowed network", () => {
|
|
20
20
|
expect(() => (0, studio_1.validateStudioNetwork)({
|
|
21
21
|
product: 'subgraph-studio',
|
|
22
|
-
network: '
|
|
22
|
+
network: 'moonriver',
|
|
23
23
|
})).toThrow(new Error(`The Subgraph Studio only allows subgraphs for these networks: ${studio_1.allowedStudioNetworks.join(', ')}`));
|
|
24
24
|
});
|
|
25
25
|
});
|
package/oclif.manifest.json
CHANGED