libhoney 1.14.2 → 1.14.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f927781fd9eabe1295401e3c82ff1bac4397fc268161a0f50bbde9265e36043
4
- data.tar.gz: 5de25f0498bdceedaf1d0f70d152d1f636cec859826bfa8415e1bdbfdb8cda7a
3
+ metadata.gz: 9182c33aa64ffec7a225133c5df600c7f0401998d532e425104b0a51de285cd6
4
+ data.tar.gz: e6fd1dfcef41b5dd14eae7daab692312b0854a399339fc8b26a78d27edccb2e1
5
5
  SHA512:
6
- metadata.gz: 431121e46ae89a3362ede8612f56cf4c6bcbf034389e78751e5a24e39c95bcb2ea364a240c2251f0583363913403d94bc87738ace08c92e28de1f1e11861cdcb
7
- data.tar.gz: d9d64648f34037c8904ae001c2967b6c7a81dad0c46fd7aef0ba95501cf284010b2a5ba2d88ce0dacf020b05929247927eea89c7e45ece216598758e142aaa97
6
+ metadata.gz: 9acc33d465d4a1fa5c9fef63092dd8dd09feabf501831dcb5c7ee689f6ec65c54bb82ded4dd6c33459a00e237a9c2a310035d96f899d4e89fce82698d4e0722b
7
+ data.tar.gz: bbde9aa1b89a0bf1c7a684e6c5299416bcde24597fda6f12a9df5f18bba9eddbda8f3b5cbef49d9bf67883b817d82f87c463e0901b9221ff3577255b2d8f605a
@@ -2,6 +2,13 @@ version: 2.0
2
2
 
3
3
  test_steps: &test_steps
4
4
  - checkout
5
+ - run:
6
+ name: Force Bundler Version
7
+ command: |
8
+ sudo gem update --system
9
+ echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
10
+ source $BASH_ENV
11
+ gem install bundler
5
12
  - restore_cache:
6
13
  keys:
7
14
  - v1-dependencies-{{ checksum "Gemfile.lock" }}
@@ -45,10 +52,14 @@ jobs:
45
52
  docker:
46
53
  - image: circleci/ruby:2.6
47
54
  steps: *test_steps
55
+ ruby-2.7:
56
+ docker:
57
+ - image: circleci/ruby:2.7
58
+ steps: *test_steps
48
59
  publish:
49
60
  docker:
50
61
  # Just randomly pick one recent ruby version
51
- - image: circleci/ruby:2.6
62
+ - image: circleci/ruby:2.7
52
63
  working_directory: ~/repo
53
64
  steps:
54
65
  - checkout
@@ -63,18 +74,34 @@ jobs:
63
74
 
64
75
  workflows:
65
76
  version: 2
77
+ nightly:
78
+ triggers:
79
+ - schedule:
80
+ cron: "0 0 * * *"
81
+ filters:
82
+ branches:
83
+ only:
84
+ - main
85
+ jobs:
86
+ - ruby-2.3: *tag_filters
87
+ - ruby-2.4: *tag_filters
88
+ - ruby-2.5: *tag_filters
89
+ - ruby-2.6: *tag_filters
90
+ - ruby-2.7: *tag_filters
66
91
  build:
67
92
  jobs:
68
93
  - ruby-2.3: *tag_filters
69
94
  - ruby-2.4: *tag_filters
70
95
  - ruby-2.5: *tag_filters
71
96
  - ruby-2.6: *tag_filters
97
+ - ruby-2.7: *tag_filters
72
98
  - publish:
73
99
  requires:
74
100
  - ruby-2.3
75
101
  - ruby-2.4
76
102
  - ruby-2.5
77
103
  - ruby-2.6
104
+ - ruby-2.7
78
105
  filters:
79
106
  tags:
