sfq 0.0.34__tar.gz → 0.0.35__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. {sfq-0.0.34 → sfq-0.0.35}/.github/workflows/publish.yml +3 -0
  2. {sfq-0.0.34 → sfq-0.0.35}/PKG-INFO +1 -1
  3. {sfq-0.0.34 → sfq-0.0.35}/pyproject.toml +1 -1
  4. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/__init__.py +3 -3
  5. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/http_client.py +1 -1
  6. {sfq-0.0.34 → sfq-0.0.35}/uv.lock +1 -1
  7. {sfq-0.0.34 → sfq-0.0.35}/.gitignore +0 -0
  8. {sfq-0.0.34 → sfq-0.0.35}/.python-version +0 -0
  9. {sfq-0.0.34 → sfq-0.0.35}/README.md +0 -0
  10. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/_cometd.py +0 -0
  11. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/auth.py +0 -0
  12. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/crud.py +0 -0
  13. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/debug_cleanup.py +0 -0
  14. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/exceptions.py +0 -0
  15. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/py.typed +0 -0
  16. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/query.py +0 -0
  17. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/soap.py +0 -0
  18. {sfq-0.0.34 → sfq-0.0.35}/src/sfq/utils.py +0 -0
  19. {sfq-0.0.34 → sfq-0.0.35}/tests/test_auth.py +0 -0
  20. {sfq-0.0.34 → sfq-0.0.35}/tests/test_cdelete.py +0 -0
  21. {sfq-0.0.34 → sfq-0.0.35}/tests/test_compatibility.py +0 -0
  22. {sfq-0.0.34 → sfq-0.0.35}/tests/test_cquery.py +0 -0
  23. {sfq-0.0.34 → sfq-0.0.35}/tests/test_create.py +0 -0
  24. {sfq-0.0.34 → sfq-0.0.35}/tests/test_crud.py +0 -0
  25. {sfq-0.0.34 → sfq-0.0.35}/tests/test_crud_e2e.py +0 -0
  26. {sfq-0.0.34 → sfq-0.0.35}/tests/test_cupdate.py +0 -0
  27. {sfq-0.0.34 → sfq-0.0.35}/tests/test_debug_cleanup_e2e.py +0 -0
  28. {sfq-0.0.34 → sfq-0.0.35}/tests/test_debug_cleanup_unit.py +0 -0
  29. {sfq-0.0.34 → sfq-0.0.35}/tests/test_http_client.py +0 -0
  30. {sfq-0.0.34 → sfq-0.0.35}/tests/test_limits_api.py +0 -0
  31. {sfq-0.0.34 → sfq-0.0.35}/tests/test_log_trace_redact.py +0 -0
  32. {sfq-0.0.34 → sfq-0.0.35}/tests/test_open_frontdoor.py +0 -0
  33. {sfq-0.0.34 → sfq-0.0.35}/tests/test_query.py +0 -0
  34. {sfq-0.0.34 → sfq-0.0.35}/tests/test_query_client.py +0 -0
  35. {sfq-0.0.34 → sfq-0.0.35}/tests/test_query_e2e.py +0 -0
  36. {sfq-0.0.34 → sfq-0.0.35}/tests/test_query_integration.py +0 -0
  37. {sfq-0.0.34 → sfq-0.0.35}/tests/test_soap.py +0 -0
  38. {sfq-0.0.34 → sfq-0.0.35}/tests/test_soap_batch_operation.py +0 -0
  39. {sfq-0.0.34 → sfq-0.0.35}/tests/test_static_resources.py +0 -0
  40. {sfq-0.0.34 → sfq-0.0.35}/tests/test_utils.py +0 -0
@@ -82,6 +82,9 @@ jobs:
82
82
  echo "Updating src/sfq/__init__.py __version__ to $VERSION"
83
83
  sed -i -E "s/(self.__version__ = \")[0-9]+\.[0-9]+\.[0-9]+(\")/\1$VERSION\2/" src/sfq/__init__.py
84
84
  sed -i -E "s/(__version__ = \")[0-9]+\.[0-9]+\.[0-9]+(\")/\1$VERSION\2/" src/sfq/__init__.py
85
+
86
+ echo "Updating src/sfq/http_client.py user_agent to $VERSION"
87
+ sed -i -E "s/(user_agent: str = \"sfq\/)[0-9]+\.[0-9]+\.[0-9]+(\")/\1$VERSION\2/" src/sfq/http_client.py
85
88
 
86
89
  - name: Run tests
87
90
  run: pytest --verbose --strict-config
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sfq
3
- Version: 0.0.34
3
+ Version: 0.0.35
4
4
  Summary: Python wrapper for the Salesforce's Query API.
5
5
  Author-email: David Moruzzi <sfq.pypi@dmoruzi.com>
6
6
  Keywords: salesforce,salesforce query
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sfq"
3
- version = "0.0.34"
3
+ version = "0.0.35"
4
4
  description = "Python wrapper for the Salesforce's Query API."
5
5
  readme = "README.md"
6
6
  authors = [{ name = "David Moruzzi", email = "sfq.pypi@dmoruzi.com" }]
@@ -43,7 +43,7 @@ __all__ = [
43
43
  "__version__",
44
44
  ]
45
45
 
46
- __version__ = "0.0.34"
46
+ __version__ = "0.0.35"
47
47
  """
48
48
  ### `__version__`
49
49
 
@@ -67,7 +67,7 @@ class SFAuth:
67
67
  access_token: Optional[str] = None,
68
68
  token_expiration_time: Optional[float] = None,
69
69
  token_lifetime: int = 15 * 60,
70
- user_agent: str = "sfq/0.0.34",
70
+ user_agent: str = "sfq/0.0.35",
71
71
  sforce_client: str = "_auto",
72
72
  proxy: str = "_auto",
73
73
  ) -> None:
@@ -132,7 +132,7 @@ class SFAuth:
132
132
  self._debug_cleanup = DebugCleanup(sf_auth=self)
133
133
 
134
134
  # Store version information
135
- self.__version__ = "0.0.34"
135
+ self.__version__ = "0.0.35"
136
136
  """
137
137
  ### `__version__`
138
138
 
@@ -28,7 +28,7 @@ class HTTPClient:
28
28
  def __init__(
29
29
  self,
30
30
  auth_manager: AuthManager,
31
- user_agent: str = "sfq/0.0.34",
31
+ user_agent: str = "sfq/0.0.35",
32
32
  sforce_client: str = "_auto",
33
33
  high_api_usage_threshold: int = 80,
34
34
  ) -> None:
@@ -3,5 +3,5 @@ requires-python = ">=3.9"
3
3
 
4
4
  [[package]]
5
5
  name = "sfq"
6
- version = "0.0.34"
6
+ version = "0.0.35"
7
7
  source = { editable = "." }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes