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

Make changes for a public release #105

Merged
merged 44 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
09aaa94
Create a publish.yml file to publish to PyPI
Aug 20, 2024
24ce4f0
Remove debug logging for e.g. builtins, repetitive useless statements
Aug 20, 2024
1fbf00a
Downgrade to debug logs
Aug 20, 2024
65615f4
Make messages more concise or add better data to logs
Aug 20, 2024
3772693
Aikido RASP to Aikido Zen
Aug 20, 2024
fdf15c6
Merge branch 'main' into publish-to-pypi
Aug 20, 2024
e8396fe
Merge branch 'AIK-3348' into publish-to-pypi
Aug 20, 2024
312fdbd
Merge branch 'AIK-3350' into publish-to-pypi
Aug 20, 2024
02c45a7
v0.1.0
Aug 20, 2024
b109435
Fix failed to report an attack broken test
Aug 20, 2024
b5f1bf6
remove leftover /legacy/ url from TestPyPI
Aug 20, 2024
7d266cb
Revert package name to aikido_firewall
Aug 20, 2024
3daadb5
Use twine to publish
Aug 20, 2024
a73b508
Remove python setup.py command
Aug 20, 2024
5594c86
Merge branch 'AIK-3337' into publish-to-pypi
Aug 21, 2024
0e41117
Use guard.aikido.dev and v0.1.1
Aug 21, 2024
2353b4c
Merge branch 'AIK-3348' into AIK-3305
Aug 21, 2024
b15758a
Add hasReceivedAnyStats, if shouldSendStat schedule heartbeat
Aug 21, 2024
0b0949e
update_service_config check if res.endpoints is not none + linting
Aug 21, 2024
96bc3ca
Add a boot argument to the heartbeats
Aug 21, 2024
70c3bb2
Execute the report_initial_statistics only after 60 seconds
Aug 21, 2024
291c5aa
Changed start_polling_for_changes to use reporter object
Aug 21, 2024
d015440
Update tests for start_polling_for_changes and the service_config
Aug 21, 2024
42e463f
add is_empty function to Statistics class
Aug 21, 2024
4ff47c4
Use is_empty function and cleanup logging
Aug 21, 2024
e651767
Merge branch 'AIK-3305' into publish-to-pypi
Aug 21, 2024
cdf37b3
Move to version 0.1.2
Aug 21, 2024
16a3cf8
Send KILL when SIGINT/SIGTERM
Aug 22, 2024
feba796
Merge branch 'main' into publish-to-pypi
Aug 22, 2024
1889b63
Version 0.1.3
Aug 22, 2024
20ce8c0
Update the way we kill the background process
Aug 22, 2024
5b429e8
0.1.4
Aug 22, 2024
66ef031
Use atexit to exit
Aug 22, 2024
cbc2935
Replace 0.1.4 with 0.1.5
Aug 22, 2024
2bb0390
0.1.6 (Another signal_handler method)
Aug 22, 2024
60b9227
Linting
Aug 22, 2024
b46d291
0.1.7 (Another attempt at killing bg process)
Aug 22, 2024
8e73f5c
v0.1.8 : Remove signal_handler , remove protect server=False
Aug 22, 2024
2729bd7
Run a KILL to make sure no bg processes no more
Aug 22, 2024
f16d706
0.1.9
Aug 22, 2024
78cc80b
Merge branch 'main' into publish-to-pypi
Aug 22, 2024
b6ffc5b
Reset to 0.0.9
Aug 22, 2024
f017156
Reset changes made to SIGTERM/SIGINT stuff
Aug 22, 2024
23bf19a
Only publish on release and not on tag
Aug 22, 2024
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
Prev Previous commit
Next Next commit
Version 0.1.3
Wout Feys committed Aug 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1889b632ea9dab2709a12dacd8444a04cab87373
2 changes: 1 addition & 1 deletion aikido_firewall/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Contains package versions"""

PKG_VERSION = "0.1.2"
PKG_VERSION = "0.1.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aikido_firewall"
version = "0.1.2"
version = "0.1.3"
description = "Aikido Zen for Python"
authors = ["Aikido"]
readme = "README.md"
Loading