Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update server requirements and fix mgmtapi caching on fireq #164

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions server/cp/mgmt_api/default_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,7 @@
CACHE_DEFAULT_TIMEOUT = 3600
# Redis host (used only if CACHE_TYPE is redis)
CACHE_REDIS_URL = os.environ.get('REDIS_URL', 'redis://localhost:6379')
# fix superdesk cache config
CACHE_URL = CACHE_REDIS_URL

APM_SERVICE_NAME = "CP NewsPro Management API"
29 changes: 14 additions & 15 deletions server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ blinker==1.4
# raven
# sentry-sdk
# superdesk-core
boto3==1.34.31
boto3==1.34.52
# via superdesk-core
botocore==1.34.31
botocore==1.34.52
# via
# boto3
# s3transfer
cachelib==0.9.0
# via flask-caching
cachetools==5.3.2
cachetools==5.3.3
# via
# flask-oidc-ex
# google-auth
Expand All @@ -54,7 +54,7 @@ cerberus==1.3.5
# via
# eve
# superdesk-core
certifi==2023.11.17
certifi==2024.2.2
# via
# elastic-apm
# elasticsearch
Expand Down Expand Up @@ -88,7 +88,7 @@ click-repl==0.3.0
# via celery
croniter==0.3.37
# via superdesk-core
cryptography==42.0.2
cryptography==42.0.5
# via
# authlib
# jwcrypto
Expand All @@ -99,9 +99,7 @@ cssselect2==0.7.0
deepdiff==6.7.1
# via superdesk-planning
deprecated==1.2.14
# via
# jwcrypto
# limits
# via limits
draftjs-exporter[lxml]==2.1.7
# via
# draftjs-exporter
Expand Down Expand Up @@ -158,7 +156,7 @@ flask-webpack==0.1.0
# via newsroom-core
flask-wtf==0.14.3
# via newsroom-core
future==0.18.3
future==1.0.0
# via python-twitter
google-auth==2.6.6
# via newsroom-core
Expand All @@ -178,7 +176,7 @@ icalendar==4.0.9
# via superdesk-planning
idna==3.6
# via requests
importlib-resources==6.1.1
importlib-resources==6.1.2
# via limits
isodate==0.6.1
# via python3-saml
Expand All @@ -197,7 +195,7 @@ jmespath==1.0.1
# via
# boto3
# botocore
jwcrypto==1.5.1
jwcrypto==1.5.4
# via
# flask-oidc-ex
# python-jwt
Expand All @@ -207,7 +205,7 @@ kombu==5.2.4
# superdesk-core
ldap3==2.5.2
# via superdesk-core
limits==3.7.0
limits==3.9.0
# via flask-limiter
lxml==4.6.5
# via
Expand Down Expand Up @@ -276,7 +274,7 @@ pyparsing==3.1.1
# via
# httplib2
# pyrtf3
pypdf==4.0.1
pypdf==4.0.2
# via xhtml2pdf
pypng==0.20220715.0
# via qrcode
Expand All @@ -299,7 +297,7 @@ python-twitter==3.5
# via superdesk-core
python3-saml==1.15.0
# via newsroom-core
pytz==2023.4
pytz==2024.1
# via
# celery
# eve-elastic
Expand Down Expand Up @@ -374,8 +372,9 @@ tinycss2==1.2.1
# via
# cssselect2
# svglib
typing-extensions==4.9.0
typing-extensions==4.10.0
# via
# jwcrypto
# limits
# qrcode
# superdesk-core
Expand Down
Loading