Skip to content

Commit 969e16d

Browse files
authored
Fix Travis + misc cleanup (#2389)
1 parent 38cc01d commit 969e16d

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.travis.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ rvm:
1414
- 2.3
1515
- 2.4
1616
- 2.5
17+
- 2.6
18+
- 2.7
1719
- jruby-9.1
1820
- jruby-9.2
1921

@@ -23,7 +25,8 @@ env:
2325
- PURE_RUBY=1
2426
- KITCHEN_SINK=1
2527

26-
script: bundle exec rake
28+
# Disable Ruby warnings (Struct::Tms deprecation for 2.6+)
29+
script: RUBYOPT='-W0' bundle exec rake
2730

2831
bundler_args: --without docs release repl
2932

@@ -38,11 +41,3 @@ matrix:
3841
env: OLD_OJ=1
3942
- rvm: 2.3
4043
env: OLD_OX=1
41-
42-
notifications:
43-
webhooks:
44-
urls:
45-
- "https://webhooks.gitter.im/e/4442efd380ec811746d9"
46-
on_success: change
47-
on_failure: always
48-
on_start: false

UPGRADING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
credential provider chain, and for default region selection. Since these
3939
changes could technically be a breaking change to default (and commonly used)
4040
behavior, there is a feature flag around this functionality.
41-
41+
4242
To use these new features, you must set the `AWS_SDK_LOAD_CONFIG` environment
4343
variable. If not set, the existing default behavior will continue.
44-
44+
4545
Two other upgrading notes are worth keeping in mind for this release:
46-
46+
4747
* Private interfaces regarding handling of configuration were changed for this
4848
feature. Those interfaces were marked `@api private`, signifying that they
4949
should not have been used outside the SDK for development. If you were
@@ -424,4 +424,4 @@ changes before 2.0.0 final.
424424

425425
# Upgrading from v1?
426426

427-
Please see [MIGRATING.md](https://github.com/aws/aws-sdk-ruby/blob/master/MIGRATING.md)
427+
Please see [MIGRATING.md](https://github.com/aws/aws-sdk-ruby/blob/version-2/MIGRATING.md)

aws-sdk-core/spec/aws/polly/presigner_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module Polly
4848
"us-west-2%2Fpolly%2Faws4_request&"\
4949
"X-Amz-Date=20160101T112233Z&X-Amz-Expires=900&"\
5050
"X-Amz-SignedHeaders=host&"\
51-
"X-Amz-Signature=956ef486286b12f43ffc02dd09eae03cfea4cd8dfb30e0fab3f23de4e131195a"
51+
"X-Amz-Signature=acb554087d5e340223b3415c79618adeb5c2b6dba19ba91771fbbe1d50a78f3d"
5252

5353
pre = Presigner.new(region: region, credentials: credentials)
5454
params = {

0 commit comments

Comments
 (0)