Skip to content

Commit

Permalink
Bump werkzeug from 3.0.1 to 3.0.3 (#415)
Browse files Browse the repository at this point in the history
* Bump werkzeug from 3.0.1 to 3.0.3

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.0.1 to 3.0.3.
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](pallets/werkzeug@3.0.1...3.0.3)

---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* linting

* auto patch increment

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alejandro Arroyo <[email protected]>
Co-authored-by: ras-rm-pr-bot <[email protected]>
  • Loading branch information
3 people authored May 8, 2024
1 parent bc557eb commit b01cd5e
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 14 deletions.
7 changes: 4 additions & 3 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions _infra/helm/secure-message/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 2.1.69
version: 2.1.70

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 2.1.69
appVersion: 2.1.70
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DevConfig(Config):

# UAA
CLIENT_ID = os.getenv("CLIENT_ID", "secure_message")
CLIENT_SECRET = os.getenv("CLIENT_SECRET", "password")
CLIENT_SECRET = os.getenv("CLIENT_SECRET", "nearest.location.roll.change")
UAA_URL = os.getenv("UAA_URL", "http://localhost:9080")
USE_UAA = int(os.getenv("USE_UAA", 1))

Expand Down
1 change: 0 additions & 1 deletion secure_message/exception/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class MessageSaveException(HTTPException):

"""This exception is used when the service fails to save a secure message"""

code = 500
Expand Down
3 changes: 0 additions & 3 deletions secure_message/resources/health.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


class Health(Resource):

"""Rest endpoint to provide application general health"""

@staticmethod
Expand All @@ -20,7 +19,6 @@ def get():


class DatabaseHealth(Resource):

"""Rest endpoint to provide application database health"""

@staticmethod
Expand All @@ -29,7 +27,6 @@ def get():


class HealthDetails(Resource):

"""Rest endpoint to provide application details"""

@staticmethod
Expand Down
1 change: 0 additions & 1 deletion secure_message/resources/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


class Info(Resource):

"""Rest endpoint to provide application information"""

@staticmethod
Expand Down
2 changes: 0 additions & 2 deletions secure_message/validation/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@


class Message:

"""Class to hold message attributes"""

def __init__(
Expand Down Expand Up @@ -65,7 +64,6 @@ def __eq__(self, other):


class MessageSchema(Schema):

"""Class to marshal JSON to Message"""

msg_id = fields.Str(allow_none=True)
Expand Down
1 change: 0 additions & 1 deletion secure_message/validation/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


class ThreadPatch(Schema):

"""Class to marshal JSON to Message"""

category = fields.Str()
Expand Down

0 comments on commit b01cd5e

Please sign in to comment.