Skip to content

Commit 473826d

Browse files
Merge branch 'main' into deprecate_sql_obfuscation
2 parents d1c9916 + 97ac87c commit 473826d

File tree

41 files changed

+698
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+698
-11
lines changed

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
# Upload the results to GitHub's code scanning dashboard (optional).
4444
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4545
- name: "Upload to code-scanning"
46-
uses: github/codeql-action/upload-sarif@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
46+
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
4747
with:
4848
sarif_file: results.sarif

.github/workflows/release-please.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Process Release
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
22+
- uses: actions/create-github-app-token@def152b8a737443d7af6c5722c6389146fe90c90 # v2.1.2
2323
id: otelbot-token
2424
with:
2525
app-id: ${{ vars.OTELBOT_APP_ID }}

.github/workflows/release-request-weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: "gem install --no-document toys -v 0.15.5"
3030

3131
- name: Create otelbot app token
32-
uses: actions/[email protected].1
32+
uses: actions/[email protected].2
3333
id: app-token
3434
with:
3535
app-id: ${{ vars.OTELBOT_RUBY_CONTRIB_APP_ID }}

.github/workflows/release-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: "gem install --no-document toys -v 0.15.5"
3434

3535
- name: Create otelbot app token
36-
uses: actions/[email protected].1
36+
uses: actions/[email protected].2
3737
id: app-token
3838
with:
3939
app-id: ${{ vars.OTELBOT_RUBY_CONTRIB_APP_ID }}

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/stale@v9
20+
- uses: actions/stale@v10
2121
name: Clean up stale issues and PRs
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}

.toys/.data/releases.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ commit_lint:
3030
# * changelog_path: Path to CHANGLEOG.md relative to the gem directory.
3131
# (Required only if it is not in the expected location.)
3232
gems:
33+
- name: opentelemetry-instrumentation-anthropic
34+
directory: instrumentation/anthropic
35+
version_constant: [OpenTelemetry, Instrumentation, Anthropic, VERSION]
36+
3337
- name: opentelemetry-instrumentation-active_storage
3438
directory: instrumentation/active_storage
3539
version_constant: [OpenTelemetry, Instrumentation, ActiveStorage, VERSION]

instrumentation/all/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release History: opentelemetry-instrumentation-all
22

3+
### v0.81.0 / 2025-09-16
4+
5+
* ADDED: Anthropic initial instrumentation
6+
* ADDED: Add Net::HTTP `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable [#1572](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1572)
7+
38
### v0.80.0 / 2025-08-19
49

510
ADDED: Add `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable compatibility for Rack. This includes an integration with Action Pack (Rails) and Sinatra instrumentation libraries. [#1594](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1594)

instrumentation/all/lib/opentelemetry/instrumentation/all.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55
# SPDX-License-Identifier: Apache-2.0
66

7+
require 'opentelemetry-instrumentation-anthropic'
78
require 'opentelemetry-instrumentation-gruf'
89
require 'opentelemetry-instrumentation-trilogy'
910
require 'opentelemetry-instrumentation-active_support'

instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module All
10-
VERSION = '0.80.0'
10+
VERSION = '0.81.0'
1111
end
1212
end
1313
end

instrumentation/all/opentelemetry-instrumentation-all.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
2727
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"
2828

2929
spec.add_dependency 'opentelemetry-instrumentation-active_model_serializers', '~> 0.22.0'
30+
spec.add_dependency 'opentelemetry-instrumentation-anthropic', '~> 0.1.0'
3031
spec.add_dependency 'opentelemetry-instrumentation-aws_lambda', '~> 0.3.0'
3132
spec.add_dependency 'opentelemetry-instrumentation-aws_sdk', '~> 0.8.0'
3233
spec.add_dependency 'opentelemetry-instrumentation-bunny', '~> 0.22.0'
@@ -47,7 +48,7 @@ Gem::Specification.new do |spec|
4748
spec.add_dependency 'opentelemetry-instrumentation-lmdb', '~> 0.23.0'
4849
spec.add_dependency 'opentelemetry-instrumentation-mongo', '~> 0.23.0'
4950
spec.add_dependency 'opentelemetry-instrumentation-mysql2', '~> 0.29.0'
50-
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.23.0'
51+
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.24.0'
5152
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.30.0'
5253
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.9.0'
5354
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.4.0'

0 commit comments

Comments
 (0)