Skip to content

Commit d3e9027

Browse files
authored
Release 0.19.3 (#3655)
* Bump version to 0.19.3 Signed-off-by: Ankita Katiyar <[email protected]> * Update citation.cff and release notes Signed-off-by: Ankita Katiyar <[email protected]> * Update citation Signed-off-by: Ankita Katiyar <[email protected]> * Update RELEASE.md Signed-off-by: Ankita Katiyar <[email protected]> --------- Signed-off-by: Ankita Katiyar <[email protected]> Signed-off-by: Ankita Katiyar <[email protected]>
1 parent bf9ddd2 commit d3e9027

File tree

5 files changed

+58
-4
lines changed

5 files changed

+58
-4
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ authors:
4949
- family-names: Zabłocki
5050
given-names: Marcin
5151
title: Kedro
52-
version: 0.19.2
53-
date-released: 2024-01-22
52+
version: 0.19.3
53+
date-released: 2024-02-27
5454
url: https://github.com/kedro-org/kedro

RELEASE.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
# Upcoming Release 0.19.4
2+
3+
## Major features and improvements
4+
5+
## Bug fixes and other changes
6+
7+
## Breaking changes to the API
8+
9+
## Documentation changes
10+
11+
## Community contributions
12+
13+
# Release 0.19.3
14+
15+
## Major features and improvements
16+
* Create the debugging line magic `%load_node` for Jupyter Notebook and Jupyter Lab.
17+
* Add better IPython, VSCode Notebook support for `%load_node` and minimal support for Databricks.
18+
* Add full Kedro Node input syntax for `%load_node`.
19+
20+
## Bug fixes and other changes
21+
* Updated CLI Command `kedro catalog resolve` to work with dataset factories that use `PartitionedDataset`.
22+
* Addressed arbitrary file write via archive extraction security vulnerability in micropackaging.
23+
* Added the `_EPHEMERAL` attribute to `AbstractDataset` and other Dataset classes that inherit from it.
24+
* Added new JSON Schema that works with Kedro versions 0.19.*
25+
26+
## Breaking changes to the API
27+
28+
## Documentation changes
29+
* Enable read-the-docs search when user presses Command/Ctrl + K.
30+
* Added documentation for `kedro-telemetry` and the data collected by it.
31+
32+
## Community contributions
33+
Many thanks to the following Kedroids for contributing PRs to this release:
34+
* [MosaicMan](https://github.com/MosaicMan)
35+
* [Fazil](https://github.com/lordsoffallen)
36+
37+
38+
# Release 0.19.2
39+
40+
## Bug fixes and other changes
41+
* Removed example pipeline requirements when examples are not selected in `tools`.
42+
* Allowed modern versions of JupyterLab and Jupyter Notebooks.
43+
* Removed setuptools dependency
44+
* Added `source_dir` explicitly in `pyproject.toml` for non-src layout project.
45+
* `MemoryDataset` entries are now included in free outputs.
46+
* Removed black dependency and replaced it functionality with `ruff format`.
47+
48+
## Breaking changes to the API
49+
* Added logging about not using async mode in `SequentiallRunner` and `ParallelRunner`.
50+
* Changed input format for tools option obtained from --config file from numbers to short names.
51+
52+
## Documentation changes
53+
154
# Upcoming Release 0.19.3
255

356
## Major features and improvements

docs/source/development/commands_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Returns output similar to the following, depending on the version of Kedro used
109109
| |/ / _ \/ _` | '__/ _ \
110110
| < __/ (_| | | | (_) |
111111
|_|\_\___|\__,_|_| \___/
112-
v0.19.2
112+
v0.19.3
113113
114114
Kedro is a Python framework for
115115
creating reproducible, maintainable

docs/source/robots.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
User-agent: *
22
Disallow: /
33
Allow: /en/stable/
4+
Allow: /en/0.19.3/
45
Allow: /en/0.19.2/
56
Allow: /en/0.19.1/
67
Allow: /en/0.19.0/

kedro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77
import warnings
88

9-
__version__ = "0.19.2"
9+
__version__ = "0.19.3"
1010

1111

1212
class KedroDeprecationWarning(DeprecationWarning):

0 commit comments

Comments
 (0)