Skip to content

Commit

Permalink
Merge pull request #937 from rokwire/release/1.14.1
Browse files Browse the repository at this point in the history
Release/1.14.1
  • Loading branch information
sandeep-ps authored May 26, 2022
2 parents 71165e1 + 4c5894e commit 277c1be
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 7 deletions.
7 changes: 6 additions & 1 deletion 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
### 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 Expand Up @@ -477,7 +481,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- References to AWS keys and variables in the Events Building Block.

[Unreleased]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.14.0...HEAD
[Unreleased]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.14.1...HEAD
[1.14.1]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.14.0...1.14.1
[1.14.0]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.13.0...1.14.0
[1.13.0]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.12.1...1.13.0
[1.12.1]: https://github.com/rokwire/rokwire-building-blocks-api/compare/1.12.0...1.12.1
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Patches for **Rokwire Building Blocks** in this repository will only be applied

| Version | Supported |
| ------- | ------------------ |
| 1.14.1 | :white_check_mark: |
| 1.14.0 | :white_check_mark: |
| 1.13.0 | :white_check_mark: |
| 1.12.1 | :white_check_mark: |
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
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)

# TODO: Experimental fix for running behind the load balancer. Revisit to verify that this fix matches the actual deployment environment. Ref: https://werkzeug.palletsprojects.com/en/2.1.x/middleware/proxy_fix/
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

0 comments on commit 277c1be

Please sign in to comment.