-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Use latest (successfully building) version of uuid #3924
Conversation
@AllanZhengYP @trivikr Can you check this 1 line PR to update |
@jrencz @BourgoisMickael - The CI build failed, you might want to take a look so we can get this merged in ! |
@davecarlson I rebased to current master. I tried to run 4447 passing (22s) just that now there's twice as much tests, but some stubborn 7 keep failing locally on node 16 Let's see what will it be this time on CodeBuild |
@davecarlson t seems to fail on CodeBuild for different reasons than locally - there are no failed tests. There's failure during minification of code run by a rake task. And that's promissing task :build_all => [:setup_dist_tools, :dist_path] do
sh({"MINIFY" => "1"}, "#{$BUILDER} all > dist/aws-sdk-all.js")
end I tried running that locally and indeed with I bisected versions down and it turns out the latest that passes that step is Next one There's a significant amount of changes from My best guess is that either one of those changes, or change in either of dependencies use some ES6 syntax that uglify doesn't like. I have tried latest I see it this way: we go with highest possible (i.e. Let's build it with |
Whoop it passes ! @BourgoisMickael @AllanZhengYP @trivikr can you take another look for code reviewers approval ? |
Removes one of 2 warnings mentioned in #3812
The way
uuid
is used inaws-sdk-js/lib/util.js
Lines 920 to 927 in bb861ce
was already compatible with latest version
Checklist
npm run test
passesOn
npm run test
passes:
masterbefore this change when
npm run unit` is run @ node 16.2:2882 passing (18s)
7 failing
With this PR:
2882 passing (15s)
7 failing
On
npm run integration
run @ node 16.2 same 4 problems are raised with and without uuid version bump.No test was fixed, no test was broken.