Skip to content
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

build(deps): bump github.com/aws/aws-sdk-go from 1.36.31 to 1.36.33 in /processor/resourcedetectionprocessor #2210

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2021

Bumps github.com/aws/aws-sdk-go from 1.36.31 to 1.36.33.

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.36.33 (2021-01-27)

Service Client Updates

  • service/accessanalyzer: Updates service API and documentation
  • service/customer-profiles: Updates service API
  • service/elasticache: Updates service API and documentation
    • Add support to pass ParameterGroup name as part updating Engine Version of Global Datastore.
  • service/es: Updates service API and documentation
    • Amazon Elasticsearch Service adds support for node-to-node encryption and encryption at rest for existing domains running Elasticsearch version 6.7 and above
  • service/lightsail: Updates service documentation
    • Documentation updates for Lightsail
  • service/sesv2: Updates service API and documentation

Release v1.36.32 (2021-01-26)

Service Client Updates

  • service/backup: Updates service documentation
Changelog

Sourced from github.com/aws/aws-sdk-go's changelog.

Release v1.36.33 (2021-01-27)

Service Client Updates

  • service/accessanalyzer: Updates service API and documentation
  • service/customer-profiles: Updates service API
  • service/elasticache: Updates service API and documentation
    • Add support to pass ParameterGroup name as part updating Engine Version of Global Datastore.
  • service/es: Updates service API and documentation
    • Amazon Elasticsearch Service adds support for node-to-node encryption and encryption at rest for existing domains running Elasticsearch version 6.7 and above
  • service/lightsail: Updates service documentation
    • Documentation updates for Lightsail
  • service/sesv2: Updates service API and documentation

Release v1.36.32 (2021-01-26)

Service Client Updates

  • service/backup: Updates service documentation
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team January 28, 2021 01:04
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 28, 2021
@codecov
Copy link

codecov bot commented Jan 28, 2021

Codecov Report

Merging #2210 (3308e30) into main (e2af59e) will decrease coverage by 0.03%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #2210      +/-   ##
==========================================
- Coverage   90.49%   90.46%   -0.04%     
==========================================
  Files         397      397              
  Lines       19577    19577              
==========================================
- Hits        17716    17710       -6     
- Misses       1401     1406       +5     
- Partials      460      461       +1     
Flag Coverage Δ
integration 69.37% <ø> (+0.06%) ⬆️
unit 89.25% <ø> (-0.04%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
receiver/prometheusexecreceiver/receiver.go 85.83% <0.00%> (-2.50%) ⬇️
receiver/k8sclusterreceiver/watcher.go 95.29% <0.00%> (-2.36%) ⬇️
processor/groupbytraceprocessor/event.go 95.96% <0.00%> (-0.81%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e2af59e...3308e30. Read the comment docs.

@bogdandrutu bogdandrutu merged commit 20f13e9 into main Jan 28, 2021
@bogdandrutu bogdandrutu deleted the dependabot/go_modules/processor/resourcedetectionprocessor/github.com/aws/aws-sdk-go-1.36.33 branch January 28, 2021 17:12
dyladan referenced this pull request in dynatrace-oss-contrib/opentelemetry-collector-contrib Jan 29, 2021
* POC/Proposal for exposing configuration schemas

Issue: https://github.com/open-telemetry/opentelemetry-collector/issues/1995

This change proposes a way to generate metadata for the configuration structs
used by Collector components. The generated metadata could be used for
documentation and tooling.

The way it works is, given a component, its configuration struct is found, and
its field names, types, tags, default values, and comments are retrieved and
put into a struct. This is done recursively, but respecting "squashed" fields,
and any fields omitted with a "-" tag. The final struct is marshaled to a yaml
file in the directory of the configuration type.

Also included are a simple command line interface and an example metadata
file. The CLI lets users create a metadata file for either a given component or
for all registered components.

Tests have not been included as this change is meant to be exploratory.

* Use a map rather than an array for fields

* Expose component configuration schemas

Issue: https://github.com/open-telemetry/opentelemetry-collector/issues/1995

This change adds a command line utility to generate schema files for each of
the configuration structs used by Collector components. The intent is for these
generated files to be used by documentation utilities and tooling.

The way it works is, given a component, its default configuration struct is
retrieved and introspected, producing field names, types, default values, and
comments. Those are recursively put into a graph of structs, respecting
"squashed" fields and any fields omitted with a "-" tag. Finally, the struct is
marshaled to a yaml file in the directory of the configuration type.

The CLI lets users create a metadata file for either one component or for all
registered components.

For reference, preliminary feedback was gathered here open-telemetry/opentelemetry-collector#2169

* Create a local go module, don't panic on mapstructure errors

* Move code to internal, exclude cfgschema from Makefile

* Increase test coverage

* Increase test coverage

* Fix lint

* Reorg so schemagen can be used from contrib

* Don't export stuff that no longer needs to be exported
pmatyjasek-sumo referenced this pull request in pmatyjasek-sumo/opentelemetry-collector-contrib Apr 28, 2021
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.36.31 to 1.36.33.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/master/CHANGELOG.md)
- [Commits](aws/aws-sdk-go@v1.36.31...v1.36.33)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ljmsc referenced this pull request in ljmsc/opentelemetry-collector-contrib Feb 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants