wavefront-cli 5.1.1 → 5.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44f481275247e98780e57065df2166e93158382c03dea0d9dbc627b2d1756777
4
- data.tar.gz: b225b2ba3668cc00c6e3e873064bcf54b79c1dbc6638009cba09cfb6de7874c8
3
+ metadata.gz: aff5882ee50326f0642694b667dd8001e36846542253c6ea9506c0b6bb29158b
4
+ data.tar.gz: 1fa12f61b0f0d765bb03b0123fe5e4927e5e2b7bacb141bdfbb603d0287a25f1
5
5
  SHA512:
6
- metadata.gz: 42c775a15f3a74a7ffbaa45ebff0d38755996c64afeca494496c4707a26734733e6f18f7469be9ac3b82786697e1d773748057c96789ea470e8a7d8022c851f1
7
- data.tar.gz: 1945c8a72ce0cc6fb6c4cdda8a8f8baabad6f020175d25f8109fb240f58c3cf175cd1b846c9fc7830c6bba31356f83975e69eac8736b3cf7aa0fbf7c88d8d7fb
6
+ metadata.gz: d405cdf2a4ffcc1e5b39241cf4b070204708b56dbb2f53e6548f0dd683ac99f2b941f073f8804d4168494e2071b4813c68e0442b791f68698f4444290c722f67
7
+ data.tar.gz: 7919e72fc0bb6ff56bc187d2a0fbdb24dbe8f54d79eab2b5cd244333fc73112def3a64f08cd83f3d39044193199519cf320045dd5ff21d27c3eb2599ca2a5f3f
data/HISTORY.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## 5.2.1 (2020-02-20)
3
+ ## 5.1.2 (2020-02-28)
4
+ * Fix regression in HCL dashboard export.
5
+ * Properly handle unavailable port when sending distributions to a proxy.
6
+
7
+ ## 5.1.1 (2020-02-20)
4
8
  * Say whether `--upsert` did and update or an import.
5
9
 
6
10
  ## 5.1.0 (2020-02-20)
@@ -91,7 +91,7 @@ module WavefrontHclOutput
91
91
  end
92
92
 
93
93
  def quote_value(val)
94
- val.gsub!(/\$/, '$$') if v.is_a?(String)
94
+ val.gsub!(/\$/, '$$') if val.is_a?(String)
95
95
  super
96
96
  end
97
97
  end
@@ -1,3 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- WF_CLI_VERSION = '5.1.1'
3
+ WF_CLI_VERSION = '5.1.2'
@@ -121,7 +121,7 @@ module WavefrontCli
121
121
  def send_point(point)
122
122
  call_write(point)
123
123
  rescue Wavefront::Exception::InvalidEndpoint
124
- abort format("Could not connect to proxy '%<proxy>s:%<port>s'.", options)
124
+ abort format("Could not connect to proxy '%<proxy>s:%<port>s'.", wf.creds)
125
125
  end
126
126
 
127
127
  # Read the input, from a file or from STDIN, and turn each line
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wavefront-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Fisher
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-20 00:00:00.000000000 Z
11
+ date: 2020-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docopt