File tree 5 files changed +6
-4
lines changed
instrumentation/opentelemetry-instrumentation-aiopg/src/opentelemetry/instrumentation/aiopg
opentelemetry-instrumentation/src/opentelemetry/instrumentation
5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
([ #538 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/538 ) )
22
22
- Changed the psycopg2-binary to psycopg2 as dependency in production
23
23
([ #543 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/543 ) )
24
+ - Require aiopg to be less than 1.3.0
25
+ ([ #560 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/560 ) )
24
26
25
27
### Added
26
28
- ` opentelemetry-instrumentation-httpx ` Add ` httpx ` instrumentation
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ django>=2.2
19
19
20
20
# Required by instrumentation and exporter packages
21
21
aiohttp~=3.0
22
- aiopg>=0.13.0
22
+ aiopg>=0.13.0,<1.3.0
23
23
asyncpg>=0.12.0
24
24
boto~=2.0
25
25
botocore~=1.0
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- _instruments = ("aiopg >= 0.13.0" ,)
16
+ _instruments = ("aiopg >= 0.13.0, < 1.3.0 " ,)
Original file line number Diff line number Diff line change 21
21
"instrumentation" : "opentelemetry-instrumentation-aiohttp-client==0.23.dev0" ,
22
22
},
23
23
"aiopg" : {
24
- "library" : "aiopg >= 0.13.0" ,
24
+ "library" : "aiopg >= 0.13.0, < 1.3.0 " ,
25
25
"instrumentation" : "opentelemetry-instrumentation-aiopg==0.23.dev0" ,
26
26
},
27
27
"asgiref" : {
Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ deps =
404
404
pymongo ~= 3.1
405
405
PyMySQL ~= 0.10.1
406
406
psycopg2 ~= 2.8.4
407
- aiopg >= 0.13.0
407
+ aiopg >= 0.13.0, < 1.3.0
408
408
sqlalchemy ~= 1.3.16
409
409
redis ~= 3.3.11
410
410
celery[pytest] >= 4.0, < 6.0
You can’t perform that action at this time.
0 commit comments