8000 Fix Kinesis -related Authorization header parsing (via kinesis-mock version update) by paulo-ferraz-oliveira · Pull Request #7375 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Fix Kinesis -related Authorization header parsing (via kinesis-mock version update) #7375

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

Merged
merged 3 commits into from
Dec 22, 2022
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
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ For pull requests, please stick to the following guidelines:

* Add tests for any new features and bug fixes. Ideally, each PR should increase the test coverage.
* Follow the existing code style. Run `make format` and `make lint` before checking in your code.
* Refer to [Development Environment Setup](https://docs.localstack.cloud/contributing/development-environment-setup/) if your local testing environment is not yet properly set up.
* Put a reasonable amount of comments into the code.
* Fork localstack on your GitHub user account, do your changes there and then create a PR against main localstack repository.
* Separate unrelated changes into multiple pull requests.
Expand Down
2 changes: 1 addition & 1 deletion localstack/services/kinesis/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from localstack.packages import GitHubReleaseInstaller, Package, PackageInstaller
from localstack.utils.platform import get_arch, get_os

_KINESIS_MOCK_VERSION = os.environ.get("KINESIS_MOCK_VERSION") or "0.3.0"
_KINESIS_MOCK_VERSION = os.environ.get("KINESIS_MOCK_VERSION") or "0.3.1"


class KinesisMockPackage(Package):
Expand Down
0