Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 0.12.0 version #131

Merged
merged 3 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Unreleased

# v 0.12.0
- Added ability to specify logger @chahmedejaz [#129](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/129)
- Allow download of unsupported media types @dvuckovic [#128](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/128)
- Allow users to specify the API version. @conr [#126](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/126)
- Use http multipart only when is needed. @ignacio-chiazzo [#123](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/123)
- Validate Vertical on BusinessProfile update API. @ignacio-chiazzo [#120](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/120)
- Added ability to specify fields param in the busines profile API. @ignacio-chiazzo [#119](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/119)
Expand Down
9 changes: 4 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
whatsapp_sdk (0.11.0)
whatsapp_sdk (0.12.0)
faraday (~> 2)
faraday-multipart (~> 1)
sorbet-runtime (~> 0.5)
Expand All @@ -17,7 +17,7 @@ GEM
coderay (1.1.3)
crack (0.4.5)
rexml
faraday (2.7.12)
faraday (2.8.1)
base64
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
Expand All @@ -28,7 +28,7 @@ GEM
method_source (1.0.0)
minitest (5.16.1)
mocha (1.14.0)
multipart-post (2.3.0)
multipart-post (2.4.0)
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -79,8 +79,7 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
yard (0.9.35)
zeitwerk (2.6.12)
zeitwerk (2.6.13)

PLATFORMS
arm64-darwin-21
Expand Down
2 changes: 1 addition & 1 deletion lib/whatsapp_sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# frozen_string_literal: true

module WhatsappSdk
VERSION = "0.11.0"
VERSION = "0.12.0"
end
2 changes: 1 addition & 1 deletion test/whatsapp/api/client_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def faraday_middlewares(client)
def assert_match_logger_output!(logged_string)
assert_match('INFO -- request: GET https://graph.facebook.com/v19.0/test', logged_string)
assert_match('INFO -- request: Authorization: "Bearer test_token"', logged_string)
assert_match('User-Agent: "Faraday v2.7.12"', logged_string)
assert_match('User-Agent: "Faraday', logged_string)
assert_match('INFO -- response: Status 200', logged_string)
end
end
Expand Down
Loading
Loading