opentelemetry-instrumentation-action_pack 0.14.1 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: daba85c8d4a2e493bcfdc144ccfc440c1a27f50f4f284906d4bc50887a120ba3
4
- data.tar.gz: e880b5f6955f2a35527fbe47f3e99d22de71d940682e832c947c465c2ec46911
3
+ metadata.gz: 935f5ea28d0a59afef3fc95ed8f00b3f3cf8dc25a62be768c87eb21a2b8b7b71
4
+ data.tar.gz: 9360446fd4808a951ed4106393faf202c2a51eb49870c185d4da1f5e364e10a4
5
5
  SHA512:
6
- metadata.gz: 4fc0c6ebc6d2f4a139fab736306fffe8e15dc941860926c4fe58aa25bff6cfb96be9850a2aff45ac5af0fae55ef9033368a4e5a732d4004217fea8825fef4dba
7
- data.tar.gz: 7e6f1e594c5f91f67cac28cb5e5ca18433938ad6ab2e8f0c8b8ca5f412fc8905a013d7f81dc7c05d9f6de791a234ea4a3bb7cc1cfb8971fb5aeb9680adb25600
6
+ metadata.gz: 16edfea4d043110ffea08e3261b2af2d8878f889ef2aaf05732d36b8ef73c69acf25201e0c4f73e1ae57303f22ff9654abe7e0dd60801eab2619b13a58d823be
7
+ data.tar.gz: 11505de27bcec2c46968ea173204ffcd5fb0ae5e1c26561bb3b2ac434819e1740a2838b2b9d5c200327fa42db82c0eb89c753c3a43d952938ac81cc27d707aef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History: opentelemetry-instrumentation-action_pack
2
2
 
3
+ ### v0.15.0 / 2025-10-21
4
+
5
+ * BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
6
+
7
+ * ADDED: Min Ruby Version 3.2 and Rails 7.1
8
+
3
9
  ### v0.14.1 / 2025-10-07
4
10
 
5
11
  * FIXED: Unify rack middleware_args
data/README.md CHANGED
@@ -48,8 +48,6 @@ This instrumentation generally uses [HTTP server semantic conventions](https://o
48
48
 
49
49
  For Rails 7.1+, the span name is updated to match the HTTP method and route that was matched for the request using [`ActionDispatch::Request#route_uri_pattern`](https://api.rubyonrails.org/classes/ActionDispatch/Request.html#method-i-route_uri_pattern), e.g.: `GET /users/:id`
50
50
 
51
- For older versions of Rails the span name is updated to match the HTTP method, controller, and action name that was the target of the request, e.g.: `GET /example/index`
52
-
53
51
  > ![NOTE]: Users may override the `span_naming` option to default to Legacy Span Naming Behavior that uses the controller's class name and action in Ruby documentation syntax, e.g. `ExampleController#index`.
54
52
 
55
53
  This instrumentation does not emit any custom attributes.
@@ -58,7 +56,7 @@ This instrumentation does not emit any custom attributes.
58
56
  | - | - | - |
59
57
  | `code.namespace` | String | `ActionController` class name |
60
58
  | `code.function` | String | `ActionController` action name e.g. `index`, `show`, `edit`, etc... |
61
- | `http.route` | String | (Rails 7.1+) the route that was matched for the request |
59
+ | `http.route` | String | The route that was matched for the request |
62
60
  | `http.target` | String | The `request.filtered_path` |
63
61
 
64
62
  ### Error Handling for Action Controller
@@ -7,7 +7,7 @@
7
7
  module OpenTelemetry
8
8
  module Instrumentation
9
9
  module ActionPack
10
- VERSION = '0.14.1'
10
+ VERSION = '0.15.0'
11
11
  end
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-instrumentation-action_pack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-07 00:00:00.000000000 Z
11
+ date: 2025-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opentelemetry-instrumentation-rack
@@ -47,10 +47,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby-contrib
47
47
  licenses:
48
48
  - Apache-2.0
49
49
  metadata:
50
- changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.14.1/file/CHANGELOG.md
50
+ changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.15.0/file/CHANGELOG.md
51
51
  source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_pack
52
52
  bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues
53
- documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.14.1
53
+ documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.15.0
54
54
  post_install_message:
55
55
  rdoc_options: []
56
56
  require_paths:
@@ -59,14 +59,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: '3.1'
62
+ version: '3.2'
63
63
  required_rubygems_version: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - ">="
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
68
  requirements: []
69
- rubygems_version: 3.3.27
69
+ rubygems_version: 3.4.19
70
70
  signing_key:
71
71
  specification_version: 4
72
72
  summary: ActionPack instrumentation for the OpenTelemetry framework