@graphprotocol/graph-cli 0.39.0 → 0.40.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.40.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1064](https://github.com/graphprotocol/graph-tooling/pull/1064)
8
+ [`aaecb6e`](https://github.com/graphprotocol/graph-tooling/commit/aaecb6e31c15b7191797bf61c9d496a6d20a3248)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - enable deploymnets of testnets in studio
10
+
3
11
  ## 0.39.0
4
12
 
5
13
  ### Minor Changes
@@ -1,7 +1,24 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.validateStudioNetwork = exports.allowedStudioNetworks = void 0;
4
- exports.allowedStudioNetworks = ['mainnet', 'rinkeby', 'goerli', 'gnosis'];
4
+ exports.allowedStudioNetworks = [
5
+ 'mainnet',
6
+ 'rinkeby',
7
+ 'goerli',
8
+ 'gnosis',
9
+ 'chapel',
10
+ 'optimism-goerli',
11
+ 'clover',
12
+ 'fantom-testnet',
13
+ 'arbitrum-goerli',
14
+ 'fuji',
15
+ 'celo-alfajores',
16
+ 'mumbai',
17
+ 'aurora-testnet',
18
+ 'near-testnet',
19
+ 'theta-testnet-001',
20
+ 'osmo-test-4',
21
+ ];
5
22
  const validateStudioNetwork = ({ studio, product, network, }) => {
6
23
  const isStudio = studio || product === 'subgraph-studio';
7
24
  const isAllowedNetwork = exports.allowedStudioNetworks.includes(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.39.0",
3
+ "version": "0.40.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {