diff --git a/.github/workflows/dev-build-to-pypi.yml b/.github/workflows/dev-build-to-pypi.yml index 4f632d34..9ea64f09 100644 --- a/.github/workflows/dev-build-to-pypi.yml +++ b/.github/workflows/dev-build-to-pypi.yml @@ -65,3 +65,4 @@ jobs: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} repository_url: https://upload.pypi.org/legacy/ + diff --git a/.github/workflows/pypi-publish.yaml b/.github/workflows/pypi-publish.yaml index 53bae166..686787b7 100644 --- a/.github/workflows/pypi-publish.yaml +++ b/.github/workflows/pypi-publish.yaml @@ -41,3 +41,4 @@ jobs: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} repository_url: https://upload.pypi.org/legacy/ + diff --git a/.github/workflows/scanning.yaml b/.github/workflows/scanning.yaml new file mode 100644 index 00000000..9a7f5696 --- /dev/null +++ b/.github/workflows/scanning.yaml @@ -0,0 +1,10 @@ +name: 'Vulnerabilities scanning' + +on: + push: + +jobs: + scan: + name: Vulnerabilities scan + uses: th2-net/.github/.github/workflows/python-scan.yml@main + diff --git a/package_info.json b/package_info.json index 51abf3ca..e179fa4f 100644 --- a/package_info.json +++ b/package_info.json @@ -1,5 +1,5 @@ { "package_name": "th2-data-services", - "package_version": "1.3.0" + "package_version": "1.3.1" } diff --git a/release_notes.md b/release_notes.md index 942c84dd..b62db7f5 100644 --- a/release_notes.md +++ b/release_notes.md @@ -373,3 +373,9 @@ This release implements performance bug fixes and provides Data object cache fil 2. [TH2-4380] Fixed apply_adpater feature for GetMessages / GetEvents / GetEventById / GetMessageById 3. [TH2-3767] Fixed bug with limit of Data object in Windows. 4. [TH2-4460] Fixed bug where GRPC omitted fields with None value in response. + +# v1.3.1 + +## Improvements +1. Updated Wheel to `~0.38` +2. Added vulnerabilities scanning diff --git a/requirements.txt b/requirements.txt index a62213e6..d1823912 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -wheel==0.37.1 # To get rid of wheel building errors +wheel~=0.38 # To get rid of wheel building errors sseclient-py~=1.7 grpcio-tools==1.38.1 # Do not change requests~=2.28