opentelemetry-instrumentation-pg 0.30.1 → 0.31.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27552dae38df46b415d38e11216ef734157f2bcb9ad5e19a25cb26d5ce029b02
|
4
|
+
data.tar.gz: 39e3643f1cfe66f3a6587b1a54f5994cd7b7fc5f3a1dbdc588dd2445da2cf131
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27cf741489c9998928bfab9f18cf915b19c83c1a776dc0e1c9711835ab4873f5065539920d07645413890881ac3ad757d0eed26e8cd3ade672abebabfe8f064a
|
7
|
+
data.tar.gz: 3e637c382752c7b515712805c029a7a9cd2461813e198a2dced86f8227931a68ee18711f948e4742e62ebd15556c7dab50d020afc6970b52ae0b61d98801b2a1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-pg
|
2
2
|
|
3
|
+
### v0.31.1 / 2025-09-30
|
4
|
+
|
5
|
+
* FIXED: Min OTel Ruby API 1.7
|
6
|
+
|
7
|
+
### v0.31.0 / 2025-09-30
|
8
|
+
|
9
|
+
* ADDED: Bump minimum API Version to 1.7
|
10
|
+
|
3
11
|
### v0.30.1 / 2025-04-16
|
4
12
|
|
5
13
|
* refactor: Use SQL helpers for context attributes #1271
|
@@ -15,7 +15,7 @@ module OpenTelemetry
|
|
15
15
|
# Module to prepend to PG::Connection for instrumentation
|
16
16
|
module Connection # rubocop:disable Metrics/ModuleLength
|
17
17
|
# Capture the first word (including letters, digits, underscores, & '.', ) that follows common table commands
|
18
|
-
TABLE_NAME = /\b(?:FROM|INTO|UPDATE|CREATE\s+TABLE(?:\s+IF\s+NOT\s+EXISTS)?|DROP\s+TABLE(?:\s+IF\s+EXISTS)?|ALTER\s+TABLE(?:\s+IF\s+EXISTS)?)\s+
|
18
|
+
TABLE_NAME = /\b(?:FROM|INTO|UPDATE|CREATE\s+TABLE(?:\s+IF\s+NOT\s+EXISTS)?|DROP\s+TABLE(?:\s+IF\s+EXISTS)?|ALTER\s+TABLE(?:\s+IF\s+EXISTS)?)\s+"?([\w\.]+)"?/i
|
19
19
|
|
20
20
|
PG::Constants::EXEC_ISH_METHODS.each do |method|
|
21
21
|
define_method method do |*args, &block|
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-pg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.1
|
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-
|
11
|
+
date: 2025-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: opentelemetry-api
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '1.0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: opentelemetry-helpers-sql
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +44,14 @@ dependencies:
|
|
58
44
|
requirements:
|
59
45
|
- - "~>"
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
47
|
+
version: '0.24'
|
62
48
|
type: :runtime
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
54
|
+
version: '0.24'
|
69
55
|
description: PG (PostgreSQL) instrumentation for the OpenTelemetry framework
|
70
56
|
email:
|
71
57
|
- cncf-opentelemetry-contributors@lists.cncf.io
|
@@ -89,10 +75,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby-contrib
|
|
89
75
|
licenses:
|
90
76
|
- Apache-2.0
|
91
77
|
metadata:
|
92
|
-
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-pg/0.
|
78
|
+
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-pg/0.31.1/file/CHANGELOG.md
|
93
79
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/pg
|
94
80
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues
|
95
|
-
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-pg/0.
|
81
|
+
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-pg/0.31.1
|
96
82
|
post_install_message:
|
97
83
|
rdoc_options: []
|
98
84
|
require_paths:
|