From 8f676f28d0b23e9747a2df6565846394697b8210 Mon Sep 17 00:00:00 2001 From: Alok Saldanha Date: Mon, 1 Dec 2025 20:38:35 -0500 Subject: [PATCH] Prepare 0.4.1 release --- Changelog.md | 12 ++++++++++++ cellxgene_gateway/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index e4ef6b2..04ac907 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,15 @@ +# 0.4.1 + +* Fix UnicodeDecodeError when viewing compressed datasets +* Fix WSGI server initialization by extracting data source setup +* Fix AttributeError by storing ItemSource objects in default_item_source +* Delay itemsource initialization until first request is served +* Set default_item_source and start pruner thread +* Added start scripts for flask, gunicorn and uwsgi +* Made pruner a daemon thread +* Updated start scripts to run in subshells +* Fixed bug in status.json + # 0.4.0 * Removed dependency on flask-api diff --git a/cellxgene_gateway/__init__.py b/cellxgene_gateway/__init__.py index 9921755..22785aa 100644 --- a/cellxgene_gateway/__init__.py +++ b/cellxgene_gateway/__init__.py @@ -7,4 +7,4 @@ # OR CONDITIONS OF ANY KIND, either express or implied. See the License for # the specific language governing permissions and limitations under the License. -__version__ = "0.4.0" +__version__ = "0.4.1"