pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-django-sql-explorer



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jun  4 10:43:20 UTC 2024

Modified Files:
        pkgsrc/www/py-django-sql-explorer: Makefile PLIST distinfo

Log Message:
py-django-sql-explorer: updated to 4.3

4.3.0

Keyboard shortcut to show schema hints (cmd+S / ctrl+S -- note that is a capital
"S" so the full kbd commands is cmd+shift+s)
DB-managed LLM prompts (editable in django admin)
Versioned .js bundles (for cache busting)
Automatically populate assistant responses that contain code into the editor
Update schema/assistant tables/autocomplete on connection drop-down change
Import models so that migrations are properly understood by Django
Get CSRF from DOM (instead of cookie) if CSRF_USE_SESSIONS is set


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/py-django-sql-explorer/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-django-sql-explorer/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-django-sql-explorer/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-django-sql-explorer/Makefile
diff -u pkgsrc/www/py-django-sql-explorer/Makefile:1.9 pkgsrc/www/py-django-sql-explorer/Makefile:1.10
--- pkgsrc/www/py-django-sql-explorer/Makefile:1.9      Tue May  7 03:59:49 2024
+++ pkgsrc/www/py-django-sql-explorer/Makefile  Tue Jun  4 10:43:20 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2024/05/07 03:59:49 adam Exp $
+# $NetBSD: Makefile,v 1.10 2024/06/04 10:43:20 adam Exp $
 
-DISTNAME=      django_sql_explorer-4.2
+DISTNAME=      django_sql_explorer-4.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/g}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-sql-explorer/}

Index: pkgsrc/www/py-django-sql-explorer/PLIST
diff -u pkgsrc/www/py-django-sql-explorer/PLIST:1.6 pkgsrc/www/py-django-sql-explorer/PLIST:1.7
--- pkgsrc/www/py-django-sql-explorer/PLIST:1.6 Tue May  7 03:59:49 2024
+++ pkgsrc/www/py-django-sql-explorer/PLIST     Tue Jun  4 10:43:20 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2024/05/07 03:59:49 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2024/06/04 10:43:20 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -26,9 +26,6 @@ ${PYSITELIB}/explorer/assistant/__init__
 ${PYSITELIB}/explorer/assistant/models.py
 ${PYSITELIB}/explorer/assistant/models.pyc
 ${PYSITELIB}/explorer/assistant/models.pyo
-${PYSITELIB}/explorer/assistant/prompts.py
-${PYSITELIB}/explorer/assistant/prompts.pyc
-${PYSITELIB}/explorer/assistant/prompts.pyo
 ${PYSITELIB}/explorer/assistant/tests.py
 ${PYSITELIB}/explorer/assistant/tests.pyc
 ${PYSITELIB}/explorer/assistant/tests.pyo
@@ -99,6 +96,9 @@ ${PYSITELIB}/explorer/migrations/0014_pr
 ${PYSITELIB}/explorer/migrations/0015_explorervalue.py
 ${PYSITELIB}/explorer/migrations/0015_explorervalue.pyc
 ${PYSITELIB}/explorer/migrations/0015_explorervalue.pyo
+${PYSITELIB}/explorer/migrations/0016_alter_explorervalue_key.py
+${PYSITELIB}/explorer/migrations/0016_alter_explorervalue_key.pyc
+${PYSITELIB}/explorer/migrations/0016_alter_explorervalue_key.pyo
 ${PYSITELIB}/explorer/migrations/__init__.py
 ${PYSITELIB}/explorer/migrations/__init__.pyc
 ${PYSITELIB}/explorer/migrations/__init__.pyo
@@ -121,6 +121,7 @@ ${PYSITELIB}/explorer/src/js/pivot-setup
 ${PYSITELIB}/explorer/src/js/pivot.js
 ${PYSITELIB}/explorer/src/js/query-list.js
 ${PYSITELIB}/explorer/src/js/schema.js
+${PYSITELIB}/explorer/src/js/schemaService.js
 ${PYSITELIB}/explorer/src/js/table-to-csv.js
 ${PYSITELIB}/explorer/src/scss/assistant.scss
 ${PYSITELIB}/explorer/src/scss/explorer.scss
@@ -129,13 +130,13 @@ ${PYSITELIB}/explorer/src/scss/styles.sc
 ${PYSITELIB}/explorer/src/scss/variables.scss
 ${PYSITELIB}/explorer/static/explorer/bootstrap-icons.woff
 ${PYSITELIB}/explorer/static/explorer/bootstrap-icons.woff2
-${PYSITELIB}/explorer/static/explorer/explorer.js
-${PYSITELIB}/explorer/static/explorer/favorites.js
-${PYSITELIB}/explorer/static/explorer/index.js
-${PYSITELIB}/explorer/static/explorer/main.js
-${PYSITELIB}/explorer/static/explorer/pivot-setup.js
-${PYSITELIB}/explorer/static/explorer/query-list.js
-${PYSITELIB}/explorer/static/explorer/schema.js
+${PYSITELIB}/explorer/static/explorer/explorer.4.3.js
+${PYSITELIB}/explorer/static/explorer/favorites.4.3.js
+${PYSITELIB}/explorer/static/explorer/index.4.3.js
+${PYSITELIB}/explorer/static/explorer/main.4.3.js
+${PYSITELIB}/explorer/static/explorer/pivot-setup.4.3.js
+${PYSITELIB}/explorer/static/explorer/query-list.4.3.js
+${PYSITELIB}/explorer/static/explorer/schema.4.3.js
 ${PYSITELIB}/explorer/static/explorer/styles.css
 ${PYSITELIB}/explorer/tasks.py
 ${PYSITELIB}/explorer/tasks.pyc

Index: pkgsrc/www/py-django-sql-explorer/distinfo
diff -u pkgsrc/www/py-django-sql-explorer/distinfo:1.8 pkgsrc/www/py-django-sql-explorer/distinfo:1.9
--- pkgsrc/www/py-django-sql-explorer/distinfo:1.8      Tue May  7 03:59:49 2024
+++ pkgsrc/www/py-django-sql-explorer/distinfo  Tue Jun  4 10:43:20 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/05/07 03:59:49 adam Exp $
+$NetBSD: distinfo,v 1.9 2024/06/04 10:43:20 adam Exp $
 
-BLAKE2s (django_sql_explorer-4.2.tar.gz) = c955c07d8fe02ce6a4da7bdc26d758eeeefbef64c9ac27a5051e7273dd4091ee
-SHA512 (django_sql_explorer-4.2.tar.gz) = 7a314afa4f9f39b220f74d84aaa644e5664a013a2b36dbfbeaed0124f851502f3285af2e0d1ed0aa60476d01341f6ccc1db7fc6f1258181335130e87ebdad4e4
-Size (django_sql_explorer-4.2.tar.gz) = 679697 bytes
+BLAKE2s (django_sql_explorer-4.3.tar.gz) = 09758c7c51438d98d3114d13f4f7658f08dc24472962ccfc78b44a125dc3dffc
+SHA512 (django_sql_explorer-4.3.tar.gz) = 16d599bbd0de71963de5d69077c1bebc35e8dcc8ac555c820aba1b4c3d81fee773a596be2f1ddf9dbbccc0ad75b24791f2730f1b2ec065e7476d024e5724d07a
+Size (django_sql_explorer-4.3.tar.gz) = 681672 bytes



Home | Main Index | Thread Index | Old Index