chatsbom 0.2.3__tar.gz → 0.2.4__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 (44) hide show
  1. {chatsbom-0.2.3 → chatsbom-0.2.4}/PKG-INFO +1 -1
  2. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/query.py +4 -4
  3. {chatsbom-0.2.3 → chatsbom-0.2.4}/pyproject.toml +1 -1
  4. {chatsbom-0.2.3 → chatsbom-0.2.4}/uv.lock +1 -1
  5. {chatsbom-0.2.3 → chatsbom-0.2.4}/.env.example +0 -0
  6. {chatsbom-0.2.3 → chatsbom-0.2.4}/.github/workflows/release.yaml +0 -0
  7. {chatsbom-0.2.3 → chatsbom-0.2.4}/.github/workflows/weekly.yml +0 -0
  8. {chatsbom-0.2.3 → chatsbom-0.2.4}/.gitignore +0 -0
  9. {chatsbom-0.2.3 → chatsbom-0.2.4}/.pre-commit-config.yaml +0 -0
  10. {chatsbom-0.2.3 → chatsbom-0.2.4}/.python-version +0 -0
  11. {chatsbom-0.2.3 → chatsbom-0.2.4}/README.md +0 -0
  12. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/__init__.py +0 -0
  13. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/__main__.py +0 -0
  14. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/__init__.py +0 -0
  15. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/chat.py +0 -0
  16. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/collect.py +0 -0
  17. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/convert.py +0 -0
  18. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/download.py +0 -0
  19. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/index.py +0 -0
  20. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/commands/status.py +0 -0
  21. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/__init__.py +0 -0
  22. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/clickhouse.py +0 -0
  23. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/client.py +0 -0
  24. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/config.py +0 -0
  25. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/repository.py +0 -0
  26. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/schema.py +0 -0
  27. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/core/validation.py +0 -0
  28. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/models/__init__.py +0 -0
  29. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/models/framework.py +0 -0
  30. {chatsbom-0.2.3 → chatsbom-0.2.4}/chatsbom/models/language.py +0 -0
  31. {chatsbom-0.2.3 → chatsbom-0.2.4}/config/users.d/admin.xml +0 -0
  32. {chatsbom-0.2.3 → chatsbom-0.2.4}/config/users.d/guest.xml +0 -0
  33. {chatsbom-0.2.3 → chatsbom-0.2.4}/docker-compose.yaml +0 -0
  34. {chatsbom-0.2.3 → chatsbom-0.2.4}/figures/demo.gif +0 -0
  35. {chatsbom-0.2.3 → chatsbom-0.2.4}/figures/use-cases/gin/01.png +0 -0
  36. {chatsbom-0.2.3 → chatsbom-0.2.4}/figures/use-cases/gin/02.png +0 -0
  37. {chatsbom-0.2.3 → chatsbom-0.2.4}/start.sh +0 -0
  38. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/client_test.py +0 -0
  39. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/collect_test.py +0 -0
  40. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/convert_sbom_test.py +0 -0
  41. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/download_test.py +0 -0
  42. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/framework_test.py +0 -0
  43. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/index_test.py +0 -0
  44. {chatsbom-0.2.3 → chatsbom-0.2.4}/tests/language_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chatsbom
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: ChatSBOM - Talk to your Supply Chain. Chat with SBOMs.
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: claude-agent-sdk>=0.1.0
@@ -109,8 +109,8 @@ def main(
109
109
  # Count total results first
110
110
  count_query = f"""
111
111
  SELECT count()
112
- FROM {db_config.artifacts_table} a
113
- JOIN {db_config.repositories_table} r ON a.repository_id = r.id
112
+ FROM {db_config.artifacts_table} FINAL a
113
+ JOIN {db_config.repositories_table} FINAL r ON a.repository_id = r.id
114
114
  WHERE a.name = {{library:String}} {lang_filter}
115
115
  """
116
116
 
@@ -139,8 +139,8 @@ def main(
139
139
  r.stars,
140
140
  a.version,
141
141
  r.url
142
- FROM {db_config.artifacts_table} AS a
143
- JOIN {db_config.repositories_table} AS r ON a.repository_id = r.id
142
+ FROM {db_config.artifacts_table} FINAL AS a
143
+ JOIN {db_config.repositories_table} FINAL AS r ON a.repository_id = r.id
144
144
  WHERE a.name = {{library:String}} {lang_filter}
145
145
  ORDER BY r.stars DESC
146
146
  LIMIT {{limit:UInt32}}
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "chatsbom"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "ChatSBOM - Talk to your Supply Chain. Chat with SBOMs."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -179,7 +179,7 @@ wheels = [
179
179
 
180
180
  [[package]]
181
181
  name = "chatsbom"
182
- version = "0.2.2"
182
+ version = "0.2.3"
183
183
  source = { editable = "." }
184
184
  dependencies = [
185
185
  { name = "claude-agent-sdk" },
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