-
Notifications
You must be signed in to change notification settings - Fork 614
chore(codegen): pin smithy to 1.8.x #2499
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2499 +/- ##
=======================================
Coverage ? 59.54%
=======================================
Files ? 494
Lines ? 26394
Branches ? 6269
=======================================
Hits ? 15715
Misses ? 10679
Partials ? 0 Continue to review full report at Codecov.
|
Error thrown: 578 | if (err.name !== "CustomCodeError") {
579 | console.log(err);
> 580 | fail(`Expected a CustomCodeError to be thrown, got ${err.name} instead`);
| ^
581 | return;
582 | }
583 | const r: any = err; It requires supporting aws.protocols#awsQueryError trait for releasing clients on 06/17 with #2498 Relevant PRs in Go SDK:
The test in manually skipped for this PR in |
New error: RestJsonHttpRequestLabelEscaping:Request
expect(received).toBe(expected) // Object.is equality
Expected: "/HttpRequestWithLabels/%25%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D%F0%9F%98%B9/1/2/3/4.1/5.1/true/2019-12-16T23%3A48%3A18Z"
Received: "/HttpRequestWithLabels/%25%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2a%2B%2C%3B%3D%F0%9F%98%B9/1/2/3/4.1/5.1/true/2019-12-16T23%3A48%3A18Z"
1783 | const r = err.request;
1784 | expect(r.method).toBe("GET");
> 1785 | expect(r.path).toBe(
| ^
1786 | "/HttpRequestWithLabels/%25%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D%F0%9F%98%B9/1/2/3/4.1/5.1/true/2019-12-16T23%3A48%3A18Z"
1787 | );
1788 |
at Object.<anonymous> (tests/functional/restjson1.spec.ts:1785:20) Error: The character
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
eee4e7b
to
58c2e13
Compare
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
Issue
Follow-up to #2153
Description
Pins smithy to minor version 1.8.x
Testing
CI
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.