-
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
Add new FactoryUnmarshaler support to all components, deprecate old way #1468
Conversation
097d59d
to
72efdeb
Compare
Codecov Report
@@ Coverage Diff @@
## master #1468 +/- ##
==========================================
+ Coverage 90.95% 90.96% +0.01%
==========================================
Files 239 239
Lines 16711 16737 +26
==========================================
+ Hits 15199 15225 +26
+ Misses 1083 1082 -1
- Partials 429 430 +1
Continue to review full report at Codecov.
|
4409737
to
16fd7b6
Compare
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.
LGTM, just a minor comment.
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
…emetry#1468) The main reason for the change is I'm trying to use this library with Bazel, using gazelle. Gazelle automates creation of the Bazel rules for a Go module. Gazelle assumes files ending in '.proto' are Protocol Buffer files and invokes protoc on the file to generate the Go code for the proto file. Unfortunately, protoc doesn't seem to like Makefiles. As a side-benefit, editors that don't support Emacs mode hints `-*- mode: makefile; -*-` won't try to highlight the Makefile as a protobuf file.
…y#1468) Bumps [boto3](https://github.com/boto/boto3) from 1.21.40 to 1.21.41. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](boto/boto3@1.21.40...1.21.41) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Updates #882 - need custom unmarshaler for the exporter to allow multi protocols support.
Fixes #292