You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,16 @@ Operators, you should copy/paste content of this content straight to your projec
8
8
9
9
If you were at `firehose-core` version `1.0.0` and are bumping to `1.1.0`, you should copy the content between those 2 version to your own repository, replacing placeholder value `fire{chain}` with your chain's own binary.
10
10
11
+
## v1.2.1
12
+
13
+
### Fixed
14
+
15
+
* Fixed `tools firehose-client` which was broken because of bad flag handling
16
+
17
+
### Added
18
+
19
+
* Added `--api-key-env-var` flag to firehose-clients, which allows you to pass your API Key from an environment variable (HTTP header `x-api-key`) instead of a JWT (`Authorization: bearer`), where supported.
20
+
11
21
## v1.2.0
12
22
13
23
* Poller is now fetching blocks in an optimized way, it will fetch several blocks at once and then process them.
flags.StringP("api-token-env-var", "a", "FIREHOSE_API_TOKEN", "Look for a JWT in this environment variable to authenticate against endpoint")
118
+
flags.StringP("api-token-env-var", "a", "FIREHOSE_API_TOKEN", "Look for a JWT in this environment variable to authenticate against endpoint (alternative to api-key-env-var)")
119
+
flags.String("api-key-env-var", "FIREHOSE_API_KEY", "Look for an API key directly in this environment variable to authenticate against endpoint (alternative to api-token-env-var)")
117
120
flags.String("compression", "none", "The HTTP compression: use either 'none', 'gzip' or 'zstd'")
118
121
flags.BoolP("plaintext", "p", false, "Use plaintext connection to Firehose")
119
122
flags.BoolP("insecure", "k", false, "Use SSL connection to Firehose but skip SSL certificate validation")
0 commit comments