Skip to content

Bump rustls from 0.22.2 to 0.22.3#2

Merged
tobz merged 1 commit into
mainfrom
dependabot/cargo/rustls-0.22.3
Apr 12, 2024
Merged

Bump rustls from 0.22.2 to 0.22.3#2
tobz merged 1 commit into
mainfrom
dependabot/cargo/rustls-0.22.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 10, 2024

Copy link
Copy Markdown
Contributor

Bumps rustls from 0.22.2 to 0.22.3.

Commits
  • a1e28cd Prepare 0.22.3
  • 114c476 suites.rs: fix nonsensical duplicated feature gate
  • ffd933a Fix new clippy::use_self warnings
  • fb6e70a dangerous_extract_secrets(): test ConnectionTrafficSecrets variant
  • 2d5c80e Return correct ConnectionTrafficSecrets variant when AES-256-GCM is negotia...
  • 77ffe49 tests: fix implied_bounds_in_impls clippy warn
  • 65dfd9c Avoid clippy::std_instead_of_core false positive
  • b4adf89 Address clippy::multiple_bound_locations
  • 1104a47 Address clippy::mixed_attributes_style
  • 5a5f638 Address clippy::assigning_clones
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 added the dependencies Pull requests that update a dependency file label Apr 10, 2024
@dependabot dependabot Bot force-pushed the dependabot/cargo/rustls-0.22.3 branch from 08333f7 to 5ad45f4 Compare April 12, 2024 18:35
@dependabot dependabot Bot requested a review from a team April 12, 2024 18:35
Bumps [rustls](https://github.com/rustls/rustls) from 0.22.2 to 0.22.3.
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.22.2...v/0.22.3)

---
updated-dependencies:
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/rustls-0.22.3 branch from 5ad45f4 to aec3746 Compare April 12, 2024 19:55
@tobz tobz merged commit 13e3efb into main Apr 12, 2024
@dependabot dependabot Bot deleted the dependabot/cargo/rustls-0.22.3 branch April 12, 2024 20:06
GustavoCaso pushed a commit that referenced this pull request Apr 15, 2025
aqian01 added a commit that referenced this pull request Sep 10, 2025
## Summary
<!-- Please provide a brief summary about what this PR does.
This should help the reviewers give feedback faster and with higher
quality. -->

Extends OTLP source enabling ADP to receive OTLP logs.

This PR merges into a feature branch, which is based off a [WIP
branch](#857).

## Change Type
- [ ] Bug fix
- [x] New feature
- [ ] Non-functional (chore, refactoring, docs)
- [ ] Performance


## How did you test this PR?
<!-- Please how you tested these changes here -->
Manual Testing:
Run 
`make run-adp-standalone`

Install
`brew install grpcurl`

then in a new terminal, send over a log using

```
grpcurl -plaintext \
  -import-path /Users/andrew.qian/Documents/Code/saluki/lib/otlp-protos/proto \
  -proto opentelemetry/proto/collector/logs/v1/logs_service.proto \
  -d @ 127.0.0.1:4317 \
  opentelemetry.proto.collector.logs.v1.LogsService/Export <<'JSON'
{
  "resourceLogs": [
    {
      "resource": {
        "attributes": [
          { "key": "service.name", "value": { "stringValue": "saluki-adp" } }
        ]
      },
      "scopeLogs": [
        {
          "scope": { "name": "test-client", "version": "0.1.0" },
          "logRecords": [
            {
              "timeUnixNano": "0",
              "severityNumber": "SEVERITY_NUMBER_INFO",
              "severityText": "INFO",
              "body": { "stringValue": "hello from grpcurl (OTLP logs)" },
              "attributes": [
                { "key": "env", "value": { "stringValue": "dev" } }
              ]
            }
          ]
        }
      ]
    }
  ]
}
JSON
```
Change the` /Users/andrew.qian/Documents/Code` to your path

`{}` should be returned.

Also can use print statements to see logs sent
```
| service:"saluki-adp",scope:"test-client",severity:"" | OTLP log: log #1
2025-09-09 18:58:03 EDT | DATAPLANE | INFO | (lib/saluki-components/src/sources/otlp/mod.rs:488) | service:"saluki-adp",scope:"test-client",severity:"" | OTLP log: log #2
```

More info about manual testing in comments

## References

<!-- Please list any issues closed by this PR. -->

<!--
- Closes: <issue link>
-->

<!-- Any other issues or PRs relevant to this PR? Feel free to list them
here. -->
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.

1 participant