stac-auth-proxy 0.6.1__tar.gz

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.
Files changed (80) hide show
  1. stac_auth_proxy-0.6.1/.github/workflows/cicd.yaml +32 -0
  2. stac_auth_proxy-0.6.1/.github/workflows/conventional-commits-prs.yaml +14 -0
  3. stac_auth_proxy-0.6.1/.github/workflows/publish-docker.yaml +50 -0
  4. stac_auth_proxy-0.6.1/.github/workflows/publish-helm.yaml +44 -0
  5. stac_auth_proxy-0.6.1/.github/workflows/publish-pypi.yaml +22 -0
  6. stac_auth_proxy-0.6.1/.github/workflows/release-please.yml +28 -0
  7. stac_auth_proxy-0.6.1/.gitignore +163 -0
  8. stac_auth_proxy-0.6.1/.pre-commit-config.yaml +34 -0
  9. stac_auth_proxy-0.6.1/.vscode/launch.json +22 -0
  10. stac_auth_proxy-0.6.1/.vscode/settings.json +9 -0
  11. stac_auth_proxy-0.6.1/CHANGELOG.md +14 -0
  12. stac_auth_proxy-0.6.1/Dockerfile +25 -0
  13. stac_auth_proxy-0.6.1/LICENSE +21 -0
  14. stac_auth_proxy-0.6.1/PKG-INFO +511 -0
  15. stac_auth_proxy-0.6.1/README.md +466 -0
  16. stac_auth_proxy-0.6.1/docker-compose.yaml +71 -0
  17. stac_auth_proxy-0.6.1/examples/custom-integration/.python-version +1 -0
  18. stac_auth_proxy-0.6.1/examples/custom-integration/Dockerfile +6 -0
  19. stac_auth_proxy-0.6.1/examples/custom-integration/README.md +11 -0
  20. stac_auth_proxy-0.6.1/examples/custom-integration/docker-compose.yaml +12 -0
  21. stac_auth_proxy-0.6.1/examples/custom-integration/pyproject.toml +7 -0
  22. stac_auth_proxy-0.6.1/examples/custom-integration/src/custom_integration.py +29 -0
  23. stac_auth_proxy-0.6.1/examples/opa/README.md +27 -0
  24. stac_auth_proxy-0.6.1/examples/opa/docker-compose.yaml +15 -0
  25. stac_auth_proxy-0.6.1/examples/opa/policies/stac/policy.rego +13 -0
  26. stac_auth_proxy-0.6.1/helm/Chart.yaml +6 -0
  27. stac_auth_proxy-0.6.1/helm/README.md +126 -0
  28. stac_auth_proxy-0.6.1/helm/templates/NOTES.txt +71 -0
  29. stac_auth_proxy-0.6.1/helm/templates/_helpers.tpl +71 -0
  30. stac_auth_proxy-0.6.1/helm/templates/deployment.yaml +49 -0
  31. stac_auth_proxy-0.6.1/helm/templates/ingress.yaml +40 -0
  32. stac_auth_proxy-0.6.1/helm/templates/service.yaml +15 -0
  33. stac_auth_proxy-0.6.1/helm/templates/serviceaccount.yaml +16 -0
  34. stac_auth_proxy-0.6.1/helm/values.schema.yaml +258 -0
  35. stac_auth_proxy-0.6.1/helm/values.yaml +88 -0
  36. stac_auth_proxy-0.6.1/pyproject.toml +57 -0
  37. stac_auth_proxy-0.6.1/src/stac_auth_proxy/__init__.py +12 -0
  38. stac_auth_proxy-0.6.1/src/stac_auth_proxy/__main__.py +18 -0
  39. stac_auth_proxy-0.6.1/src/stac_auth_proxy/app.py +178 -0
  40. stac_auth_proxy-0.6.1/src/stac_auth_proxy/config.py +91 -0
  41. stac_auth_proxy-0.6.1/src/stac_auth_proxy/filters/__init__.py +9 -0
  42. stac_auth_proxy-0.6.1/src/stac_auth_proxy/filters/opa.py +44 -0
  43. stac_auth_proxy-0.6.1/src/stac_auth_proxy/filters/template.py +22 -0
  44. stac_auth_proxy-0.6.1/src/stac_auth_proxy/handlers/__init__.py +7 -0
  45. stac_auth_proxy-0.6.1/src/stac_auth_proxy/handlers/healthz.py +31 -0
  46. stac_auth_proxy-0.6.1/src/stac_auth_proxy/handlers/reverse_proxy.py +101 -0
  47. stac_auth_proxy-0.6.1/src/stac_auth_proxy/handlers/swagger_ui.py +41 -0
  48. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/AddProcessTimeHeaderMiddleware.py +18 -0
  49. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/ApplyCql2FilterMiddleware.py +202 -0
  50. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/AuthenticationExtensionMiddleware.py +101 -0
  51. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/BuildCql2FilterMiddleware.py +112 -0
  52. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/EnforceAuthMiddleware.py +180 -0
  53. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/ProcessLinksMiddleware.py +73 -0
  54. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/RemoveRootPathMiddleware.py +45 -0
  55. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/UpdateOpenApiMiddleware.py +76 -0
  56. stac_auth_proxy-0.6.1/src/stac_auth_proxy/middleware/__init__.py +21 -0
  57. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/__init__.py +1 -0
  58. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/cache.py +92 -0
  59. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/filters.py +47 -0
  60. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/lifespan.py +93 -0
  61. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/middleware.py +114 -0
  62. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/requests.py +82 -0
  63. stac_auth_proxy-0.6.1/src/stac_auth_proxy/utils/stac.py +18 -0
  64. stac_auth_proxy-0.6.1/tests/conftest.py +226 -0
  65. stac_auth_proxy-0.6.1/tests/test_auth_extension.py +197 -0
  66. stac_auth_proxy-0.6.1/tests/test_authn.py +169 -0
  67. stac_auth_proxy-0.6.1/tests/test_cache.py +112 -0
  68. stac_auth_proxy-0.6.1/tests/test_defaults.py +93 -0
  69. stac_auth_proxy-0.6.1/tests/test_filters_jinja2.py +486 -0
  70. stac_auth_proxy-0.6.1/tests/test_filters_opa.py +95 -0
  71. stac_auth_proxy-0.6.1/tests/test_lifespan.py +82 -0
  72. stac_auth_proxy-0.6.1/tests/test_middleware.py +103 -0
  73. stac_auth_proxy-0.6.1/tests/test_openapi.py +222 -0
  74. stac_auth_proxy-0.6.1/tests/test_process_links.py +188 -0
  75. stac_auth_proxy-0.6.1/tests/test_proxy.py +40 -0
  76. stac_auth_proxy-0.6.1/tests/test_remove_root_path.py +93 -0
  77. stac_auth_proxy-0.6.1/tests/test_reverse_proxy.py +173 -0
  78. stac_auth_proxy-0.6.1/tests/test_utils.py +37 -0
  79. stac_auth_proxy-0.6.1/tests/utils.py +93 -0
  80. stac_auth_proxy-0.6.1/uv.lock +1333 -0
