@graphprotocol/graph-cli 0.47.0 → 0.47.2-alpha-20230425221332-16674f9

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,22 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.47.2-alpha-20230425221332-16674f9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1308](https://github.com/graphprotocol/graph-tooling/pull/1308)
8
+ [`16674f9`](https://github.com/graphprotocol/graph-tooling/commit/16674f989e215402505339e4a28180d423a6d23d)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - allow `fantom` and `matic`
10
+
11
+ ## 0.47.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#1303](https://github.com/graphprotocol/graph-tooling/pull/1303)
16
+ [`327784f`](https://github.com/graphprotocol/graph-tooling/commit/327784ff79c458c603dbac4b9dfd1f4e5aab6c8c)
17
+ Thanks [@dimitrovmaksim](https://github.com/dimitrovmaksim)! - Fixes 403 Forbidden response when
18
+ fetching the latest matchstick tag
19
+
3
20
  ## 0.47.0
4
21
 
5
22
  ### Minor Changes
@@ -1,4 +1,4 @@
1
- export declare const allowedStudioNetworks: readonly ["mainnet", "rinkeby", "goerli", "gnosis", "chapel", "optimism-goerli", "clover", "fantom-testnet", "arbitrum-goerli", "fuji", "celo-alfajores", "mumbai", "aurora-testnet", "near-testnet", "theta-testnet-001", "osmo-test-4", "base-testnet", "celo", "arbitrum-one", "avalanche", "zksync-era", "sepolia", "polygon-zkevm-testnet", "polygon-zkevm"];
1
+ export declare const allowedStudioNetworks: readonly ["mainnet", "rinkeby", "goerli", "gnosis", "chapel", "optimism-goerli", "clover", "fantom", "matic", "fantom-testnet", "arbitrum-goerli", "fuji", "celo-alfajores", "mumbai", "aurora-testnet", "near-testnet", "theta-testnet-001", "osmo-test-4", "base-testnet", "celo", "arbitrum-one", "avalanche", "zksync-era", "sepolia", "polygon-zkevm-testnet", "polygon-zkevm"];
2
2
  export declare const validateStudioNetwork: ({ studio, product, network, }: {
3
3
  studio?: string | boolean | undefined;
4
4
  product?: string | undefined;
@@ -9,6 +9,8 @@ exports.allowedStudioNetworks = [
9
9
  'chapel',
10
10
  'optimism-goerli',
11
11
  'clover',
12
+ 'fantom',
13
+ 'matic',
12
14
  'fantom-testnet',
13
15
  'arbitrum-goerli',
14
16
  'fuji',
@@ -48,7 +48,11 @@ class TestCommand extends core_1.Command {
48
48
  // Fetch the latest version tag if version is not specified with -v/--version or if the version is not cached
49
49
  if (opts.force || (!opts.version && !opts.latestVersion)) {
50
50
  this.log('Fetching latest version tag...');
51
- const result = await (0, fetch_1.fetch)('https://api.github.com/repos/LimeChain/matchstick/releases/latest');
51
+ const result = await (0, fetch_1.fetch)('https://api.github.com/repos/LimeChain/matchstick/releases/latest', {
52
+ headers: {
53
+ 'User-Agent': '@graphprotocol/graph-cli',
54
+ },
55
+ });
52
56
  const json = await result.json();
53
57
  opts.latestVersion = json.tag_name;
54
58
  gluegun_1.filesystem.file(opts.cachePath, {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.47.0",
2
+ "version": "0.47.2-alpha-20230425221332-16674f9",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.47.0",
3
+ "version": "0.47.2-alpha-20230425221332-16674f9",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {