statsd-instrument 3.5.11 → 3.5.12

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: c9124bb941a7f03e9d64ea7969fb4b2f47b44bae2ca4ec56fe3f0653bb3df8a4
4
- data.tar.gz: a70c8e54c4cbd9e5b24981c613ca674d89deb2ba8b7087447ee0cc56faf4d5d9
3
+ metadata.gz: 41254f0057c645926c54b36ec4bf937352444740f0cae248b1feed1f35ce4044
4
+ data.tar.gz: 3d2131889385d2755a738d735ca9a20dba0342e645d58312c4007b7a1835b249
5
5
  SHA512:
6
- metadata.gz: 20a8b1a8308e5dd2862b367e0e3321b9255039c1887d9830a608812eadc2f29e4b6f916b3245293b7d200ac148f89179712492a024fb2bedd3e36887eb20c0bb
7
- data.tar.gz: 797ca0e4d0f22ed3cbe87acae0fba3a434c36b8b5059bfb7808c93498c0e028ee9b64af1f4b3e06e796e36ba8053109c66ed4c619de7fb672107818bda7024b5
6
+ metadata.gz: 46a4f427f2e298c242a84c7f90a715a7d4397c28ad5db8f89f8b669e3867c7b253a5858a61e35768fada113b56202dc43d91cffb68b9626ea79c26fd15d10a67
7
+ data.tar.gz: 99b1979f9b3b9a4e502c78a42bfa48348600eece64646ddfdd2470ae1d3b4cc52123e3edaef539886c667ff2e9eca98051c55c5fec7c6ccc76e1404e2f5f2800
@@ -8,7 +8,7 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
- - uses: actions/checkout@v1
11
+ - uses: actions/checkout@v3
12
12
 
13
13
  - name: Set up Ruby
14
14
  uses: ruby/setup-ruby@v1
@@ -22,15 +22,15 @@ jobs:
22
22
  - name: Run throughput benchmark on branch
23
23
  run: benchmark/local-udp-throughput
24
24
 
25
- - uses: actions/checkout@v1
25
+ - uses: actions/checkout@v3
26
26
  with:
27
- ref: 'master'
27
+ ref: 'main'
28
28
 
29
29
  - name: Install dependencies if needed
30
30
  run: bundle check || bundle install --jobs 4 --retry 3
31
31
 
32
- - name: Run benchmark on master
32
+ - name: Run benchmark on main
33
33
  run: benchmark/send-metrics-to-local-udp-receiver
34
34
 
35
- - name: Run throughput benchmark on master
35
+ - name: Run throughput benchmark on main
36
36
  run: benchmark/local-udp-throughput
@@ -8,7 +8,7 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
- - uses: actions/checkout@v1
11
+ - uses: actions/checkout@v3
12
12
 
13
13
  - name: Set up Ruby
14
14
  uses: ruby/setup-ruby@v1
@@ -16,7 +16,7 @@ jobs:
16
16
  # ...
17
17
 
18
18
  steps:
19
- - uses: actions/checkout@v1
19
+ - uses: actions/checkout@v3
20
20
 
21
21
  - name: Set up Ruby
22
22
  uses: ruby/setup-ruby@v1
data/CHANGELOG.md CHANGED
@@ -6,6 +6,11 @@ section below.
6
6
 
7
7
  ## Unreleased changes
8
8
 
9
+ ## Version 3.5.12
10
+
11
+ - Update CONTRIBUTING docs about release process
12
+ - Rename branch `master` to `main`.
13
+
9
14
  ## Version 3.5.11
10
15
 
11
16
  - Fix a bug where passing `nil` to `clone_with_options` did not overwrite existing values
data/CONTRIBUTING.md CHANGED
@@ -59,5 +59,5 @@ we are depending on the current behavior of the library.
59
59
 
60
60
  1. Update the version number in `lib/statsd/instrument/version.rb`.
61
61
  2. Move the "Unreleased changes" items in [CHANGELOG.md](./CHANGELOG.md) to a new section for the release.
62
- 3. Commit these changes.
63
- 4. Run `bundle exec rake release`.
62
+ 3. Open a PR with these changes, have it reviewed and merged.
63
+ 4. The new version will be automatically uploaded by our deployment pipeline.
data/benchmark/README.md CHANGED
@@ -23,7 +23,7 @@ To benchmark your changes:
23
23
  be available if you check out another branch.
24
24
  2. Run these scripts on your pull request branch. The results will be stored in
25
25
  a temporary file.
26
- 3. Checkout the latest version of `master`.
26
+ 3. Checkout the latest version of `main`.
27
27
  4. Run the benchmark again. The benchmark script will now print a comparison
28
- between your branch and master.
28
+ between your branch and main.
29
29
  5. Include the output in your pull request description.
@@ -6,9 +6,9 @@ require "tmpdir"
6
6
  require "benchmark/ips"
7
7
 
8
8
  revision = %x(git rev-parse HEAD).rstrip
9
- base_revision = %x(git rev-parse origin/master).rstrip
9
+ base_revision = %x(git rev-parse origin/main).rstrip
10
10
  branch = if revision == base_revision
11
- "master"
11
+ "main"
12
12
  else
13
13
  %x(git rev-parse --abbrev-ref HEAD).rstrip
14
14
  end
@@ -39,7 +39,7 @@ end
39
39
 
40
40
  if report.entries.length == 1
41
41
  puts
42
- puts "To compare the performance of this revision against another revision (e.g. master),"
42
+ puts "To compare the performance of this revision against another revision (e.g. main),"
43
43
  puts "check out a different branch and run this benchmark script again."
44
44
  elsif ENV["KEEP_RESULTS"]
45
45
  puts
@@ -20,9 +20,9 @@ end
20
20
 
21
21
  def benchmark_implementation(name, env = {})
22
22
  revision = %x(git rev-parse HEAD).rstrip
23
- base_revision = %x(git rev-parse origin/master).rstrip
23
+ base_revision = %x(git rev-parse origin/main).rstrip
24
24
  branch = if revision == base_revision
25
- "master"
25
+ "main"
26
26
  else
27
27
  %x(git rev-parse --abbrev-ref HEAD).rstrip
28
28
  end
@@ -60,7 +60,7 @@ def benchmark_implementation(name, env = {})
60
60
 
61
61
  if report.entries.length == 1
62
62
  puts
63
- puts "To compare the performance of this revision against another revision (e.g. master),"
63
+ puts "To compare the performance of this revision against another revision (e.g. main),"
64
64
  puts "check out a different branch and run this benchmark script again."
65
65
  elsif ENV["KEEP_RESULTS"]
66
66
  puts
@@ -2,6 +2,6 @@
2
2
 
3
3
  module StatsD
4
4
  module Instrument
5
- VERSION = "3.5.11"
5
+ VERSION = "3.5.12"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: statsd-instrument
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.11
4
+ version: 3.5.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Storimer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-08-02 00:00:00.000000000 Z
13
+ date: 2023-08-25 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: A StatsD client for Ruby apps. Provides metaprogramming methods to inject
16
16
  StatsD instrumentation into your code.
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 3.4.17
125
+ rubygems_version: 3.4.18
126
126
  signing_key:
127
127
  specification_version: 4
128
128
  summary: A StatsD client for Ruby apps