Skip to content

Commit 1032a4d

Browse files
authored
Merge pull request #689 from aws/feature/SmithyAPIClient
Merge Smithy Clients into Master
2 parents 4594625 + 197b4e0 commit 1032a4d

File tree

14,452 files changed

+5361826
-2757210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,452 files changed

+5361826
-2757210
lines changed

.changes/versions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"SchemaVersion": 1
3+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ Gemfile.lock
77
/internal/awstesting/integration/smoke/_test/
88
/vendor
99
/private/model/cli/gen-api/gen-api
10+
.gradle/
11+
build/

.travis.yml

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,52 @@ dist: bionic
44

55
os:
66
- linux
7+
- osx
78
go:
8-
- 1.13.x
9-
- 1.14.x
9+
- 1.15.x
1010
- tip
1111

12+
script:
13+
- go get -u golang.org/x/lint/golint
14+
- make ci-test-no-generate;
15+
16+
before_install:
17+
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
18+
1219
matrix:
13-
allow_failures:
14-
- go: tip
20+
allow_failures:
21+
- go: tip
1522

16-
script:
17-
make ci-test;
23+
include:
24+
- language: go
25+
os: windows
26+
go: 1.15.x
27+
script:
28+
- make vet build unit-test
29+
30+
- language: java
31+
jdk: openjdk8
32+
before_script:
33+
- rm -rf /tmp/smithy-go
34+
- git clone https://github.com/awslabs/smithy-go /tmp/smithy-go
35+
- pushd /tmp/smithy-go/codegen
36+
- ./gradlew clean publishToMavenLocal -Plog-tests
37+
- popd
38+
script:
39+
- make smithy-generate # generation is not stable ci-test-generate-validate
40+
41+
- language: java
42+
jdk: openjdk11
43+
before_script:
44+
- rm -rf /tmp/smithy-go
45+
- git clone https://github.com/awslabs/smithy-go /tmp/smithy-go
46+
- pushd /tmp/smithy-go/codegen
47+
- ./gradlew clean publishToMavenLocal -Plog-tests
48+
- popd
49+
script:
50+
- make smithy-generate # generation is not stable ci-test-generate-validate
1851

52+
branches:
53+
only:
54+
- master
55+
- feature/SmithyAPIClient

CHANGELOG_PENDING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ SDK Enhancements
99

1010
SDK Bugs
1111
---
12+
* `aws/external`: Fixed a bug where an error from `EC2RoleCredentialProviderOptions` would not be returned during credential resolution. ([#659](https://github.com/aws/aws-sdk-go-v2/pull/659))
13+
* Additionally, fixes a bug that would prevent config sources that implement `EndpointCredentialProviderOptions` from being used when resolving credentials from an HTTP provider.

Gopkg.lock

Lines changed: 0 additions & 16 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)