update changelog

This commit is contained in:
dfinke
2023-06-14 05:45:57 -04:00
parent 637c11c2e6
commit 77ec946b84

View File

@@ -1,7 +1,29 @@
# 7.8.5
- Added `Get-ExcelFileSchema` to get the schema of an Excel file.
- `Get-ExcelFileSchema -Path $xlfile`
- This was added to support interacting with `ChatGPT`. Passing the schema to the `ChatGPT` via `PowerShellAI` let's you ask questions about the data including generating code based on the schema.
```powershell
Get-ExcelFileSchema .\salesData.xlsx
```
```json
{
"ExcelFile": "salesData.xlsx",
"WorksheetName": "Sheet1",
"Visible": true,
"Rows": 10,
"Columns": 4,
"Address": "A1:D10",
"Path": ".",
"PropertyNames": [
"Region",
"State",
"Units",
"Price"
]
}
```
# 7.8.x