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

Release/1.14.1 #937

Merged
merged 13 commits into from
May 26, 2022
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.14.1] - 2022-05-26
sandeep-ps marked this conversation as resolved.
Show resolved Hide resolved
### Fixed
- ProxyFix for OAuth Lib Transport Error when deploying in docker containers. [#928](https://github.com/rokwire/rokwire-building-blocks-api/issues/928)

## [1.14.0] - 2022-05-17
### Added
- Sending email to reviewers. [#839](https://github.com/rokwire/rokwire-building-blocks-api/issues/839)
Expand Down
2 changes: 1 addition & 1 deletion appconfigservice/appconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Rokwire App Config Building Block API
description: App Config Building Block API Documentation
version: 1.14.0
version: 1.14.1
servers:
- url: https://api.rokwire.illinois.edu
description: Production server
Expand Down
2 changes: 1 addition & 1 deletion authservice/auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.2
info:
title: Rokwire Auth Building Block API
description: Authentication Building Block API Documentation
version: 1.14.0
version: 1.14.1
paths:
/authentication/phone-initiate:
post:
Expand Down
1 change: 1 addition & 0 deletions contributions/api/contributions_rest_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
app.add_api('contribution.yaml', base_path=cfg.CONTRIBUTION_URL_PREFIX, arguments={'title': 'Rokwire'}, resolver=RokwireResolver('controllers'),
resolver_error=501, strict_validation=True)


minump marked this conversation as resolved.
Show resolved Hide resolved
if cors_enabled:
CORS(app.app)

Expand Down
4 changes: 4 additions & 0 deletions contributions/catalog/catalog_rest_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from controllers.config import Config as cfg
from controllers.contribute import bp as contribute_bp
from db import init_app
from werkzeug.middleware.proxy_fix import ProxyFix

debug = cfg.DEBUG

Expand All @@ -50,6 +51,9 @@
template_folder=template_dir)
app.config.from_object(cfg)

# App is behind one proxy that sets the -For and -Host headers.
minump marked this conversation as resolved.
Show resolved Hide resolved
app.wsgi_app = ProxyFix(app.wsgi_app, x_for=1, x_host=1)

init_app(app)
app.register_blueprint(contribute_bp)

Expand Down
2 changes: 1 addition & 1 deletion contributions/contribution.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Rokwire Contributions Building Block API
description: Contributions Building Block API Documentation
version: 1.14.0
version: 1.14.1
servers:
- url: https://api.rokwire.illinois.edu
description: Production server
Expand Down
2 changes: 1 addition & 1 deletion eventservice/events.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Rokwire Events Building Block API
description: Events Building Block API Documentation
version: 1.14.0
version: 1.14.1
servers:
- url: https://api.rokwire.illinois.edu
description: Production server
Expand Down
2 changes: 1 addition & 1 deletion loggingservice/logging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Rokwire Logging Building Block API
description: Logging Building Block API Documentation
version: 1.14.0
version: 1.14.1
servers:
- url: https://api.rokwire.illinois.edu
description: Production server
Expand Down
2 changes: 1 addition & 1 deletion profileservice/profile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Rokwire Profile Building Block API
description: Profile Building Block API Documentation
version: 1.14.0
version: 1.14.1
servers:
- url: https://api.rokwire.illinois.edu
description: Production server
Expand Down