80
107
  only: /^v.*/
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ charset = utf-8
7
+ trim_trailing_whitespace = true
8
+ insert_final_newline = false
9
+
10
+ [*.md]
11
+ indent_size = 4
12
+ trim_trailing_whitespace = false
@@ -0,0 +1,5 @@
1
+ # Code owners file.
2
+ # This file controls who is tagged for review for any given pull request.
3
+
4
+ # For anything not explicitly taken by someone else:
5
+ * @honeycombio/integrations-team @martin308
@@ -1,47 +1,48 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- libhoney (1.14.2)
4
+ libhoney (1.14.7)
5
5
  addressable (~> 2.0)
6
6
  http (>= 2.0, < 5.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- addressable (2.6.0)
12
- public_suffix (>= 2.0.2, < 4.0)
11
+ addressable (2.7.0)
12
+ public_suffix (>= 2.0.2, < 5.0)
13
13
  ast (2.4.0)
14
- backports (3.15.0)
14
+ backports (3.16.0)
15
15
  bump (0.8.0)
16
16
  crack (0.4.3)
17
17
  safe_yaml (~> 1.0.0)
18
18
  domain_name (0.5.20190701)
19
19
  unf (>= 0.0.5, < 1.0.0)
20
- ffi (1.11.3)
20
+ ffi (1.13.1)
21
21
  ffi-compiler (1.0.1)
22
22
  ffi (>= 1.0.0)
23
23
  rake
24
24
  hashdiff (1.0.0)
25
- http (4.2.0)
25
+ http (4.4.1)
26
26
  addressable (~> 2.3)
27
27
  http-cookie (~> 1.0)
28
- http-form_data (~> 2.0)
28
+ http-form_data (~> 2.2)
29
29
  http-parser (~> 1.2.0)
30
30
  http-cookie (1.0.3)
31
31
  domain_name (~> 0.5)
32
- http-form_data (2.1.1)
32
+ http-form_data (2.3.0)
33
33
  http-parser (1.2.1)
34
34
  ffi-compiler (>= 1.0, < 2.0)
35
- jaro_winkler (1.5.3)
36
- minitest (5.11.3)
37
- multi_json (1.13.1)
38
- mustermann (1.0.3)
39
- parallel (1.17.0)
40
- parser (2.6.3.0)
35
+ jaro_winkler (1.5.4)
36
+ minitest (5.14.0)
37
+ multi_json (1.14.1)
38
+ mustermann (1.1.1)
39
+ ruby2_keywords (~> 0.0.1)
40
+ parallel (1.19.1)
41
+ parser (2.7.0.2)
41
42
  ast (~> 2.4.0)
42
- public_suffix (3.1.1)
43
- rack (2.0.7)
44
- rack-protection (2.0.5)
43
+ public_suffix (4.0.3)
44
+ rack (2.1.4)
45
+ rack-protection (2.0.8.1)
45
46
  rack
46
47
  rainbow (3.0.0)
47
48
  rake (12.3.3)
@@ -53,30 +54,31 @@ GEM
53
54
  ruby-progressbar (~> 1.7)
54
55
  unicode-display_width (>= 1.4.0, < 1.6)
55
56
  ruby-progressbar (1.10.1)
57
+ ruby2_keywords (0.0.2)
56
58
  safe_yaml (1.0.5)
57
- sinatra (2.0.5)
59
+ sinatra (2.0.8.1)
58
60
  mustermann (~> 1.0)
59
61
  rack (~> 2.0)
60
- rack-protection (= 2.0.5)
62
+ rack-protection (= 2.0.8.1)
61
63
  tilt (~> 2.0)
62
- sinatra-contrib (2.0.5)
64
+ sinatra-contrib (2.0.8.1)
63
65
  backports (>= 2.8.2)
64
66
  multi_json
65
67
  mustermann (~> 1.0)
66
- rack-protection (= 2.0.5)
67
- sinatra (= 2.0.5)
68
- tilt (>= 1.3, < 3)
68
+ rack-protection (= 2.0.8.1)
69
+ sinatra (= 2.0.8.1)
70
+ tilt (~> 2.0)
69
71
  spy (1.0.0)
70
- tilt (2.0.9)
72
+ tilt (2.0.10)
71
73
  unf (0.1.4)
72
74
  unf_ext
73
- unf_ext (0.0.7.6)
75
+ unf_ext (0.0.7.7)
74
76
  unicode-display_width (1.5.0)
75
- webmock (3.6.2)
77
+ webmock (3.8.1)
76
78
  addressable (>= 2.3.6)
77
79
  crack (>= 0.3.2)
78
80
  hashdiff (>= 0.4.0, < 2.0.0)
79
- yard (0.9.20)
81
+ yard (0.9.24)
80
82
  yardstick (0.9.9)
81
83
  yard (~> 0.8, >= 0.8.7.2)
82
84
 
@@ -98,4 +100,4 @@ DEPENDENCIES
98
100
  yardstick (~> 0.9)
99
101
 
100
102
  BUNDLED WITH
101
- 1.17.3
103
+ 2.1.4
@@ -56,7 +56,7 @@ module Libhoney
56
56
  def clean_string(str)
57
57
  return str if str.encoding == Encoding::UTF_8 && str.valid_encoding?
58
58
 
59
- str.encode(Encoding::UTF_8, ENCODING_OPTIONS)
59
+ str.encode(Encoding::UTF_8, **ENCODING_OPTIONS)
60
60
  end
61
61
  end
62
62
  end
@@ -229,7 +229,7 @@ module Libhoney
229
229
  proxy_config: @proxy_config
230
230
  }
