File tree 4 files changed +12
-13
lines changed 4 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,12 @@ repos:
18
18
hooks :
19
19
- id : flake8
20
20
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
23
22
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 1
1
# Changelog
2
2
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 )
5
5
* fixed an issue with Celery and the prefork worker pool (#444 )
6
6
* fixed an issue when running uwsgi without a master process (#446 )
7
+ * fixed an issue with gevent/eventlet on Python 3.7 (#451 , #454 )
7
8
* introduced ` IntervalTimer ` and use it instead of ` threading.Timer ` (#452 )
8
9
* added license header check as pre-commit hook (#456 )
9
10
Original file line number Diff line number Diff line change 28
28
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
29
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
30
31
- __version__ = (4 , 2 , 1 )
31
+ __version__ = (4 , 2 , 2 )
32
32
VERSION = "." .join (map (str , __version__ ))
You can’t perform that action at this time.
0 commit comments