Skip to content

Commit 2eb0d59

Browse files
committed
2 parents 0ee5067 + de93b2a commit 2eb0d59

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.3.0-0.22b0...HEAD)
9+
- Include Flask 2.0 as compatible with existing flask instrumentation
10+
([#545](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/545))
911

1012
### Changed
1113
- `opentelemetry-instrumentation-tornado` properly instrument work done in tornado on_finish method.
@@ -17,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1719
([#469](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/469))
1820
- Implemented specification that HTTP span attributes must not contain username and password.
1921
([#538](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/538))
22+
- Changed the psycopg2-binary to psycopg2 as dependency in production
23+
([#543](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/543))
2024

2125
### Added
2226
- `opentelemetry-instrumentation-httpx` Add `httpx` instrumentation

CONTRIBUTING.md

+15
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,21 @@ rather than conform to specific API names or argument patterns in the spec.
153153

154154
For a deeper discussion, see: https://github.com/open-telemetry/opentelemetry-specification/issues/165
155155

156+
## Running Tests Locally
157+
158+
1. Go to your Contrib repo directory. `git clone [email protected]:open-telemetry/opentelemetry-python-contrib.git && cd opentelemetry-python-contrib`.
159+
2. Clone the [OpenTelemetry Python](https://github.com/open-telemetry/opentelemetry-python) Python Core repo to a folder named `opentelemetry-python-core`. `git clone https://github.com/open-telemetry/opentelemetry-python.git opentelemetry-python-core`.
160+
3. Make sure you have `tox` installed. `pip install tox`.
161+
4. Run `tox` without any arguments to run tests for all the packages. Read more about [tox](https://tox.readthedocs.io/en/latest/).
162+
163+
### Testing against a different Core repo branch/commit
164+
165+
1. Change directory to the repo that was cloned above. `cd opentelemetry-python-core`.
166+
2. Move the head of this repo to the SHA hash you want your tests to use. The current SHA hash can be found in `.github/workflows/test.yml` file under the `opentelemetry-python-contrib` directory. For example, currently it is `1a12fa0d681e37c1fda9cb8d46212ff3bbf6b76a`. So use `git fetch && git checkout <current SHA hash>`.
167+
3. Go back to the root directory. `cd ../`.
168+
4. With `tox` installed, run tests for a package. (e.g. `tox -e test-instrumentation-flask`.)
169+
170+
156171
## Style Guide
157172

158173
* docstrings should adhere to the [Google Python Style

instrumentation/opentelemetry-instrumentation-flask/src/opentelemetry/instrumentation/flask/package.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
_instruments = ("flask ~= 1.0",)
16+
_instruments = ("flask >= 1.0, < 3.0",)

instrumentation/opentelemetry-instrumentation-psycopg2/src/opentelemetry/instrumentation/psycopg2/package.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
_instruments = ("psycopg2-binary >= 2.7.3.1",)
16+
_instruments = ("psycopg2 >= 2.7.3.1",)

opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap_gen.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"instrumentation": "opentelemetry-instrumentation-fastapi==0.23.dev0",
6262
},
6363
"flask": {
64-
"library": "flask ~= 1.0",
64+
"library": "flask >= 1.0, < 3.0",
6565
"instrumentation": "opentelemetry-instrumentation-flask==0.23.dev0",
6666
},
6767
"grpcio": {
@@ -80,8 +80,8 @@
8080
"library": "mysql-connector-python ~= 8.0",
8181
"instrumentation": "opentelemetry-instrumentation-mysql==0.23.dev0",
8282
},
83-
"psycopg2-binary": {
84-
"library": "psycopg2-binary >= 2.7.3.1",
83+
"psycopg2": {
84+
"library": "psycopg2 >= 2.7.3.1",
8585
"instrumentation": "opentelemetry-instrumentation-psycopg2==0.23.dev0",
8686
},
8787
"pymemcache": {

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ deps =
403403
mysql-connector-python ~= 8.0
404404
pymongo ~= 3.1
405405
PyMySQL ~= 0.10.1
406-
psycopg2-binary ~= 2.8.4
406+
psycopg2 ~= 2.8.4
407407
aiopg >= 0.13.0
408408
sqlalchemy ~= 1.3.16
409409
redis ~= 3.3.11

0 commit comments

Comments
 (0)