@@ -0,0 +1,32 @@
1
+ name: CI/CD
2
+
3
+ on:
4
+ push:
5
+ release:
6
+
7
+ jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v3
14
+ - uses: astral-sh/setup-uv@v4
15
+ with:
16
+ enable-cache: true
17
+ - uses: actions/cache@v4
18
+ with:
19
+ path: ~/.cache/pre-commit
20
+ key: ${{ hashFiles('.pre-commit-config.yaml') }}
21
+ - run: uv run pre-commit run --all-files
22
+
23
+ test:
24
+ runs-on: ubuntu-latest
25
+
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+ - uses: actions/setup-python@v3
29
+ - uses: astral-sh/setup-uv@v4
30
+ with:
31
+ enable-cache: true
32
+ - run: uv run pytest -n auto
@@ -0,0 +1,14 @@
1
+ name: PR Conventional Commit Validation
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened, edited]
6
+
7
+ jobs:
8
+ validate-pr-title:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: PR Conventional Commit Validation
12
+ uses: ytanikin/pr-conventional-commits@1.4.0
13
+ with:
14
+ task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
@@ -0,0 +1,50 @@
1
+ name: Publish Docker image
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ env:
8
+ REGISTRY: ghcr.io
9
+ IMAGE_NAME: ${{ github.repository }}
10
+
11
+ jobs:
12
+ build-and-push:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: read
16
+ packages: write
17
+
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
+
22
+ - name: Set up Docker Buildx
23
+ uses: docker/setup-buildx-action@v3
24
+
25
+ - name: Log in to the Container registry
26
+ uses: docker/login-action@v3
27
+ with:
28
+ registry: ${{ env.REGISTRY }}
29
+ username: ${{ github.actor }}
30
+ password: ${{ secrets.GITHUB_TOKEN }}
31
+
32
+ - name: Extract metadata (tags, labels) for Docker
33
+ id: meta
34
+ uses: docker/metadata-action@v5
35
+ with:
36
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
37
+ tags: |
38
+ type=raw,value=${{ github.event.release.tag_name }}
39
+ type=raw,value=latest,enable=${{ github.event.release.prerelease == false }}
40
+
41
+ - name: Build and push Docker image
42
+ uses: docker/build-push-action@v5
43
+ with:
44
+ context: .
45
+ push: true
46
+ platforms: linux/amd64,linux/arm64
47
+ tags: ${{ steps.meta.outputs.tags }}
48
+ labels: ${{ steps.meta.outputs.labels }}
49
+ cache-from: type=gha
50
+ cache-to: type=gha,mode=max
@@ -0,0 +1,44 @@
1
+ name: Publish Helm Chart
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - 'helm/**'
9
+ - '.github/workflows/publish-helm.yaml'
10
+ release:
11
+ types: [created]
12
+
13
+ jobs:
14
+ publish-helm:
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: read
18
+ packages: write
19
+
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
+ with:
24
+ fetch-depth: 0
25
+
26
+ - name: Install Helm
27
+ uses: azure/setup-helm@v3
28
+ with:
29
+ version: v3.12.1
30
+
31
+ - name: Login to GHCR
32
+ uses: docker/login-action@v3
33
+ with:
34
+ registry: ghcr.io
35
+ username: ${{ github.actor }}
36
+ password: ${{ secrets.GITHUB_TOKEN }}
37
+
38
+ - name: Package Helm Chart
39
+ run: |
40
+ helm package helm/
41
+
42
+ - name: Push Helm Chart
43
+ run: |
44
+ helm push *.tgz oci://ghcr.io/${{ github.repository }}/charts
@@ -0,0 +1,22 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+
12
+ jobs:
13
+ publish-to-pypi:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-python@v3
18
+ - uses: astral-sh/setup-uv@v4
19
+ with:
20
+ enable-cache: true
21
+ - run: uv build
22
+ - run: uv publish
@@ -0,0 +1,28 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+ permissions:
7
+ contents: write
8
+ pull-requests: write
9
+
10
+ name: release-please
11
+
12
+ jobs:
13
+ release-please:
14
+ runs-on: ubuntu-latest
15
+ outputs:
16
+ release_created: ${{ steps.release.outputs.release_created }}
17
+ steps:
18
+ - uses: actions/create-github-app-token@v2.0.6
19
+ id: app-token
20
+ with:
21
+ app-id: ${{ secrets.DS_RELEASE_BOT_ID }}
22
+ private-key: ${{ secrets.DS_RELEASE_BOT_PRIVATE_KEY }}
23
+
24
+ - uses: googleapis/release-please-action@v4
25
+ id: release
26
+ with:
27
+ release-type: python
28
+ token: ${{ steps.app-token.outputs.token }}
@@ -0,0 +1,163 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/
163
+ .pgdata
@@ -0,0 +1,34 @@
1
+ repos:
2
+ - repo: https://github.com/abravalheri/validate-pyproject
3
+ rev: v0.23
4
+ hooks:
5
+ - id: validate-pyproject
6
+
7
+ - repo: https://github.com/psf/black
8
+ rev: 22.12.0
9
+ hooks:
10
+ - id: black
11
+ language_version: python
12
+
13
+ - repo: https://github.com/PyCQA/isort
14
+ rev: 5.12.0
15
+ hooks:
16
+ - id: isort
17
+ language_version: python
18
+
19
+ - repo: https://github.com/charliermarsh/ruff-pre-commit
20
+ rev: v0.0.238
21
+ hooks:
22
+ - id: ruff
23
+ args: ["--fix"]
24
+
25
+ - repo: https://github.com/pre-commit/mirrors-mypy
26
+ rev: v1.3.0
27
+ hooks:
28
+ - id: mypy
29
+ language_version: python
30
+ exclude: tests/.*
31
+ additional_dependencies:
32
+ - types-simplejson
33
+ - types-attrs
34
+ - pydantic~=2.0
@@ -0,0 +1,22 @@
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python Debugger: FastAPI",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "module": "uvicorn",
12
+ "args": [
13
+ "stac_auth_proxy.app:create_app",
14
+ "--reload",
15
+ "--factory"
16
+ ],
17
+ "jinja": true,
18
+ "cwd": "${workspaceFolder}/src",
19
+ "justMyCode": false
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "python.testing.pytestArgs": [
3
+ "tests",
4
+ "-n",
5
+ "auto"
6
+ ],
7
+ "python.testing.unittestEnabled": false,
8
+ "python.testing.pytestEnabled": true
9
+ }
@@ -0,0 +1,14 @@
1
+ # Changelog
2
+
3
+ ## [0.6.1](https://github.com/developmentseed/stac-auth-proxy/compare/0.6.0...v0.6.1) (2025-07-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix status check for 2xx responses ([#59](https://github.com/developmentseed/stac-auth-proxy/issues/59)) ([5b03cb3](https://github.com/developmentseed/stac-auth-proxy/commit/5b03cb35e6fb7a10cd51e0fcd1ab86d4bb4292cc))
9
+
10
+
11
+ ### Documentation
12
+
13
+ * add illustration for appying filters on non-filter compliant endpoints ([1a75550](https://github.com/developmentseed/stac-auth-proxy/commit/1a75550c56dcf39a316fce7b9f8c27689e5efc6e))
14
+ * prefer headings over nested list ([447a13d](https://github.com/developmentseed/stac-auth-proxy/commit/447a13d0ff4639d95e02009695d6fac62821c7c3))
@@ -0,0 +1,25 @@
1
+ # https://github.com/astral-sh/uv-docker-example/blob/c16a61fb3e6ab568ac58d94b73a7d79594a5d570/Dockerfile
2
+ FROM python:3.13-slim
3
+
4
+ WORKDIR /app
5
+
6
+ ENV PATH="/app/.venv/bin:$PATH"
7
+ ENV UV_COMPILE_BYTECODE=1
8
+ ENV UV_LINK_MODE=copy
9
+ ENV UV_PROJECT_ENVIRONMENT=/usr/local
10
+
11
+ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12
+
13
+ # Install the project's dependencies using the lockfile and settings
14
+ RUN --mount=type=cache,target=/root/.cache/uv \
15
+ --mount=type=bind,source=uv.lock,target=uv.lock \
16
+ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
17
+ uv sync --frozen --no-install-project --no-dev
18
+
19
+ # Then, add the rest of the project source code and install it
20
+ # Installing separately from its dependencies allows optimal layer caching
21
+ ADD . /app
22
+ RUN --mount=type=cache,target=/root/.cache/uv \
23
+ uv sync --frozen --no-dev
24
+
25
+ CMD ["python", "-m", "stac_auth_proxy"]
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Development Seed
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.