-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
chore: Fixed incorrect pinning of @elastic/transport #2120
Conversation
test/versioned/elastic/package.json
Outdated
@@ -11,18 +11,20 @@ | |||
"node": ">=16" | |||
}, | |||
"dependencies": { | |||
"@elastic/elasticsearch": "7.13.0" | |||
"@elastic/elasticsearch": "7.13.0", | |||
"@elastic/transport": "8.4.1" |
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.
this isn't needed. this is only testing on 7.13.0 which doesn't have @elastic/transport
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2120 +/- ##
=======================================
Coverage 97.20% 97.20%
=======================================
Files 251 251
Lines 42317 42317
=======================================
Hits 41133 41133
Misses 1184 1184
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
My previous PR didn't quite do it.