For users currently using v0.8, consider the following:
- Spark connect is now fully supported. For this to work we've had to introduce several replacement types for pyspark such as DataFrame (i.e. `pyspark.sql.DataFrame` vs `pyspark.sql.connect.DataFrame`) as well as the SparkSession. If you are using custom Step logic in which you reference spark types, take these types from the `koheesio.spark` module instead. This will allow you to use pyspark connect with your custom code also.
- Snowflake was extensively reworked.
- To be able to use snowflake, a new `extra` / `feature` was added to the `pyproject.toml` - install this using `koheesio[snowflake]` in order to have access to snowflake python
- Code for snowflake support was moved to new primary modules:
- `koheesio.integrations.spark.snowflake` hosts all spark related snowflake code
- `koheesio.integrations.snowflake` hosts the non-spark / pure-python implementations
- The original API was kept in place through pass-through imports; no immediate code changes should be needed
**Full Changelog**: https://github.com/Nike-Inc/koheesio/compare/koheesio-v0.8.1...koheesio-v0.9.0