ruby_http_client 3.5.4 → 3.5.5
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 +4 -4
- data/.github/workflows/test-and-deploy.yml +5 -0
- data/CHANGELOG.md +6 -0
- data/ruby_http_client.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df6784568b7cfdb143babd965769db47152a14d9b9b5173bdc8d45214478f9dc
|
|
4
|
+
data.tar.gz: 63924dfdbea58b0c0cc6242683bce10c4fe028ec15f4c4911dd9b386a3dbd240
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82390fc25bc470eb3d2cf2024f1504ba24523a761c227906ea982b8801abc8ed8749cf98a7c7ae84f73960d1ff310fd629ad805f9c33f76a6d0c44c3d2856c7e
|
|
7
|
+
data.tar.gz: b62d1f6f7c42b4b5a68d4ceae28099201f1c9f2fd10ee85be311f310ee7a9b46d58975f2adcef8604fd5fa467196cf3f0bc742d68b5381f8c6ff939998bfdb0c
|
|
@@ -80,6 +80,11 @@ jobs:
|
|
|
80
80
|
gem build *.gemspec
|
|
81
81
|
gem push *.gem
|
|
82
82
|
|
|
83
|
+
- name: Submit metric to Datadog
|
|
84
|
+
uses: sendgrid/dx-automator/actions/datadog-release-metric@main
|
|
85
|
+
env:
|
|
86
|
+
DD_API_KEY: ${{ secrets.DATADOG_API_KEY }}
|
|
87
|
+
|
|
83
88
|
notify-on-failure:
|
|
84
89
|
name: Slack notify on failure
|
|
85
90
|
if: failure() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
[2022-03-09] Version 3.5.5
|
|
7
|
+
--------------------------
|
|
8
|
+
**Library - Chore**
|
|
9
|
+
- [PR #130](https://github.com/sendgrid/ruby-http-client/pull/130): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
|
|
10
|
+
|
|
11
|
+
|
|
6
12
|
[2022-02-09] Version 3.5.4
|
|
7
13
|
--------------------------
|
|
8
14
|
**Library - Chore**
|
data/ruby_http_client.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = 'ruby_http_client'
|
|
6
|
-
spec.version = '3.5.
|
|
6
|
+
spec.version = '3.5.5'
|
|
7
7
|
spec.authors = ['Elmer Thomas']
|
|
8
8
|
spec.email = 'help@twilio.com'
|
|
9
9
|
spec.summary = 'A simple REST client'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_http_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elmer Thomas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: codecov
|
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
119
|
- !ruby/object:Gem::Version
|
|
120
120
|
version: '0'
|
|
121
121
|
requirements: []
|
|
122
|
-
rubygems_version: 3.3.
|
|
122
|
+
rubygems_version: 3.3.7
|
|
123
123
|
signing_key:
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: A simple REST client
|