1- ## Databricks Labs Data Generator Release Notes
1+ # Databricks Labs Data Generator Release Notes
22
3- ### Requirements
3+ ## Change History
4+ All notable changes to the Databricks Labs Data Generator will be documented in this file.
45
5- See the contents of the file ` python/require.txt ` to see the Python package dependencies
6+ ### Unreleased
7+
8+ #### Changed
9+ * Refactoring of template text generation for better performance
10+
11+ #### Added
12+ * Ability to change name of seed column to custom name (defaults to ` id ` )
13+
14+ ### Version 0.3.0
15+
16+ #### Changes
17+ * Validation for use in Delta Live Tables
18+ * Documentation updates
19+ * Minor bug fixes
20+ * Changes to build and release process to improve performance
21+ * Modified dependencies to base release on package versions used by Databricks Runtime 9.1 LTS
22+ * Updated to Spark 3.2.1 or later
23+ * Unit test updates - migration from ` unittest ` to ` pytest ` for many tests
624
725### Version 0.2.1
826
@@ -27,7 +45,10 @@ See the contents of the file `python/require.txt` to see the Python package depe
2745* Use of data generator to generate static and streaming data sources in Databricks Delta Live Tables
2846* added support for install from PyPi
2947
30- ### version 0.3.0
48+
49+ ### General Requirements
50+
51+ See the contents of the file ` python/require.txt ` to see the Python package dependencies
3152
3253The code for the Databricks Data Generator has the following dependencies
3354
@@ -39,14 +60,21 @@ While the data generator framework does not require all libraries used by the ru
3960the Databricks runtime is used, it will use the version found in the Databricks runtime for 9.1 LTS or later.
4061You can use older versions of the Databricks Labs Data Generator by referring to that explicit version.
4162
63+ The recommended method to install the package is to use ` pip install ` in your notebook to install the package from
64+ PyPi
65+
66+ For example:
67+
68+ ` %pip install dbldatagen `
69+
4270To use an older DB runtime version in your notebook, you can use the following code in your notebook:
4371
4472``` commandline
4573%pip install git+https://github.com/databrickslabs/dbldatagen@dbr_7_3_LTS_compat
4674```
4775
4876See the [ Databricks runtime release notes] ( https://docs.databricks.com/release-notes/runtime/releases.html )
49- for the full list of dependencies.
77+ for the full list of dependencies used by the Databricks runtime .
5078
5179This can be found at : https://docs.databricks.com/release-notes/runtime/releases.html
5280
0 commit comments