Skip to content

Commit

Permalink
Merge pull request #18 from marcosschroh/fix/requirements
Browse files Browse the repository at this point in the history
fix: requirements updated
  • Loading branch information
marcosschroh authored Sep 24, 2020
2 parents 01003bb + 73f7f37 commit d928b39
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,41 @@
# Changelog

All notable changes to rae-helm will be documented in this file.

## 2020-09-24

- requirements upated to latest version

- Test docker image added
- Travis integration added

## 2019-07-03

- Test docker image added
- Travis integration added

## 2019-05-19

- Schema Registry dependency added (python-schema-registry-client[faust]==0.3.0)

## 2019-04-18

- Logging now is set from `settings` and not from ENV variable

## 2019-04-17

- Settings implemented with simple-settings package.
- Faust version updated to 1.5.4

## 2019-04-04

- Integration with Schema registry finished
- Custom Codec and Serializer added
- Schema Registry client added
- New faust application called Users added.

## 2019-03-17

- First release
- `docker-compose` finished with `zookeeper`, `kafka` and `schema-registry`
- `Page views` and `Leader Election` packages added.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

The MIT License (MIT)
Copyright (c) 2019, Marcos Schroh
Copyright (c) 2020, Marcos Schroh

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

An example to show how to include a `faust` project as a service using `docker compose`, with [Kafka](https://kafka.apache.org/), [Zookeeper](https://zookeeper.apache.org/) and [Schema Registry](https://docs.confluent.io/current/schema-registry/docs/index.html)

Notice that everything runs using `docker-compose`, including the faust example application. For
local development is preferable to run the `kafka` cluster separate from the `faust app`.

If you want to generate a `faust` project from scratch, please use the [cookiecutter-faust](https://github.com/marcosschroh/cookiecutter-faust)

Read more about Faust here: https://github.com/robinhood/faust
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.1
1.2.2
7 changes: 3 additions & 4 deletions faust-project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

requires = [
"colorlog>=3.1.4",
"fastavro<=0.22.3",
"simple-settings",
"faust>=1.10.4",
"faust",
"python-schema-registry-client",
"typing-extensions==3.7.4.1",
"typing-extensions",
]

setup(
name='faust-example',
version='1.2.1',
version='1.2.2',
description='Faust example with Docker Compose',
long_description='''
Example running Faust with Docker Compose (zookeeper, kafka and schema-registry)
Expand Down

0 comments on commit d928b39

Please sign in to comment.