Skip to content

Commit 5eb509b

Browse files
authored
prep 5.2b1 (#663)
1 parent 3183d5e commit 5eb509b

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

HISTORY.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ Change Log
55
This document records all notable changes to `SQL Explorer <https://github.com/explorerhq/sql-explorer>`_.
66
This project adheres to `Semantic Versioning <https://semver.org/>`_.
77

8+
`5.2b1`_ (2024-08-14)
9+
===========================
10+
* `#651`_: Ability to append an upload to a previously uploaded file/sqlite DB as a new table
11+
12+
* Good cache busting and detection of file changes on uploads
13+
* Significant documentation improvements to uploads and connections
14+
* Separate the upload UI from the 'add connection' UI, as they are materially different
15+
* Fix a small bug with bar chart generation, when values are null
16+
* Ability to refresh a connection's schema and data (if it's an upload) from the connections list view
17+
18+
* `#659`_: Search all queries, even if the header is collapsed. Addresses issue #464 (partially) and #658 (fully).
19+
* `#662`_: Refactored dockerfile to use non-root directories. Addresses issue #661.
20+
21+
822
`5.1.1`_ (2024-07-30)
923
===========================
1024
* `#654`_: Bugfix: Parameterized query does not work for viewers
@@ -528,6 +542,7 @@ Initial Release
528542
.. _5.0.2: https://github.com/explorerhq/sql-explorer/compare/5.0.1...5.0.2
529543
.. _5.1.0: https://github.com/explorerhq/sql-explorer/compare/5.0.2...5.1.0
530544
.. _5.1.1: https://github.com/explorerhq/sql-explorer/compare/5.1.0...5.1.1
545+
.. _5.2b1: https://github.com/explorerhq/sql-explorer/compare/5.1.1...5.2b1
531546

532547

533548
.. _#254: https://github.com/explorerhq/sql-explorer/pull/254
@@ -615,6 +630,9 @@ Initial Release
615630
.. _#635: https://github.com/explorerhq/sql-explorer/pull/635
616631
.. _#636: https://github.com/explorerhq/sql-explorer/pull/636
617632
.. _#555: https://github.com/explorerhq/sql-explorer/pull/555
633+
.. _#651: https://github.com/explorerhq/sql-explorer/pull/651
634+
.. _#659: https://github.com/explorerhq/sql-explorer/pull/659
635+
.. _#662: https://github.com/explorerhq/sql-explorer/pull/662
618636

619637
.. _#269: https://github.com/explorerhq/sql-explorer/issues/269
620638
.. _#288: https://github.com/explorerhq/sql-explorer/issues/288

explorer/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
__version_info__ = {
22
"major": 5,
3-
"minor": 1,
4-
"patch": 1,
5-
"releaselevel": "final",
6-
"serial": 0
3+
"minor": 2,
4+
"patch": 0,
5+
"releaselevel": "beta",
6+
"serial": 1
77
}
88

99

0 commit comments

Comments
 (0)