-
-
Notifications
You must be signed in to change notification settings - Fork 398
Remove useless go.mod files in repo / Fix dependabot alerts #2100
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 ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #2100 +/- ##
==========================================
- Coverage 36.57% 35.05% -1.52%
==========================================
Files 229 232 +3
Lines 19630 20480 +850
==========================================
Hits 7180 7180
- Misses 11605 12455 +850
Partials 845 845
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 2 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
310a3f8
to
59b065a
Compare
59b065a
to
7465cfc
Compare
I've added a commit to upgrade |
… alerts (arduino#2100) * Removed go.mod from client_example * Removed go.mod from docsgen * Refactored discovery client and removed now useless go.mod files * Updated license cache * Upgraded some dependencies to fix dependabot alerts
Please check if the PR fulfills these requirements
See how to contribute
before creating one)
our contributing guidelines
UPGRADING.md
has been updated with a migration guide (for breaking changes)configuration.schema.json
updated if new parameters are added.What kind of change does this PR introduce?
Removed some
go.mod
/go.sum
files in subdirectories:client_example/go.mod
, is not needed, it just replicates the content of the rootgo.mod
docsgen/go.mod
, is not needed, it just replicates the content of the rootgo.mod
arduino/discovery/discovery_client/go.mod
, adds a dependency onjiasu.xzqcsaa.nyc.mn/gizak/termui/v3
, to remove thego.mod
file I've refactored the client and removed thetermui
library.The changes above simplifies dependencies management in this repo in case of security upgrades.
Upgraded
golang.org/x/crypto
andgolang.org/x/net
to fix dependabot alerts.What is the current behavior?
What is the new behavior?
No changes
Does this PR introduce a breaking change, and is titled accordingly?
No breaking changes.
Other information