File tree Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,12 @@ repos:
1818 hooks :
1919 - id : flake8
2020 exclude : elasticapm\/utils\/wrapt|build|src|tests|dist|conftest.py|setup.py
21- - repo : https://github.com/elastic/apm-agent-python
22- rev : 86fca8c04e6d638ed
21+ - repo : local
2322 hooks :
24- - id : license-header-check
23+ - id : license-header-check
24+ name : License header check
25+ description : Checks the existance of license headers in all Python files
26+ entry : ./tests/scripts/license_headers_check.sh
27+ exclude : " (elasticapm\/ utils\/ wrapt\/ .*|tests\/ utils\/ stacks\/ linenos.py)"
28+ language : script
29+ types : [python]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Unreleased
4- [ Check the diff] ( https://github.com/elastic/apm-agent-python/compare/v4.2.1...master )
3+ ## v4.2.2
4+ [ Check the diff] ( https://github.com/elastic/apm-agent-python/compare/v4.2.1...v4.2.2 )
55 * fixed an issue with Celery and the prefork worker pool (#444 )
66 * fixed an issue when running uwsgi without a master process (#446 )
7+ * fixed an issue with gevent/eventlet on Python 3.7 (#451 , #454 )
78 * introduced ` IntervalTimer ` and use it instead of ` threading.Timer ` (#452 )
89 * added license header check as pre-commit hook (#456 )
910
Original file line number Diff line number Diff line change 2828# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030
31- __version__ = (4 , 2 , 1 )
31+ __version__ = (4 , 2 , 2 )
3232VERSION = "." .join (map (str , __version__ ))
You can’t perform that action at this time.
0 commit comments