File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed
Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## [ 3.5.1] - 2025-03-10
4+
5+ - [ Fixed] Set httpx logger to WARNING level to reduce verbose HTTP request logs in applications using this library
6+
37## [ 3.5.0] - 2025-03-06
48
59- [ Improved] Major performance optimizations (>50% faster)
Original file line number Diff line number Diff line change 1414import httpx
1515import pydash as py_
1616import orjson
17+ import logging
1718from pygqlc .helper_modules .Singleton import Singleton
1819from tenacity import (
1920 retry ,
2324)
2425from .MutationBatch import MutationBatch
2526
27+ # Set httpx logger to WARNING level to reduce HTTP request logs
28+ logging .getLogger ('httpx' ).setLevel (logging .WARNING )
2629
2730GQL_WS_SUBPROTOCOL = "graphql-transport-ws"
2831
Original file line number Diff line number Diff line change 1- __version__ = '3.5.0 '
1+ __version__ = '3.5.1 '
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " pygqlc"
3- version = " 3.5.0 "
3+ version = " 3.5.1 "
44description = " Python client for graphql APIs"
55authors = [" Baruc Almaguer <baruc.almaguer@gmail.com>" ]
66readme = " README.md"
You can’t perform that action at this time.
0 commit comments