231
231
 
232
- @transmission ||= TransmissionClient.new(transmission_client_params)
232
+ @transmission ||= TransmissionClient.new(**transmission_client_params)
233
233
  end
234
234
 
235
235
  @transmission.add(event)
@@ -121,8 +121,6 @@ module Libhoney
121
121
  #
122
122
  # @return [self] this event.
123
123
  def send_presampled
124
- raise ArgumentError, "No metrics added to event. Won't send empty event." if data.empty?
125
-
126
124
  @libhoney.send_event(self)
127
125
  self
128
126
  end
@@ -40,10 +40,6 @@ module Libhoney
40
40
  end
41
41
 
42
42
  def add(event)
43
- raise ArgumentError, "No APIHost for Honeycomb. Can't send to the Great Unknown." if event.api_host == ''
44
- raise ArgumentError, "No WriteKey specified. Can't send event." if event.writekey == ''
45
- raise ArgumentError, "No Dataset for Honeycomb. Can't send datasetless." if event.dataset == ''
46
-
47
43
  begin
48
44
  @batch_queue.enq(event, !@block_on_send)
49
45
  rescue ThreadError
@@ -139,9 +135,11 @@ module Libhoney
139
135
 
140
136
  loop do
141
137
  begin
142
- while (event = Timeout.timeout(@send_frequency) { @batch_queue.pop })
143
- key = [event.api_host, event.writekey, event.dataset]
144
- batched_events[key] << event
138
+ Thread.handle_interrupt(Timeout::Error => :on_blocking) do
139
+ while (event = Timeout.timeout(@send_frequency) { @batch_queue.pop })
140
+ key = [event.api_host, event.writekey, event.dataset]
141
+ batched_events[key] << event
142
+ end
145
143
  end
146
144
 
147
145
  break
@@ -1,3 +1,3 @@
1
1
  module Libhoney
2
- VERSION = '1.14.2'.freeze
2
+ VERSION = '1.14.7'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libhoney
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.2
4
+ version: 1.14.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Honeycomb.io Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-10 00:00:00.000000000 Z
11
+ date: 2020-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bump
@@ -206,6 +206,8 @@ extra_rdoc_files: []
206
206
  files:
207
207
  - ".circleci/config.yml"
208
208
  - ".circleci/setup-rubygems.sh"
209
+ - ".editorconfig"
210
+ - ".github/CODEOWNERS"
209
211
  - ".gitignore"
210
212
  - ".rubocop.yml"
211
213
  - ".rubocop_todo.yml"
@@ -251,7 +253,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
253
  - !ruby/object:Gem::Version
252
254
  version: '0'
253
255
  requirements: []
254
- rubygems_version: 3.0.3
256
+ rubygems_version: 3.1.4
255
257
  signing_key:
256
258
  specification_version: 4
257
259
  summary: send data to Honeycomb