- `.sql` files are now supported by default, operating similarly to other file types supported by gusty.
- A `parse_hooks` parameter is now available in `create_dag` which allows users to share their own file parsing functions for any file type.
See a `.sql` file in action at the [gusty demo](https://github.com/chriscardillo/gusty-demo/blob/main/airflow/dags/stock_predictions/stocks_cleaned.sql) and take a look at [gusty's default parsers](https://github.com/chriscardillo/gusty/blob/main/gusty/parsing/parsers.py) to learn more about how to make your own.
`parse_hooks` accepts a dictionary similar to [the one gusty uses for its default parsers](https://github.com/chriscardillo/gusty/blob/baa43f24f3dfa22ece532000ea4d0a3523b074b0/gusty/parsing/__init__.py#L4-L11), and accepts the overriding of these default parsers (e.g. `.yml`, `.py`).
Happy pipelining!