twilio-ruby 5.63.1 → 5.64.0

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
  SHA1:
3
- metadata.gz: 713fb3456ac1cc81c84708c98ab9182982c87e9e
4
- data.tar.gz: 19b87b511ac9133faca93426a3ba61faadfbd7d3
3
+ metadata.gz: ac21b282f9cbe5b8fcf0409fa7640ee81595555b
4
+ data.tar.gz: 64f19f3e30a9fa224cab24fa89aa7dea5e2ef66d
5
5
  SHA512:
6
- metadata.gz: '08a2bb565a77837293ad33f4d80c6a2ba1b7f6d853097ce420576aab813651e84887244f8618e79a638e33c8a52d97c5450028bf1be9de1d08a62777e521d923'
7
- data.tar.gz: 34bc361cb1f619c6cad3d89bfe6022518c72dd73ba2f7a17884784a317520adc1e0c0adccba6dab264da3d747ccedd1b5beec0e3ddf46911a7696c711535e5c0
6
+ metadata.gz: a1d43a8631f36c4d04a29cb54dff8ff980fcfcc27416f71466aed84144e99fa512e68894b245274f63f8c5b162dad597bcb420e462000e9f45438d842e7cd118
7
+ data.tar.gz: 60dd90cdad8f348cce9185f13d7d78b0fa41e6d9e373a8ababbbf083ca30da0f85f2f00388f9e29f4dbae29c4daca28bb62806b32ae710bca449022c9cfc6253
@@ -17,7 +17,7 @@ jobs:
17
17
  timeout-minutes: 20
18
18
  strategy:
19
19
  matrix:
20
- ruby: [ 2.4, 2.5, 2.6, 2.7, '3.0', ruby-head, jruby-9.2 ]
20
+ ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', 'ruby-head', 'jruby-9.2' ]
21
21
  steps:
22
22
  - name: Checkout twilio-ruby
23
23
  uses: actions/checkout@v2
@@ -115,7 +115,7 @@ jobs:
115
115
  env:
116
116
  SLACK_COLOR: failure
117
117
  SLACK_ICON_EMOJI: ':github:'
118
- SLACK_MESSAGE: ${{ format('Tests *{0}*, Deploy *{1}*, {2}/{3}/actions/runs/{4}', needs.test.result, needs.deploy.result, github.server_url, github.repository, github.run_id) }}
118
+ SLACK_MESSAGE: ${{ format('Test *{0}*, Deploy *{1}*, {2}/{3}/actions/runs/{4}', needs.test.result, needs.deploy.result, github.server_url, github.repository, github.run_id) }}
119
119
  SLACK_TITLE: Action Failure - ${{ github.repository }}
120
120
  SLACK_USERNAME: GitHub Actions
121
121
  SLACK_MSG_AUTHOR: twilio-dx
data/CHANGES.md CHANGED
@@ -1,6 +1,37 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2022-02-09] Version 5.64.0
5
+ ---------------------------
6
+ **Library - Chore**
7
+ - [PR #594](https://github.com/twilio/twilio-ruby/pull/594): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
8
+
9
+ **Api**
10
+ - Add `stream` resource
11
+
12
+ **Conversations**
13
+ - Fixed DELETE request to accept "sid_like" params in Address Configuration resources **(breaking change)**
14
+ - Expose Address Configuration resource for `sms` and `whatsapp`
15
+
16
+ **Fax**
17
+ - Removed deprecated Programmable Fax Create and Update methods **(breaking change)**
18
+
19
+ **Insights**
20
+ - Rename `call_state` to `call_status` and remove `whisper` in conference participant summary **(breaking change)**
21
+
22
+ **Numbers**
23
+ - Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource
24
+
25
+ **Supersim**
26
+ - Fix typo in Fleet resource docs
27
+ - Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
28
+ - Add support for setting and reading `ip_commands_url` and `ip_commands_method` on Fleets resource for helper libraries
29
+ - Changed `sim` property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs
30
+
31
+ **Verify**
32
+ - Update list attempts API to include new filters and response fields.
33
+
34
+
4
35
  [2022-01-26] Version 5.63.1
5
36
  ---------------------------
6
37
  **Library - Fix**
data/README.md CHANGED
@@ -25,6 +25,7 @@ This library supports the following Ruby implementations:
25
25
  * Ruby 2.6
26
26
  * Ruby 2.7
27
27
  * Ruby 3.0
28
+ * Ruby 3.1
28
29
 
29
30
  ### Migrating from 4.x
30
31
 
@@ -35,13 +36,13 @@ This library supports the following Ruby implementations:
35
36
  To install using [Bundler][bundler] grab the latest stable version:
36
37
 
37
38
  ```ruby
38
- gem 'twilio-ruby', '~> 5.63.1'
39
+ gem 'twilio-ruby', '~> 5.64.0'
39
40
  ```
40
41
 
41
42
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
42
43
 
43
44
  ```bash
44
- gem install twilio-ruby -v 5.63.1
45
+ gem install twilio-ruby -v 5.64.0
45
46
  ```
46
47
 
47
48
  To build and install the development branch yourself from the latest source: