-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ruby 3.2 to CI. Update checkout action versions. (#30)
* Add Ruby 3.2 to CI. Update checkout action versions. * Address CHANGELOG issues and add an UPGRADING * Add authors
- Loading branch information
1 parent
7c2fb36
commit 78f60f6
Showing
4 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Upgrading OpenWeather Ruby Client | ||
================================= | ||
|
||
### Upgrading to >= 0.3.0 | ||
|
||
[#27](https://github.com/dblock/open-weather-ruby-client/pull/27) Removes default values for Faraday's SSL settings `ca_file` and `ca_path`. | ||
|
||
If you previously relied on `OpenSSL::X509::DEFAULT_CERT_FILE` or `OpenSSL::X509::DEFAULT_CERT_DIR` to set these values you must now do so explicitly. E.g.: | ||
|
||
```ruby | ||
OpenWeather::Client.configure do |config| | ||
config.ca_path = OpenSSL::X509::DEFAULT_CERT_DIR | ||
config.ca_file = OpenSSL::X509::DEFAULT_CERT_FILE | ||
end | ||
``` |