From 5eb509b23125e425fa1b941de1463b6e47a470cb Mon Sep 17 00:00:00 2001 From: Chris Clark Date: Thu, 15 Aug 2024 09:23:10 -0400 Subject: [PATCH] prep 5.2b1 (#663) --- HISTORY.rst | 18 ++++++++++++++++++ explorer/__init__.py | 8 ++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 65ed98a9..8f6b1846 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,20 @@ Change Log This document records all notable changes to `SQL Explorer `_. This project adheres to `Semantic Versioning `_. +`5.2b1`_ (2024-08-14) +=========================== +* `#651`_: Ability to append an upload to a previously uploaded file/sqlite DB as a new table + + * Good cache busting and detection of file changes on uploads + * Significant documentation improvements to uploads and connections + * Separate the upload UI from the 'add connection' UI, as they are materially different + * Fix a small bug with bar chart generation, when values are null + * Ability to refresh a connection's schema and data (if it's an upload) from the connections list view + +* `#659`_: Search all queries, even if the header is collapsed. Addresses issue #464 (partially) and #658 (fully). +* `#662`_: Refactored dockerfile to use non-root directories. Addresses issue #661. + + `5.1.1`_ (2024-07-30) =========================== * `#654`_: Bugfix: Parameterized query does not work for viewers @@ -528,6 +542,7 @@ Initial Release .. _5.0.2: https://github.com/explorerhq/sql-explorer/compare/5.0.1...5.0.2 .. _5.1.0: https://github.com/explorerhq/sql-explorer/compare/5.0.2...5.1.0 .. _5.1.1: https://github.com/explorerhq/sql-explorer/compare/5.1.0...5.1.1 +.. _5.2b1: https://github.com/explorerhq/sql-explorer/compare/5.1.1...5.2b1 .. _#254: https://github.com/explorerhq/sql-explorer/pull/254 @@ -615,6 +630,9 @@ Initial Release .. _#635: https://github.com/explorerhq/sql-explorer/pull/635 .. _#636: https://github.com/explorerhq/sql-explorer/pull/636 .. _#555: https://github.com/explorerhq/sql-explorer/pull/555 +.. _#651: https://github.com/explorerhq/sql-explorer/pull/651 +.. _#659: https://github.com/explorerhq/sql-explorer/pull/659 +.. _#662: https://github.com/explorerhq/sql-explorer/pull/662 .. _#269: https://github.com/explorerhq/sql-explorer/issues/269 .. _#288: https://github.com/explorerhq/sql-explorer/issues/288 diff --git a/explorer/__init__.py b/explorer/__init__.py index ceb5cf5f..47baa5f4 100644 --- a/explorer/__init__.py +++ b/explorer/__init__.py @@ -1,9 +1,9 @@ __version_info__ = { "major": 5, - "minor": 1, - "patch": 1, - "releaselevel": "final", - "serial": 0 + "minor": 2, + "patch": 0, + "releaselevel": "beta", + "serial": 1 }