From 6bd038e8db8d63b5a0b3b9f767c8c593c90c42ca Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Mon, 30 Aug 2021 14:39:17 -0400 Subject: [PATCH 1/2] changelog for 1.5.5 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9742b8f2..2cb3cc53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.5] - 2021-08-30 + +### Added + +- You can now deploy FastAPI applications. This requires RStudio Connect release 2021.08.0 + or later. Use `rsconnect deploy fastapi` to deploy, or `rsconnect write-manifest fastapi` + to create a manifest file. +- In addition to FastAPI, you can also deploy Quart, Sanic, and Falcon ASGI applications. + +### Changed + +- rsconnect-python will now issue a warning during deployment if there isn't a requirements.txt + file in the deployment directory. Using a requirements file ensures consistency in the + environment that will be created by the RStudio Connect server during deployment. This helps avoid + unnecessary package installations and issues that can occur if rsconnect-python falls back + to inferring packages from the local Python environment. ## [1.5.4] - 2021-07-29 From b455335d80971bfaf80be3115a47c8c3a2313bcd Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Mon, 30 Aug 2021 14:41:02 -0400 Subject: [PATCH 2/2] changelog for release 1.6.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cb3cc53..3929f17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.5.5] - 2021-08-30 +## [1.6.0] - 2021-08-30 ### Added