From 3368d16452308e0cc5b2660bb379e98cf019518b Mon Sep 17 00:00:00 2001 From: Jirka B Date: Tue, 14 Nov 2023 20:11:02 +0100 Subject: [PATCH] releasing v2.1.2 --- src/lightning/app/CHANGELOG.md | 15 +++++------- src/lightning/data/CHANGELOG.md | 37 +++++++++++++++++------------- src/lightning/fabric/CHANGELOG.md | 9 ++------ src/lightning/pytorch/CHANGELOG.md | 17 ++++---------- src/version.info | 2 +- 5 files changed, 34 insertions(+), 46 deletions(-) diff --git a/src/lightning/app/CHANGELOG.md b/src/lightning/app/CHANGELOG.md index fa96891c2cf1e..b8ecfb49c39cc 100644 --- a/src/lightning/app/CHANGELOG.md +++ b/src/lightning/app/CHANGELOG.md @@ -5,16 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [UnReleased] - 2023-11-DD +## [2.1.2] - 2023-11-15 -### Added - -- - - -### Fixed +### Changed -- +- Forced plugin server to use localhost ([#18976](https://github.com/Lightning-AI/lightning/pull/18976)) +- Enabled bundling additional files into app source ([#18980](https://github.com/Lightning-AI/lightning/pull/18980)) +- Limited rate of requests to http queue ([#18981](https://github.com/Lightning-AI/lightning/pull/18981)) ## [2.1.1] - 2023-11-06 @@ -25,7 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed -- Fix failing lightning cli entry point ([#18821](https://github.com/Lightning-AI/lightning/pull/18821)) +- Fixed failing lightning cli entry point ([#18821](https://github.com/Lightning-AI/lightning/pull/18821)) ## [2.1.0] - 2023-10-11 diff --git a/src/lightning/data/CHANGELOG.md b/src/lightning/data/CHANGELOG.md index 0d3eddd9836c1..d6741fe041e97 100644 --- a/src/lightning/data/CHANGELOG.md +++ b/src/lightning/data/CHANGELOG.md @@ -5,37 +5,42 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [UnReleased] - 2023-11-DD +## [2.1.2] - 2023-11-15 ### Added -- +- Created cache dir if it doesn't exist ([#18955](https://github.com/Lightning-AI/lightning/pull/18955)) +- Cached directory per worker to avoid collisions ([#18957](https://github.com/Lightning-AI/lightning/pull/18957)) +- Added the input_dir in the cache_dir to avoid overlapping downloads ([#18960](https://github.com/Lightning-AI/lightning/pull/18960)) +- Added support for deleting chunks ([#18959](https://github.com/Lightning-AI/lightning/pull/18959)) +- Added Video/Audio support ([#18977](https://github.com/Lightning-AI/lightning/pull/18977)) +- Added multiple uploaders to the map, optimize ([#18989](https://github.com/Lightning-AI/lightning/pull/18989)) +### Changed -### Fixed - -- +- Greedily select files for data processor workers based on size ([#18907](https://github.com/Lightning-AI/lightning/pull/18907)) +- Prevented downloading more chunks than needed ([#18964](https://github.com/Lightning-AI/lightning/pull/18964)) ## [2.1.1] - 2023-11-06 ### Added -- Add name and version ([#18796](https://github.com/Lightning-AI/lightning/pull/18796)) -- Add support for text ([#18807](https://github.com/Lightning-AI/lightning/pull/18807)) -- Introduce Dataset Optimizer ( +- Added name and version ([#18796](https://github.com/Lightning-AI/lightning/pull/18796)) +- Added support for text ([#18807](https://github.com/Lightning-AI/lightning/pull/18807)) +- Introduced Dataset Optimizer ( [#18788](https://github.com/Lightning-AI/lightning/pull/18788), [#18817](https://github.com/Lightning-AI/lightning/pull/18817), [#18827](https://github.com/Lightning-AI/lightning/pull/18827)) -- Add distributed support for StreamingDataset ([#18850](https://github.com/Lightning-AI/lightning/pull/18850)) -- Add broadcast to Dataset Optimizer with multiple nodes ([#18860](https://github.com/Lightning-AI/lightning/pull/18860)) -- Improve Streaming Dataset API ([#18882](https://github.com/Lightning-AI/lightning/pull/18882)) +- Added distributed support for StreamingDataset ([#18850](https://github.com/Lightning-AI/lightning/pull/18850)) +- Added broadcast to Dataset Optimizer with multiple nodes ([#18860](https://github.com/Lightning-AI/lightning/pull/18860)) +- Improved Streaming Dataset API ([#18882](https://github.com/Lightning-AI/lightning/pull/18882)) - Prevent leaking the thread to the workers ([#18891](https://github.com/Lightning-AI/lightning/pull/18891)) -- Add DataRecipe ([#18892](https://github.com/Lightning-AI/lightning/pull/18892)) -- Improve map and chunkify ([#18901](https://github.com/Lightning-AI/lightning/pull/18901)) -- Add human readable format for chunk_bytes ([#18925](https://github.com/Lightning-AI/lightning/pull/18925)) -- Improve s3 client support ([#18920](https://github.com/Lightning-AI/lightning/pull/18920)) -- Add dataset creation ([#18940](https://github.com/Lightning-AI/lightning/pull/18940)) +- Added DataRecipe ([#18892](https://github.com/Lightning-AI/lightning/pull/18892)) +- Improved map and chunkify ([#18901](https://github.com/Lightning-AI/lightning/pull/18901)) +- Added human readable format for chunk_bytes ([#18925](https://github.com/Lightning-AI/lightning/pull/18925)) +- Improved s3 client support ([#18920](https://github.com/Lightning-AI/lightning/pull/18920)) +- Added dataset creation ([#18940](https://github.com/Lightning-AI/lightning/pull/18940)) ## [2.1.0] - 2023-10-11 diff --git a/src/lightning/fabric/CHANGELOG.md b/src/lightning/fabric/CHANGELOG.md index 307952e6b0efa..2c6c5126f68c7 100644 --- a/src/lightning/fabric/CHANGELOG.md +++ b/src/lightning/fabric/CHANGELOG.md @@ -5,16 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [UnReleased] - 2023-11-DD - -### Changed - -- - +## [2.1.2] - 2023-11-15 ### Fixed -- +- Fixed precision default from environment ([#18928](https://github.com/Lightning-AI/lightning/pull/18928)) ## [2.1.1] - 2023-11-06 diff --git a/src/lightning/pytorch/CHANGELOG.md b/src/lightning/pytorch/CHANGELOG.md index a04481b5eddf9..a1d47689bf14c 100644 --- a/src/lightning/pytorch/CHANGELOG.md +++ b/src/lightning/pytorch/CHANGELOG.md @@ -5,16 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [UnReleased] - 2023-11-DD - -### Changed - -- - +## [2.1.2] - 2023-11-15 ### Fixed -- +- Fixed an issue causing permission errors on Windows when attempting to create a symlink for the "last" checkpoint ([#18942](https://github.com/Lightning-AI/lightning/issues/18942)) +- Fixed an issue where Metric instances from `torchmetrics` wouldn't get moved to the device when using FSDP ([#18954](https://github.com/Lightning-AI/lightning/issues/18954)) +- Fixed an issue preventing the user to `Trainer.save_checkpoint()` an FSDP model when `Trainer.test/validate/predict()` ran after `Trainer.fit()` ([#18992](https://github.com/Lightning-AI/lightning/issues/18992)) ## [2.1.1] - 2023-11-06 @@ -27,12 +24,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed an issue parsing the version from folders that don't include a version number in `TensorBoardLogger` and `CSVLogger` ([#18897](https://github.com/Lightning-AI/lightning/issues/18897)) -- Fixed an issue causing permission errors on Windows when attempting to create a symlink for the "last" checkpoint ([#18942](https://github.com/Lightning-AI/lightning/issues/18942)) - - -- Fixed an issue where Metric instances from `torchmetrics` wouldn't get moved to the device when using FSDP ([#18954](https://github.com/Lightning-AI/lightning/issues/18954)) - - ## [2.1.0] - 2023-10-11 ### Added diff --git a/src/version.info b/src/version.info index 3e3c2f1e5edb0..eca07e4c1a8cb 100644 --- a/src/version.info +++ b/src/version.info @@ -1 +1 @@ -2.1.1 +2.1.2