You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

sql-metadata

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sql-metadata - pypi Package Compare versions

Comparing version
2.17.0
to
2.18.0
+4
-2
PKG-INFO

@@ -1,6 +0,7 @@

Metadata-Version: 2.3
Metadata-Version: 2.4
Name: sql_metadata
Version: 2.17.0
Version: 2.18.0
Summary: Uses tokenized query returned by python-sqlparse and generates query metadata
License: MIT
License-File: LICENSE
Author: Maciej Brencz

@@ -16,2 +17,3 @@ Author-email: maciej.brencz@gmail.com

Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: sqlparse (>=0.4.1,<0.6.0)

@@ -18,0 +20,0 @@ Project-URL: Homepage, https://github.com/macbre/sql-metadata

[tool.poetry]
name = "sql_metadata"
version = "2.17.0"
version = "2.18.0"
license="MIT"

@@ -20,8 +20,8 @@ description = "Uses tokenized query returned by python-sqlparse and generates query metadata"

[tool.poetry.dev-dependencies]
black = "^25.1"
coverage = {extras = ["toml"], version = "^7.8"}
pylint = "^3.2.7"
pytest = "^8.3.4"
pytest-cov = "^6.1.1"
flake8 = "^7.2.0"
black = "^25.9"
coverage = {extras = ["toml"], version = "^7.10"}
pylint = "^3.3.9"
pytest = "^8.4.2"
pytest-cov = "^7.0.0"
flake8 = "^7.3.0"

@@ -28,0 +28,0 @@ [build-system]

@@ -68,2 +68,3 @@ """

"GROUPBY": "group_by",
"INNERJOIN": "inner_join",
}

@@ -111,2 +112,3 @@

"CREATETABLE": QueryType.CREATE,
"CREATETEMPORARY": QueryType.CREATE,
"ALTERTABLE": QueryType.ALTER,

@@ -113,0 +115,0 @@ "DROPTABLE": QueryType.DROP,