Skip to content

Commit

Permalink
new repo (#1)
Browse files Browse the repository at this point in the history
* new repo

* check added to CI

* check added to CI

* check added to CI

* mkdocs removed from CI
  • Loading branch information
davorrunje authored Sep 13, 2023
1 parent 1b4bad3 commit 94819ef
Show file tree
Hide file tree
Showing 7 changed files with 2,339 additions and 2,230 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/check-docs-for-broken-links.yaml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,22 @@ jobs:
ls -la mkdocs/site/
exit 1
fi
# https://github.com/marketplace/actions/alls-green#why
check: # This job does nothing and is only used for the branch protection
if: always()

needs:
- test
- mypy_static_analysis
- bandit_static_analysis
- semgrep_static_analysis

runs-on: ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1 # nosemgrep
with:
jobs: ${{ toJSON(needs) }}

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,5 @@ mkdocs/site/

# Ignore trashbins
.Trash*

.vscode
4,496 changes: 2,302 additions & 2,194 deletions docusaurus/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fastkafka/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.1rc0"
__version__ = "0.9.0dev0"
# AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/010_Application_export.ipynb.

# %% auto 0
Expand Down
15 changes: 14 additions & 1 deletion nbs/index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,20 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"<b>Effortless Kafka integration for your web services</b>"
"<b>Effortless Kafka integration for your web services</b>\n",
"\n",
"## Deprecation notice\n",
"\n",
"This project is superceeded by [FastStream](https://github.com/airtai/faststream).\n",
"\n",
"FastStream is a new package based on the ideas and experiences gained from\n",
"[FastKafka](https://github.com/airtai/fastkafka) and\n",
"[Propan](https://github.com/lancetnik/propan). By joining our forces, we\n",
" picked up the best from both packages and created the unified way to write\n",
" services capable of processing streamed data regradless of the underliying protocol.\n",
"\n",
" We'll continue to maintain FastKafka package, but new development will be in [FastStream](https://github.com/airtai/faststream).\n",
"If you are starting a new service, [FastStream](https://github.com/airtai/faststream) is the recommended way to do it."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Python library ###
repo = fastkafka
lib_name = %(repo)s
version = 0.8.1rc0
version = 0.9.0dev0
min_python = 3.8
license = apache2

Expand Down

0 comments on commit 94819ef

Please sign in to comment.