{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":56342508,"defaultBranch":"main","name":"jaeger","ownerLogin":"jaegertracing","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-04-15T18:49:02.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/28545596?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716846030.0","currentOid":""},"activityList":{"items":[{"before":"ac7744e50c14c68bcc4dfee7499eeafda03ed67f","after":"629c47ed7b70a2e7b778c3c0e7fede132d5e2654","ref":"refs/heads/main","pushedAt":"2024-05-31T17:35:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"[agent/test] Wait for goroutine to exit (#5503)\n\n## Which problem is this PR solving?\r\n- Spurious failure of tests in main due to a data race\r\nhttps://github.com/jaegertracing/jaeger/actions/runs/9312817206/job/25634207633#step:8:15\r\n- Most likely because the agent logs \"http server exiting\" from the\r\nserver goroutine, which may happen after Close returned and the test\r\nfinished, this causing a log to be written to finished testing.T\r\n\r\n## Description of the changes\r\n- use WaitGroup and block Close until goroutine is done\r\n\r\n## How was this change tested?\r\n```\r\n$ go test -race -count 10 ./cmd/agent/app\r\nok \tgithub.com/jaegertracing/jaeger/cmd/agent/app\t11.416s\r\n```\r\nbut this is not really conclusive since it does not always reproduce the\r\ndata race\r\n\r\nSigned-off-by: Yuri Shkuro ","shortMessageHtmlLink":"[agent/test] Wait for goroutine to exit (#5503)"}},{"before":"dec6219af61f869c9287c5c00bb6cb3cd18e33c5","after":"ac7744e50c14c68bcc4dfee7499eeafda03ed67f","ref":"refs/heads/main","pushedAt":"2024-05-31T04:13:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Replace internal metrics.Factory usage with direct calls to expvar (#5496)\n\n## Which problem is this PR solving?\r\n- fixes: #5495\r\n\r\n## Description of the changes\r\n * removed fork.New factory usage\r\n* identify which internal components use \"internal\" namespace to report\r\nsettings and replace with expvar directly\r\n * removed internal/metrics/fork/*\r\n * removed internal/metrics/expvar/*\r\n * fixed tests\r\n\r\n## How was this change tested?\r\n- \r\n\r\n## Checklist\r\n- [ ] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [ ] I have signed all commits\r\n- [ ] I have added unit tests for the new functionality\r\n- [ ] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\n---------\r\n\r\nSigned-off-by: Griffin ","shortMessageHtmlLink":"Replace internal metrics.Factory usage with direct calls to expvar (#…"}},{"before":"590036037122082b46d830e4c6caa299f7fdbe92","after":"dec6219af61f869c9287c5c00bb6cb3cd18e33c5","ref":"refs/heads/main","pushedAt":"2024-05-30T20:41:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"[test] Use locks to avoid race condition (#5502)\n\n## Which problem is this PR solving?\r\n- Test failed with a race condition in an unrelated PR:\r\nhttps://github.com/jaegertracing/jaeger/actions/runs/9307158853/job/25617867008?pr=5496#step:8:196\r\n\r\n## Description of the changes\r\n- Grab the lock before reading fields\r\n\r\n## How was this change tested?\r\n```\r\n$ go test -race -count 10 ./plugin/sampling/strategystore/adaptive/\r\nok \tgithub.com/jaegertracing/jaeger/plugin/sampling/strategystore/adaptive\t1.556s\r\n```\r\n\r\nSigned-off-by: Yuri Shkuro ","shortMessageHtmlLink":"[test] Use locks to avoid race condition (#5502)"}},{"before":"a7a7308c2da52a90ebf75313ce322f82cd43b59d","after":"590036037122082b46d830e4c6caa299f7fdbe92","ref":"refs/heads/main","pushedAt":"2024-05-28T23:54:05.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Use docker compose for elasticsearch/opensearch integration tests (#5490)\n\n## Which problem is this PR solving?\r\n\r\nPart of #5485\r\n\r\n## Description of the changes\r\n* updated `script/es-integration-test.sh` to use docker compose files\r\n* updated `.github/workflows/ci-elasticsearch.yml` now it only passes\r\nthe major version for elasticsearch\r\n* updated `.github/workflows/ci-opensearch.yml` now it only passes major\r\nversion for opensearch\r\n* added docker compose files at `docker-compose/elasticsearch` and\r\n`docker-compose/opensearch`\r\n* removed` setup_es` and `setup_opensearch` function and a generalized\r\n`setup_db()` function\r\n\r\n## How was this change tested?\r\n- CI\r\n\r\n## Checklist\r\n- [x] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [x] I have signed all commits\r\n- [x] I have added unit tests for the new functionality\r\n- [x] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\n---------\r\n\r\nSigned-off-by: Your Name \r\nSigned-off-by: mehul gautam \r\nCo-authored-by: Your Name ","shortMessageHtmlLink":"Use docker compose for elasticsearch/opensearch integration tests (#5490"}},{"before":"695f2306cd348710c87221d5caaabffe13e97550","after":"a7a7308c2da52a90ebf75313ce322f82cd43b59d","ref":"refs/heads/main","pushedAt":"2024-05-27T23:03:48.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Remove support for expvar-backed metrics (#5437)\n\n## Which problem is this PR solving?\r\n- Part of #4722\r\n\r\n## Description of the changes\r\n- This PR removes deprecated expvar CLI flags for expvar-backed metrics\r\n- The internal parameters/settings of some components are still exposed\r\nvia expvar. The implementation was changed to no longer depend on\r\ngo-kit, thus reducing the dependencies\r\n\r\n## How was this change tested?\r\n- Tested locally by running the application without the deprecated flags\r\nto ensure that it functions correctly.\r\n\r\n## Checklist\r\n- [x] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [x] I have signed all commits\r\n- [ ] I have added unit tests for the new functionality\r\n- [] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\n---------\r\n\r\nSigned-off-by: Joeyyy09 \r\nSigned-off-by: Harshith Mente <109957201+joeyyy09@users.noreply.github.com>\r\nSigned-off-by: Yuri Shkuro \r\nSigned-off-by: Yuri Shkuro \r\nCo-authored-by: Yuri Shkuro \r\nCo-authored-by: Yuri Shkuro ","shortMessageHtmlLink":"Remove support for expvar-backed metrics (#5437)"}},{"before":"56a5e57cea1e96bf66eceb41f3c1c75b9e15291b","after":null,"ref":"refs/heads/dependabot/github_actions/step-security/harden-runner-2.8.0","pushedAt":"2024-05-27T21:40:30.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"cab22050887b6956d1b7d110d64ec61fc8687653","after":"695f2306cd348710c87221d5caaabffe13e97550","ref":"refs/heads/main","pushedAt":"2024-05-27T21:40:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Bump step-security/harden-runner from 2.7.0 to 2.8.0 (#5493)\n\nBumps\r\n[step-security/harden-runner](https://github.com/step-security/harden-runner)\r\nfrom 2.7.0 to 2.8.0.\r\n
\r\nRelease notes\r\n

Sourced from step-security/harden-runner's\r\nreleases.

\r\n
\r\n

v2.8.0

\r\n

What's Changed

\r\n

Release v2.8.0 by @​h0x0er and @​varunsh-coder\r\nin step-security/harden-runner#416\r\nThis release includes:

\r\n
    \r\n
  • File Monitoring Enhancements: Adds the capability to view the name\r\nand path of every file written during the build process.
  • \r\n
  • Process Tracking Enhancements: Adds the capability to view process\r\nnames and arguments of processes run during the build process.
  • \r\n
\r\n

These enhancements are based on insights from the XZ Utils incident,\r\naimed at improving observability and detections during the build\r\nprocess.

\r\n

Full Changelog: https://github.com/step-security/harden-runner/compare/v2...v2.8.0

\r\n

v2.7.1

\r\n

What's Changed

\r\n

Release v2.7.1 by @​varunsh-coder,\r\n@​h0x0er, @​ashishkurmi in\r\nstep-security/harden-runner#397\r\nThis release:

\r\n
    \r\n
  • Improves the capability to inspect\r\noutbound HTTPS traffic on GitHub-hosted and self-hosted VM\r\nrunners
  • \r\n
  • Updates README to add link to case study video\r\non how Harden-Runner detected a supply chain attack on a Google\r\nopen-source project
  • \r\n
  • Addresses minor bugs
  • \r\n
\r\n

Full Changelog: https://github.com/step-security/harden-runner/compare/v2.7.0...v2.7.1

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • f086349\r\nMerge pull request #416\r\nfrom step-security/rc-8
  • \r\n
  • b9c325d\r\nUpdate image
  • \r\n
  • 808a771\r\nAdd info about file and process events
  • \r\n
  • 7171429\r\nUpdate agent
  • \r\n
  • 9ff9d14\r\nMerge pull request #406\r\nfrom step-security/dependabot/github_actions/step-sec...
  • \r\n
  • ac5fa01\r\nBump step-security/harden-runner from 2.7.0 to 2.7.1
  • \r\n
  • a4aa98b\r\nRelease v2.7.1 (#397)
  • \r\n
  • 6c3b1c9\r\nMerge pull request #379\r\nfrom step-security/dependabot/github_actions/step-sec...
  • \r\n
  • 3498091\r\nBump step-security/harden-runner from 2.6.1 to 2.7.0
  • \r\n
  • 63a88e2\r\nMerge pull request #378\r\nfrom step-security/update-readme3
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=step-security/harden-runner&package-manager=github_actions&previous-version=2.7.0&new-version=2.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump step-security/harden-runner from 2.7.0 to 2.8.0 (#5493)"}},{"before":"7f7c84e02fa19e34232fd908b3dbccfcedd28fe5","after":"cab22050887b6956d1b7d110d64ec61fc8687653","ref":"refs/heads/main","pushedAt":"2024-05-27T16:09:42.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Remove support for Elasticsearch v5 and v6 #5439 (#5491)","shortMessageHtmlLink":"Remove support for Elasticsearch v5 and v6 #5439 (#5491)"}},{"before":"c7d3c01291ce30e4e52d3b41cd15f57d4893ab44","after":"56a5e57cea1e96bf66eceb41f3c1c75b9e15291b","ref":"refs/heads/dependabot/github_actions/step-security/harden-runner-2.8.0","pushedAt":"2024-05-27T15:52:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump step-security/harden-runner from 2.7.0 to 2.8.0\n\nBumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.7.0 to 2.8.0.\n- [Release notes](https://github.com/step-security/harden-runner/releases)\n- [Commits](https://github.com/step-security/harden-runner/compare/63c24ba6bd7ba022e95695ff85de572c04a18142...f086349bfa2bd1361f7909c78558e816508cdc10)\n\n---\nupdated-dependencies:\n- dependency-name: step-security/harden-runner\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump step-security/harden-runner from 2.7.0 to 2.8.0"}},{"before":"cf26962a076d208a28b7e4c6260fca5ce51929c5","after":null,"ref":"refs/heads/dependabot/github_actions/anchore/sbom-action-0.16.0","pushedAt":"2024-05-27T15:51:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"1f79de1f9ad89bcac459c3b8f7caa5e103ab8386","after":"7f7c84e02fa19e34232fd908b3dbccfcedd28fe5","ref":"refs/heads/main","pushedAt":"2024-05-27T15:51:23.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Bump anchore/sbom-action from 0.15.11 to 0.16.0 (#5492)","shortMessageHtmlLink":"Bump anchore/sbom-action from 0.15.11 to 0.16.0 (#5492)"}},{"before":null,"after":"c7d3c01291ce30e4e52d3b41cd15f57d4893ab44","ref":"refs/heads/dependabot/github_actions/step-security/harden-runner-2.8.0","pushedAt":"2024-05-27T04:33:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump step-security/harden-runner from 2.7.0 to 2.8.0\n\nBumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.7.0 to 2.8.0.\n- [Release notes](https://github.com/step-security/harden-runner/releases)\n- [Commits](https://github.com/step-security/harden-runner/compare/63c24ba6bd7ba022e95695ff85de572c04a18142...f086349bfa2bd1361f7909c78558e816508cdc10)\n\n---\nupdated-dependencies:\n- dependency-name: step-security/harden-runner\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump step-security/harden-runner from 2.7.0 to 2.8.0"}},{"before":null,"after":"cf26962a076d208a28b7e4c6260fca5ce51929c5","ref":"refs/heads/dependabot/github_actions/anchore/sbom-action-0.16.0","pushedAt":"2024-05-27T04:33:21.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump anchore/sbom-action from 0.15.11 to 0.16.0\n\nBumps [anchore/sbom-action](https://github.com/anchore/sbom-action) from 0.15.11 to 0.16.0.\n- [Release notes](https://github.com/anchore/sbom-action/releases)\n- [Commits](https://github.com/anchore/sbom-action/compare/7ccf588e3cf3cc2611714c2eeae48550fbc17552...e8d2a6937ecead383dfe75190d104edd1f9c5751)\n\n---\nupdated-dependencies:\n- dependency-name: anchore/sbom-action\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump anchore/sbom-action from 0.15.11 to 0.16.0"}},{"before":"b669d51ede85c82925aa8dae44e144efe4e12ce2","after":"1f79de1f9ad89bcac459c3b8f7caa5e103ab8386","ref":"refs/heads/main","pushedAt":"2024-05-26T22:36:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Revert #5482 - ppc64le is not yet supported by delve (#5489)\n\n## Which problem is this PR solving?\r\n- `ppc64le` was added in #5482, but even though it has been implemented\r\nin delve (https://github.com/go-delve/delve/issues/2104), it has not yet\r\nbeen released as of delve@v1.22.1\r\n- since our PR CI does not build all arch, it was not noticed until the\r\nCI on the main branch started failing\r\n\r\n## Description of the changes\r\n- Add `ppc64le` back to exclusion list\r\n\r\n## How was this change tested?\r\n- only after merging\r\n\r\nSigned-off-by: Yuri Shkuro ","shortMessageHtmlLink":"Revert #5482 - ppc64le is not yet supported by delve (#5489)"}},{"before":"ba9a35e5867a683d8abe62bcfd4ed3eecae11d56","after":null,"ref":"refs/heads/dependabot/github_actions/actions/checkout-4.1.6","pushedAt":"2024-05-26T21:52:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"370c6990d18f44bc4f09ebd9c1e0f07939c34601","after":null,"ref":"refs/heads/dependabot/github_actions/github/codeql-action-3.25.6","pushedAt":"2024-05-26T21:52:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"8d124100a0b03583851be7025b3128c10f96fe7d","after":"b669d51ede85c82925aa8dae44e144efe4e12ce2","ref":"refs/heads/main","pushedAt":"2024-05-26T21:51:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Bump github/codeql-action from 2.2.4 to 3.25.6 (#5488)\n\nBumps [github/codeql-action](https://github.com/github/codeql-action)\r\nfrom 2.2.4 to 3.25.6.\r\n
\r\nRelease notes\r\n

Sourced from github/codeql-action's\r\nreleases.

\r\n
\r\n

CodeQL Bundle v2.17.3

\r\n

Bundles CodeQL CLI v2.17.3

\r\n
    \r\n
  • (changelog,\r\nrelease)
  • \r\n
\r\n

Includes the following CodeQL language packs from github/codeql@codeql-cli/v2.17.3:

\r\n
    \r\n
  • codeql/cpp-queries (changelog,\r\nsource)
  • \r\n
  • codeql/cpp-all (changelog,\r\nsource)
  • \r\n
  • codeql/csharp-queries (changelog,\r\nsource)
  • \r\n
  • codeql/csharp-all (changelog,\r\nsource)
  • \r\n
  • codeql/go-queries (changelog,\r\nsource)
  • \r\n
  • codeql/go-all (changelog,\r\nsource)
  • \r\n
  • codeql/java-queries (changelog,\r\nsource)
  • \r\n
  • codeql/java-all (changelog,\r\nsource)
  • \r\n
  • codeql/javascript-queries (changelog,\r\nsource)
  • \r\n
  • codeql/javascript-all (changelog,\r\nsource)
  • \r\n
  • codeql/python-queries (changelog,\r\nsource)
  • \r\n
  • codeql/python-all (changelog,\r\nsource)
  • \r\n
  • codeql/ruby-queries (changelog,\r\nsource)
  • \r\n
  • codeql/ruby-all (changelog,\r\nsource)
  • \r\n
  • codeql/swift-queries (changelog,\r\nsource)
  • \r\n
  • codeql/swift-all (changelog,\r\nsource)
  • \r\n
\r\n

CodeQL Bundle v2.17.2

\r\n

Bundles CodeQL CLI v2.17.2

\r\n
    \r\n
  • (changelog,\r\nrelease)
  • \r\n
\r\n

Includes the following CodeQL language packs from github/codeql@codeql-cli/v2.17.2:

\r\n
    \r\n
  • codeql/cpp-queries (changelog,\r\nsource)
  • \r\n
  • codeql/cpp-all (changelog,\r\nsource)
  • \r\n
  • codeql/csharp-queries (changelog,\r\nsource)
  • \r\n
  • codeql/csharp-all (changelog,\r\nsource)
  • \r\n
  • codeql/go-queries (changelog,\r\nsource)
  • \r\n
  • codeql/go-all (changelog,\r\nsource)
  • \r\n
  • codeql/java-queries (changelog,\r\nsource)
  • \r\n
  • codeql/java-all (changelog,\r\nsource)
  • \r\n
  • codeql/javascript-queries (changelog,\r\nsource)
  • \r\n
  • codeql/javascript-all (changelog,\r\nsource)
  • \r\n
  • codeql/python-queries (changelog,\r\nsource)
  • \r\n
  • codeql/python-all (changelog,\r\nsource)
  • \r\n
  • codeql/ruby-queries (changelog,\r\nsource)
  • \r\n
  • codeql/ruby-all (changelog,\r\nsource)
  • \r\n
  • codeql/swift-queries (changelog,\r\nsource)
  • \r\n
  • codeql/swift-all (changelog,\r\nsource)
  • \r\n
\r\n

CodeQL Bundle v2.17.1

\r\n

Bundles CodeQL CLI v2.17.1

\r\n
    \r\n
  • (changelog,\r\nrelease)
  • \r\n
\r\n

Includes the following CodeQL language packs from github/codeql@codeql-cli/v2.17.1:

\r\n
    \r\n
  • codeql/cpp-queries (changelog,\r\nsource)
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from github/codeql-action's\r\nchangelog.

\r\n
\r\n

CodeQL Action Changelog

\r\n

See the releases\r\npage for the relevant changes to the CodeQL CLI and language\r\npacks.

\r\n

Note that the only difference between v2 and\r\nv3 of the CodeQL Action is the node version they support,\r\nwith v3 running on node 20 while we continue to release\r\nv2 to support running on node 16. For example\r\n3.22.11 was the first v3 release and is\r\nfunctionally identical to 2.22.11. This approach ensures an\r\neasy way to track exactly which features are included in different\r\nversions, indicated by the minor and patch version numbers.

\r\n

[UNRELEASED]

\r\n
    \r\n
  • We are rolling out a feature in May/June 2024 that will reduce the\r\nActions cache usage of the Action by keeping only the newest TRAP cache\r\nfor each language. #2306
  • \r\n
\r\n

3.25.6 - 20 May 2024

\r\n
    \r\n
  • Update default CodeQL bundle version to 2.17.3. #2295
  • \r\n
\r\n

3.25.5 - 13 May 2024

\r\n
    \r\n
  • Add a compatibility matrix of supported CodeQL Action, CodeQL CLI,\r\nand GitHub Enterprise Server versions to the https://github.com/github/codeql-action/blob/main/README.md.\r\n#2273
  • \r\n
  • Avoid printing out a warning for a missing on.push\r\ntrigger when the CodeQL Action is triggered via a\r\nworkflow_call event. #2274
  • \r\n
  • The tools: latest input to the init Action\r\nhas been renamed to tools: linked. This option specifies\r\nthat the Action should use the tools shipped at the same time as the\r\nAction. The old name will continue to work for backwards compatibility,\r\nbut we recommend that new workflows use the new name. #2281
  • \r\n
\r\n

3.25.4 - 08 May 2024

\r\n
    \r\n
  • Update default CodeQL bundle version to 2.17.2. #2270
  • \r\n
\r\n

3.25.3 - 25 Apr 2024

\r\n
    \r\n
  • Update default CodeQL bundle version to 2.17.1. #2247
  • \r\n
  • Workflows running on macos-latest using CodeQL CLI\r\nversions before v2.15.1 will need to either upgrade their CLI version to\r\nv2.15.1 or newer, or change the platform to an Intel MacOS runner, such\r\nas macos-12. ARM machines with SIP disabled, including the\r\nnewest macos-latest image, are unsupported for CLI versions\r\nbefore 2.15.1. #2261
  • \r\n
\r\n

3.25.2 - 22 Apr 2024

\r\n

No user facing changes.

\r\n

3.25.1 - 17 Apr 2024

\r\n
    \r\n
  • We are rolling out a feature in April/May 2024 that improves the\r\nreliability and performance of analyzing code when analyzing a compiled\r\nlanguage with the autobuild build\r\nmode. #2235
  • \r\n
  • Fix a bug where the init Action would fail if\r\n--overwrite was specified in\r\nCODEQL_ACTION_EXTRA_OPTIONS. #2245
  • \r\n
\r\n

3.25.0 - 15 Apr 2024

\r\n
    \r\n
  • \r\n

    The deprecated feature for extracting dependencies for a Python\r\nanalysis has been removed. #2224

    \r\n

    As a result, the following inputs and environment variables are now\r\nignored:

    \r\n
      \r\n
    • The setup-python-dependencies input to the\r\ninit Action
    • \r\n
    • The\r\nCODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION\r\nenvironment variable
    • \r\n
    \r\n

    We recommend removing any references to these from your workflows.\r\nFor more information, see the release notes for CodeQL Action v3.23.0\r\nand v2.23.0.

    \r\n
  • \r\n
  • \r\n

    Automatically overwrite an existing database if found on the\r\nfilesystem. #2229

    \r\n
  • \r\n
  • \r\n

    Bump the minimum CodeQL bundle version to 2.12.6. #2232

    \r\n
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 9fdb3e4\r\nMerge pull request #2300\r\nfrom github/update-v3.25.6-63d519c0a
  • \r\n
  • 00792ab\r\nUpdate changelog for v3.25.6
  • \r\n
  • 63d519c\r\nMerge pull request #2295\r\nfrom github/update-bundle/codeql-bundle-v2.17.3
  • \r\n
  • 0d9161c\r\nMerge pull request #2293\r\nfrom github/henrymercer/update-build-mode-autobuild-...
  • \r\n
  • e9e2729\r\nAdd changelog note
  • \r\n
  • de1ac31\r\nUpdate default bundle to codeql-bundle-v2.17.3
  • \r\n
  • a57c67b\r\nMerge pull request #2286\r\nfrom github/koesie10/ghec-dr-db-upload
  • \r\n
  • b7ef64e\r\nMerge pull request #2294\r\nfrom github/dependabot/npm_and_yarn/npm-d3285d5234
  • \r\n
  • e54dea2\r\nUpdate checked-in dependencies
  • \r\n
  • 3b42294\r\nBump the npm group across 1 directory with 4 updates
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/codeql-action&package-manager=github_actions&previous-version=2.2.4&new-version=3.25.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump github/codeql-action from 2.2.4 to 3.25.6 (#5488)"}},{"before":"c69ed2c36b315bb1f790678286371cba5cb9ca87","after":null,"ref":"refs/heads/dependabot/github_actions/github/codeql-action-3.25.5","pushedAt":"2024-05-26T21:03:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"370c6990d18f44bc4f09ebd9c1e0f07939c34601","ref":"refs/heads/dependabot/github_actions/github/codeql-action-3.25.6","pushedAt":"2024-05-26T21:03:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump github/codeql-action from 2.2.4 to 3.25.6\n\nBumps [github/codeql-action](https://github.com/github/codeql-action) from 2.2.4 to 3.25.6.\n- [Release notes](https://github.com/github/codeql-action/releases)\n- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/github/codeql-action/compare/v2.2.4...9fdb3e49720b44c48891d036bb502feb25684276)\n\n---\nupdated-dependencies:\n- dependency-name: github/codeql-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump github/codeql-action from 2.2.4 to 3.25.6"}},{"before":"a325f3479469be728ab18205c8d61a07c4ab0504","after":"ba9a35e5867a683d8abe62bcfd4ed3eecae11d56","ref":"refs/heads/dependabot/github_actions/actions/checkout-4.1.6","pushedAt":"2024-05-26T21:02:54.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump actions/checkout from 4.1.2 to 4.1.6\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/9bb56186c3b09b4f86b1c65136769dd318469633...a5ac7e51b41094c92402da3b24376905380afc29)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/checkout from 4.1.2 to 4.1.6"}},{"before":"a194bd9846a37fa69bae85b9d2068bfbc5d05adb","after":"8d124100a0b03583851be7025b3128c10f96fe7d","ref":"refs/heads/main","pushedAt":"2024-05-26T21:01:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Split v1 and v2 ES/OS integration tests (#5487)\n\n## Which problem is this PR solving?\r\n- ES tests are often failing due to v2 tests instability\r\n- One one test fails the other matrix jobs are also cancelled\r\n\r\n## Description of the changes\r\n- Separate v1 and v2 tests into different matrix steps\r\n- Turn off fail-fast to prevent other jobs from being cancelled\r\n\r\n## How was this change tested?\r\n- \r\n\r\n## Checklist\r\n- [ ] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [ ] I have signed all commits\r\n- [ ] I have added unit tests for the new functionality\r\n- [ ] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\n---------\r\n\r\nSigned-off-by: Yuri Shkuro ","shortMessageHtmlLink":"Split v1 and v2 ES/OS integration tests (#5487)"}},{"before":"584b6ffa96726367177a66d653a9b39773c47bef","after":"a194bd9846a37fa69bae85b9d2068bfbc5d05adb","ref":"refs/heads/main","pushedAt":"2024-05-26T17:36:31.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"[refactor] move root span handler into aggregator (#5478)\n\n## Which problem is this PR solving?\r\n-\r\nhttps://github.com/jaegertracing/jaeger/pull/5389#discussion_r1596130874\r\n\r\n## Description of the changes\r\n- Refactored `handleRootSpan` logic into a helper method in\r\naggregator.go.","shortMessageHtmlLink":"[refactor] move root span handler into aggregator (#5478)"}},{"before":"0726dee61ac77e57250756f58ed28ce715ba9fd5","after":"584b6ffa96726367177a66d653a9b39773c47bef","ref":"refs/heads/main","pushedAt":"2024-05-24T16:51:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Rename `Processor` to `PostAggregator` (#5479)\n\n## Which problem is this PR solving?\r\n-\r\nhttps://github.com/jaegertracing/jaeger/pull/5441#discussion_r1602373549\r\n\r\n## Description of the changes\r\n- Rename `Processor` to `PostAggregator`\r\n\r\n## How was this change tested?\r\n- `make test`\r\n\r\n## Checklist\r\n- [x] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [x] I have signed all commits\r\n- [ ] I have added unit tests for the new functionality\r\n- [x] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\nSigned-off-by: pushkarm029 ","shortMessageHtmlLink":"Rename Processor to PostAggregator (#5479)"}},{"before":"1d78650d555101b07715d5f177644b927cba7bcc","after":null,"ref":"refs/heads/dependabot/go_modules/otel-instrumentation-3bc0f14366","pushedAt":"2024-05-23T18:19:54.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"49a5ebe2ae5041832ce39ac6e05ce26c9eb003c3","after":"0726dee61ac77e57250756f58ed28ce715ba9fd5","ref":"refs/heads/main","pushedAt":"2024-05-23T18:19:46.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Bump the otel-instrumentation group with 2 updates (#5474)\n\nBumps the otel-instrumentation group with 2 updates:\r\n[go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib)\r\nand\r\n[go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib).\r\n\r\nUpdates\r\n`go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc`\r\nfrom 0.51.0 to 0.52.0\r\n
\r\nRelease notes\r\n

Sourced from go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc's\r\nreleases.

\r\n
\r\n

Release v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0

\r\n

Overview

\r\n

Added

\r\n
    \r\n
  • Add the new go.opentelemetry.io/contrib/instrgen\r\npackage to provide auto-generated source code instrumentation. (#3068,\r\n#3108)
  • \r\n
  • Add an experimental OTEL_METRICS_PRODUCERS environment\r\nvariable to go.opentelemetry.io/contrib/autoexport to be\r\nset metrics producers. (#5281)\r\n
      \r\n
    • prometheus and none are supported values.\r\nYou can specify multiple producers separated by a comma.
    • \r\n
    • Add WithFallbackMetricProducer option that adds a\r\nfallback if the OTEL_METRICS_PRODUCERS is not set or\r\nempty.
    • \r\n
    \r\n
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/processors/baggage/baggagetrace\r\nmodule. This module provides a Baggage Span Processor. (#5404)
  • \r\n
  • Add gRPC trace Filter for stats handler to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.\r\n(#5196)
  • \r\n
  • Add a repository Code Ownership Policy. (#5555)
  • \r\n
  • The go.opentelemetry.io/contrib/bridges/otellogrus\r\nmodule. This module provides an OpenTelemetry logging bridge for\r\ngithub.com/sirupsen/logrus. (#5355)
  • \r\n
  • The WithVersion option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog. This option\r\nfunction is used as a replacement of\r\nWithInstrumentationScope to specify the logged package\r\nversion. (#5588)
  • \r\n
  • The WithSchemaURL option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog. This option\r\nfunction is used as a replacement of\r\nWithInstrumentationScope to specify the semantic convention\r\nschema URL for the logged records. (#5588)
  • \r\n
  • Add support for Cloud Run jobs in\r\ngo.opentelemetry.io/contrib/detectors/gcp. (#5559)
  • \r\n
\r\n

Changed

\r\n
    \r\n
  • \r\n

    The gRPC trace Filter for interceptor is renamed to\r\nInterceptorFilter. (#5196)

    \r\n
  • \r\n
  • \r\n

    The gRPC trace filter functions Any, All,\r\nNone, Not, MethodName,\r\nMethodPrefix, FullMethodName,\r\nServiceName, ServicePrefix and\r\nHealthCheck for interceptor are moved to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters/interceptor.\r\nWith this change, the filters in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nare now working for stats handler. (#5196)

    \r\n
  • \r\n
  • \r\n

    NewLogger now accepts a name\r\nstring as the first argument. This parameter is used as a\r\nreplacement of WithInstrumentationScope to specify the name\r\nof the logger backing the underlying Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    NewHandler now accepts a name\r\nstring as the first argument. This parameter is used as a\r\nreplacement of WithInstrumentationScope to specify the name\r\nof the logger backing the returned Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    Upgrade all dependencies of\r\ngo.opentelemetry.io/otel/semconv/v1.24.0 to\r\ngo.opentelemetry.io/otel/semconv/v1.25.0. (#5605)

    \r\n
  • \r\n
\r\n

Removed

\r\n
    \r\n
  • The WithInstrumentationScope option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog is removed.\r\nUse the name parameter added to NewHandler and\r\nNewLogger as well as WithVersion and\r\nWithSchema as replacements. (#5588)
  • \r\n
\r\n

Deprecated

\r\n
    \r\n
  • The InterceptorFilter type in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nis deprecated. (#5196)
  • \r\n
\r\n

What's Changed

\r\n
    \r\n
  • build(deps): bump lycheeverse/lychee-action from 1.9.3 to 1.10.0 by\r\n@​dependabot in\r\nopen-telemetry/opentelemetry-go-contrib#5436
  • \r\n
  • build(deps): bump github.com/aws/aws-sdk-go from 1.51.25 to 1.51.30\r\nin /detectors/aws/ec2 by @​dependabot in open-telemetry/opentelemetry-go-contrib#5435
  • \r\n
  • Add update-all-otel-deps target in Makefile by @​XSAM in open-telemetry/opentelemetry-go-contrib#5434
  • \r\n
  • build(deps): bump github.com/golangci/golangci-lint from 1.57.2 to\r\n1.58.0 in /tools by @​dependabot in open-telemetry/opentelemetry-go-contrib#5441
  • \r\n
  • build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 by @​dependabot in open-telemetry/opentelemetry-go-contrib#5445
  • \r\n
  • autoexport: Add OTEL_METRICS_PRODUCERS environment variable support\r\nby @​gouthamve\r\nin open-telemetry/opentelemetry-go-contrib#5281
  • \r\n
  • Fix changelog for #5281\r\nby @​pellared in\r\nopen-telemetry/opentelemetry-go-contrib#5450
  • \r\n
  • processors/baggage: add baggage span processor by @​codeboten in open-telemetry/opentelemetry-go-contrib#5404
  • \r\n
  • Configure Renovate by @​renovate in open-telemetry/opentelemetry-go-contrib#4579
  • \r\n
  • chore(deps): update module github.com/gabriel-vasile/mimetype to\r\nv1.4.3 by @​renovate in open-telemetry/opentelemetry-go-contrib#5462
  • \r\n
  • [chore] Renovate to add Skip Changelog label by @​pellared in open-telemetry/opentelemetry-go-contrib#5464
  • \r\n
  • chore(deps): update module github.com/golang/snappy to v0.0.4 by @​renovate in open-telemetry/opentelemetry-go-contrib#5465
  • \r\n
  • chore(deps): update module github.com/mattn/go-isatty to v0.0.20 by\r\n@​renovate in open-telemetry/opentelemetry-go-contrib#5467
  • \r\n
  • chore(deps): update module github.com/klauspost/cpuid/v2 to v2.2.7\r\nby @​renovate in\r\nopen-telemetry/opentelemetry-go-contrib#5466
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc's\r\nchangelog.

\r\n
\r\n

[1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21

\r\n

Added

\r\n
    \r\n
  • Add the new go.opentelemetry.io/contrib/instrgen\r\npackage to provide auto-generated source code instrumentation. (#3068,\r\n#3108)
  • \r\n
  • Add an experimental OTEL_METRICS_PRODUCERS environment\r\nvariable to go.opentelemetry.io/contrib/autoexport to be\r\nset metrics producers. (#5281)\r\n
      \r\n
    • prometheus and none are supported values.\r\nYou can specify multiple producers separated by a comma.
    • \r\n
    • Add WithFallbackMetricProducer option that adds a\r\nfallback if the OTEL_METRICS_PRODUCERS is not set or\r\nempty.
    • \r\n
    \r\n
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/processors/baggage/baggagetrace\r\nmodule. This module provides a Baggage Span Processor. (#5404)
  • \r\n
  • Add gRPC trace Filter for stats handler to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.\r\n(#5196)
  • \r\n
  • Add a repository Code Ownership Policy. (#5555)
  • \r\n
  • The go.opentelemetry.io/contrib/bridges/otellogrus\r\nmodule.\r\nThis module provides an OpenTelemetry logging bridge for\r\ngithub.com/sirupsen/logrus. (#5355)
  • \r\n
  • The WithVersion option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog.\r\nThis option function is used as a replacement of\r\nWithInstrumentationScope to specify the logged package\r\nversion. (#5588)
  • \r\n
  • The WithSchemaURL option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog.\r\nThis option function is used as a replacement of\r\nWithInstrumentationScope to specify the semantic convention\r\nschema URL for the logged records. (#5588)
  • \r\n
  • Add support for Cloud Run jobs in\r\ngo.opentelemetry.io/contrib/detectors/gcp. (#5559)
  • \r\n
\r\n

Changed

\r\n
    \r\n
  • \r\n

    The gRPC trace Filter for interceptor is renamed to\r\nInterceptorFilter. (#5196)

    \r\n
  • \r\n
  • \r\n

    The gRPC trace filter functions Any, All,\r\nNone, Not, MethodName,\r\nMethodPrefix, FullMethodName,\r\nServiceName, ServicePrefix and\r\nHealthCheck for interceptor are moved to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters/interceptor.\r\nWith this change, the filters in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nare now working for stats handler. (#5196)

    \r\n
  • \r\n
  • \r\n

    NewLogger now accepts a name\r\nstring as the first argument.\r\nThis parameter is used as a replacement of\r\nWithInstrumentationScope to specify the name of the logger\r\nbacking the underlying Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    NewHandler now accepts a name\r\nstring as the first argument.\r\nThis parameter is used as a replacement of\r\nWithInstrumentationScope to specify the name of the logger\r\nbacking the returned Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    Upgrade all dependencies of\r\ngo.opentelemetry.io/otel/semconv/v1.24.0 to\r\ngo.opentelemetry.io/otel/semconv/v1.25.0. (#5605)

    \r\n
  • \r\n
\r\n

Removed

\r\n
    \r\n
  • The WithInstrumentationScope option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog is removed.\r\nUse the name parameter added to NewHandler and\r\nNewLogger as well as WithVersion and\r\nWithSchema as replacements. (#5588)
  • \r\n
\r\n

Deprecated

\r\n
    \r\n
  • The InterceptorFilter type in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nis deprecated. (#5196)
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo\r\npackage is deprecated.\r\nIf you would like to become a Code Owner of this module and prevent it\r\nfrom being removed, see #5551.\r\n(#5598)
  • \r\n
\r\n

#5551:\r\nopen-telemetry/opentelemetry-go-contrib#5551

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 007ae66\r\nRelease v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0 (#5628)
  • \r\n
  • e6f7c8e\r\notelzap: Add skeleton for array encoder (#5611)
  • \r\n
  • c47a69c\r\nBump semconv/v1.24.0 to v1.25.0 (#5605)
  • \r\n
  • 52ee3c4\r\notelzap: Implement Uint methods on encoder (#5609)
  • \r\n
  • a91e60b\r\nfix(deps): update module github.com/aws/aws-sdk-go to v1.53.6 (#5616)
  • \r\n
  • bf9b41d\r\n[chore] Rebuild .tools as they can be outdated (#5603)
  • \r\n
  • d2e3069\r\nchore(deps): update module google.golang.org/genproto/googleapis/rpc to\r\nv0.0....
  • \r\n
  • 5860ad6\r\nfix(deps): update module google.golang.org/genproto/googleapis/api to\r\nv0.0.0-...
  • \r\n
  • 6f3b254\r\nfix(deps): update opentelemetry-go monorepo to 49c866f (#5608)
  • \r\n
  • 5f97832\r\nchore(deps): update codecov/codecov-action action to v4.4.1 (#5613)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp`\r\nfrom 0.51.0 to 0.52.0\r\n
\r\nRelease notes\r\n

Sourced from go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp's\r\nreleases.

\r\n
\r\n

Release v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0

\r\n

Overview

\r\n

Added

\r\n
    \r\n
  • Add the new go.opentelemetry.io/contrib/instrgen\r\npackage to provide auto-generated source code instrumentation. (#3068,\r\n#3108)
  • \r\n
  • Add an experimental OTEL_METRICS_PRODUCERS environment\r\nvariable to go.opentelemetry.io/contrib/autoexport to be\r\nset metrics producers. (#5281)\r\n
      \r\n
    • prometheus and none are supported values.\r\nYou can specify multiple producers separated by a comma.
    • \r\n
    • Add WithFallbackMetricProducer option that adds a\r\nfallback if the OTEL_METRICS_PRODUCERS is not set or\r\nempty.
    • \r\n
    \r\n
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/processors/baggage/baggagetrace\r\nmodule. This module provides a Baggage Span Processor. (#5404)
  • \r\n
  • Add gRPC trace Filter for stats handler to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.\r\n(#5196)
  • \r\n
  • Add a repository Code Ownership Policy. (#5555)
  • \r\n
  • The go.opentelemetry.io/contrib/bridges/otellogrus\r\nmodule. This module provides an OpenTelemetry logging bridge for\r\ngithub.com/sirupsen/logrus. (#5355)
  • \r\n
  • The WithVersion option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog. This option\r\nfunction is used as a replacement of\r\nWithInstrumentationScope to specify the logged package\r\nversion. (#5588)
  • \r\n
  • The WithSchemaURL option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog. This option\r\nfunction is used as a replacement of\r\nWithInstrumentationScope to specify the semantic convention\r\nschema URL for the logged records. (#5588)
  • \r\n
  • Add support for Cloud Run jobs in\r\ngo.opentelemetry.io/contrib/detectors/gcp. (#5559)
  • \r\n
\r\n

Changed

\r\n
    \r\n
  • \r\n

    The gRPC trace Filter for interceptor is renamed to\r\nInterceptorFilter. (#5196)

    \r\n
  • \r\n
  • \r\n

    The gRPC trace filter functions Any, All,\r\nNone, Not, MethodName,\r\nMethodPrefix, FullMethodName,\r\nServiceName, ServicePrefix and\r\nHealthCheck for interceptor are moved to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters/interceptor.\r\nWith this change, the filters in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nare now working for stats handler. (#5196)

    \r\n
  • \r\n
  • \r\n

    NewLogger now accepts a name\r\nstring as the first argument. This parameter is used as a\r\nreplacement of WithInstrumentationScope to specify the name\r\nof the logger backing the underlying Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    NewHandler now accepts a name\r\nstring as the first argument. This parameter is used as a\r\nreplacement of WithInstrumentationScope to specify the name\r\nof the logger backing the returned Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    Upgrade all dependencies of\r\ngo.opentelemetry.io/otel/semconv/v1.24.0 to\r\ngo.opentelemetry.io/otel/semconv/v1.25.0. (#5605)

    \r\n
  • \r\n
\r\n

Removed

\r\n
    \r\n
  • The WithInstrumentationScope option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog is removed.\r\nUse the name parameter added to NewHandler and\r\nNewLogger as well as WithVersion and\r\nWithSchema as replacements. (#5588)
  • \r\n
\r\n

Deprecated

\r\n
    \r\n
  • The InterceptorFilter type in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nis deprecated. (#5196)
  • \r\n
\r\n

What's Changed

\r\n
    \r\n
  • build(deps): bump lycheeverse/lychee-action from 1.9.3 to 1.10.0 by\r\n@​dependabot in\r\nopen-telemetry/opentelemetry-go-contrib#5436
  • \r\n
  • build(deps): bump github.com/aws/aws-sdk-go from 1.51.25 to 1.51.30\r\nin /detectors/aws/ec2 by @​dependabot in open-telemetry/opentelemetry-go-contrib#5435
  • \r\n
  • Add update-all-otel-deps target in Makefile by @​XSAM in open-telemetry/opentelemetry-go-contrib#5434
  • \r\n
  • build(deps): bump github.com/golangci/golangci-lint from 1.57.2 to\r\n1.58.0 in /tools by @​dependabot in open-telemetry/opentelemetry-go-contrib#5441
  • \r\n
  • build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 by @​dependabot in open-telemetry/opentelemetry-go-contrib#5445
  • \r\n
  • autoexport: Add OTEL_METRICS_PRODUCERS environment variable support\r\nby @​gouthamve\r\nin open-telemetry/opentelemetry-go-contrib#5281
  • \r\n
  • Fix changelog for #5281\r\nby @​pellared in\r\nopen-telemetry/opentelemetry-go-contrib#5450
  • \r\n
  • processors/baggage: add baggage span processor by @​codeboten in open-telemetry/opentelemetry-go-contrib#5404
  • \r\n
  • Configure Renovate by @​renovate in open-telemetry/opentelemetry-go-contrib#4579
  • \r\n
  • chore(deps): update module github.com/gabriel-vasile/mimetype to\r\nv1.4.3 by @​renovate in open-telemetry/opentelemetry-go-contrib#5462
  • \r\n
  • [chore] Renovate to add Skip Changelog label by @​pellared in open-telemetry/opentelemetry-go-contrib#5464
  • \r\n
  • chore(deps): update module github.com/golang/snappy to v0.0.4 by @​renovate in open-telemetry/opentelemetry-go-contrib#5465
  • \r\n
  • chore(deps): update module github.com/mattn/go-isatty to v0.0.20 by\r\n@​renovate in open-telemetry/opentelemetry-go-contrib#5467
  • \r\n
  • chore(deps): update module github.com/klauspost/cpuid/v2 to v2.2.7\r\nby @​renovate in\r\nopen-telemetry/opentelemetry-go-contrib#5466
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp's\r\nchangelog.

\r\n
\r\n

[1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21

\r\n

Added

\r\n
    \r\n
  • Add the new go.opentelemetry.io/contrib/instrgen\r\npackage to provide auto-generated source code instrumentation. (#3068,\r\n#3108)
  • \r\n
  • Add an experimental OTEL_METRICS_PRODUCERS environment\r\nvariable to go.opentelemetry.io/contrib/autoexport to be\r\nset metrics producers. (#5281)\r\n
      \r\n
    • prometheus and none are supported values.\r\nYou can specify multiple producers separated by a comma.
    • \r\n
    • Add WithFallbackMetricProducer option that adds a\r\nfallback if the OTEL_METRICS_PRODUCERS is not set or\r\nempty.
    • \r\n
    \r\n
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/processors/baggage/baggagetrace\r\nmodule. This module provides a Baggage Span Processor. (#5404)
  • \r\n
  • Add gRPC trace Filter for stats handler to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.\r\n(#5196)
  • \r\n
  • Add a repository Code Ownership Policy. (#5555)
  • \r\n
  • The go.opentelemetry.io/contrib/bridges/otellogrus\r\nmodule.\r\nThis module provides an OpenTelemetry logging bridge for\r\ngithub.com/sirupsen/logrus. (#5355)
  • \r\n
  • The WithVersion option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog.\r\nThis option function is used as a replacement of\r\nWithInstrumentationScope to specify the logged package\r\nversion. (#5588)
  • \r\n
  • The WithSchemaURL option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog.\r\nThis option function is used as a replacement of\r\nWithInstrumentationScope to specify the semantic convention\r\nschema URL for the logged records. (#5588)
  • \r\n
  • Add support for Cloud Run jobs in\r\ngo.opentelemetry.io/contrib/detectors/gcp. (#5559)
  • \r\n
\r\n

Changed

\r\n
    \r\n
  • \r\n

    The gRPC trace Filter for interceptor is renamed to\r\nInterceptorFilter. (#5196)

    \r\n
  • \r\n
  • \r\n

    The gRPC trace filter functions Any, All,\r\nNone, Not, MethodName,\r\nMethodPrefix, FullMethodName,\r\nServiceName, ServicePrefix and\r\nHealthCheck for interceptor are moved to\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters/interceptor.\r\nWith this change, the filters in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nare now working for stats handler. (#5196)

    \r\n
  • \r\n
  • \r\n

    NewLogger now accepts a name\r\nstring as the first argument.\r\nThis parameter is used as a replacement of\r\nWithInstrumentationScope to specify the name of the logger\r\nbacking the underlying Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    NewHandler now accepts a name\r\nstring as the first argument.\r\nThis parameter is used as a replacement of\r\nWithInstrumentationScope to specify the name of the logger\r\nbacking the returned Handler. (#5588)

    \r\n
  • \r\n
  • \r\n

    Upgrade all dependencies of\r\ngo.opentelemetry.io/otel/semconv/v1.24.0 to\r\ngo.opentelemetry.io/otel/semconv/v1.25.0. (#5605)

    \r\n
  • \r\n
\r\n

Removed

\r\n
    \r\n
  • The WithInstrumentationScope option function in\r\ngo.opentelemetry.io/contrib/bridges/otelslog is removed.\r\nUse the name parameter added to NewHandler and\r\nNewLogger as well as WithVersion and\r\nWithSchema as replacements. (#5588)
  • \r\n
\r\n

Deprecated

\r\n
    \r\n
  • The InterceptorFilter type in\r\ngo.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\r\nis deprecated. (#5196)
  • \r\n
  • The\r\ngo.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo\r\npackage is deprecated.\r\nIf you would like to become a Code Owner of this module and prevent it\r\nfrom being removed, see #5551.\r\n(#5598)
  • \r\n
\r\n

#5551:\r\nopen-telemetry/opentelemetry-go-contrib#5551

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 007ae66\r\nRelease v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0 (#5628)
  • \r\n
  • e6f7c8e\r\notelzap: Add skeleton for array encoder (#5611)
  • \r\n
  • c47a69c\r\nBump semconv/v1.24.0 to v1.25.0 (#5605)
  • \r\n
  • 52ee3c4\r\notelzap: Implement Uint methods on encoder (#5609)
  • \r\n
  • a91e60b\r\nfix(deps): update module github.com/aws/aws-sdk-go to v1.53.6 (#5616)
  • \r\n
  • bf9b41d\r\n[chore] Rebuild .tools as they can be outdated (#5603)
  • \r\n
  • d2e3069\r\nchore(deps): update module google.golang.org/genproto/googleapis/rpc to\r\nv0.0....
  • \r\n
  • 5860ad6\r\nfix(deps): update module google.golang.org/genproto/googleapis/api to\r\nv0.0.0-...
  • \r\n
  • 6f3b254\r\nfix(deps): update opentelemetry-go monorepo to 49c866f (#5608)
  • \r\n
  • 5f97832\r\nchore(deps): update codecov/codecov-action action to v4.4.1 (#5613)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump the otel-instrumentation group with 2 updates (#5474)"}},{"before":"fe26b14fbc1201026aab5525879c7bfeb794b212","after":"1d78650d555101b07715d5f177644b927cba7bcc","ref":"refs/heads/dependabot/go_modules/otel-instrumentation-3bc0f14366","pushedAt":"2024-05-23T16:00:21.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"---\nupdated-dependencies:\n- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel-instrumentation\n- dependency-name: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel-instrumentation\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"---"}},{"before":"61d93a19d89c0cc91e92630fa3f3e0071ce233f8","after":null,"ref":"refs/heads/dependabot/go_modules/otel-fe27a2a34a","pushedAt":"2024-05-23T15:59:47.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"2b3f32c2bdbc5aa036cab91446a68cfa53288979","after":"fe26b14fbc1201026aab5525879c7bfeb794b212","ref":"refs/heads/dependabot/go_modules/otel-instrumentation-3bc0f14366","pushedAt":"2024-05-23T15:59:32.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"---\nupdated-dependencies:\n- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel-instrumentation\n- dependency-name: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel-instrumentation\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"---"}},{"before":"06eca1abeca825572f01d21041e346fe25f25f2e","after":"61d93a19d89c0cc91e92630fa3f3e0071ce233f8","ref":"refs/heads/dependabot/go_modules/otel-fe27a2a34a","pushedAt":"2024-05-23T15:59:00.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"---\nupdated-dependencies:\n- dependency-name: go.opentelemetry.io/otel\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/exporters/stdout/stdouttrace\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/metric\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/sdk\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n- dependency-name: go.opentelemetry.io/otel/trace\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: otel\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"---"}},{"before":"a777fb550403c8039f2b5cd179dfa3c3d6727a3b","after":"49a5ebe2ae5041832ce39ac6e05ce26c9eb003c3","ref":"refs/heads/main","pushedAt":"2024-05-23T15:58:52.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"yurishkuro","name":"Yuri Shkuro","path":"/yurishkuro","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3523016?s=80&v=4"},"commit":{"message":"Upgrade OTEL to v1.27.0 (#5481)\n\n## Which problem is this PR solving?\r\n- Resolves #5476 \r\n\r\n## Description of the changes\r\n- Upgraded all otel pkgs with v1.26.0 to v1.27.0. Upgraded semconv from\r\nv1.24.0 to v1.25.0.\r\n\r\n## How was this change tested?\r\n- `make lint` and `make test`\r\n\r\n## Checklist\r\n- [x] I have read\r\nhttps://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md\r\n- [x] I have signed all commits\r\n- [ ] I have added unit tests for the new functionality\r\n- [x] I have run lint and test steps successfully\r\n - for `jaeger`: `make lint test`\r\n - for `jaeger-ui`: `yarn lint` and `yarn test`\r\n\r\n---------\r\n\r\nSigned-off-by: FlamingSaint ","shortMessageHtmlLink":"Upgrade OTEL to v1.27.0 (#5481)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEWUN60QA","startCursor":null,"endCursor":null}},"title":"Activity · jaegertracing/jaeger"}