File tree 4 files changed +6
-4
lines changed
instrumentation/opentelemetry-instrumentation-psycopg2/src/opentelemetry/instrumentation/psycopg2
opentelemetry-instrumentation/src/opentelemetry/instrumentation
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
([ #469 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/469 ) )
18
18
- Implemented specification that HTTP span attributes must not contain username and password.
19
19
([ #538 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/538 ) )
20
+ - Changed the psycopg2-binary to psycopg2 as dependency in production
21
+ ([ #543 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/543 ) )
20
22
21
23
### Added
22
24
- ` opentelemetry-instrumentation-httpx ` Add ` httpx ` instrumentation
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- _instruments = ("psycopg2-binary >= 2.7.3.1" ,)
16
+ _instruments = ("psycopg2 >= 2.7.3.1" ,)
Original file line number Diff line number Diff line change 80
80
"library" : "mysql-connector-python ~= 8.0" ,
81
81
"instrumentation" : "opentelemetry-instrumentation-mysql==0.23.dev0" ,
82
82
},
83
- "psycopg2-binary " : {
84
- "library" : "psycopg2-binary >= 2.7.3.1" ,
83
+ "psycopg2" : {
84
+ "library" : "psycopg2 >= 2.7.3.1" ,
85
85
"instrumentation" : "opentelemetry-instrumentation-psycopg2==0.23.dev0" ,
86
86
},
87
87
"pymemcache" : {
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ deps =
403
403
mysql-connector-python ~= 8.0
404
404
pymongo ~= 3.1
405
405
PyMySQL ~= 0.10.1
406
- psycopg2-binary ~= 2.8.4
406
+ psycopg2 ~= 2.8.4
407
407
aiopg >= 0.13.0
408
408
sqlalchemy ~= 1.3.16
409
409
redis ~= 3.3.11
You can’t perform that action at this time.
0 commit comments