|
1 | 1 | # Version changelog |
2 | 2 |
|
| 3 | +## 0.10.8 |
| 4 | + |
| 5 | +## Transpilers |
| 6 | + |
| 7 | +## General |
| 8 | +- **SQL Validation Enhancement**: Improved SQL validator to check only SQL outputs with enhanced error handling and support for various transpile results ([#1949](https://github.com/databrickslabs/lakebridge/issues/1949)) |
| 9 | +- **Error Handling Improvements**: Added static error lookups for specific cases like unresolved routines and columns, with more readable exception messages |
| 10 | +- **MIME Support**: New functionality to support both MIME and non-MIME transpile results, including validation and output file management |
| 11 | +- **LSP Server Integration**: Log level now passed to Language Server Protocol (LSP) server via environment variable for greater flexibility ([#1967](https://github.com/databrickslabs/lakebridge/issues/1967)) |
| 12 | +- **Transpiler Auto-Upgrade**: Enhanced installer to automatically upgrade existing Lakebridge transpilers during CLI upgrade process ([#1978](https://github.com/databrickslabs/lakebridge/issues/1978)) |
| 13 | +- **Source Dialect Handling**: Fixed missing transpile source dialect handling to ensure correct assignment in configuration objects ([#1985](https://github.com/databrickslabs/lakebridge/issues/1985)) |
| 14 | + |
| 15 | + |
| 16 | +## Morpheus |
| 17 | +- **Enhanced Snowflake Conversion support**: |
| 18 | + - Support for parsing ILIKE, EXCLUDE, REPLACE, RENAME with * LHS |
| 19 | + - Full support for EXCLUDE and RENAME clauses and all combinations |
| 20 | + - Fixed REPLACE function with optional third argument |
| 21 | + - Enhanced OBJECT_DELETE to accept 2 or more arguments |
| 22 | + - Accurate translation of Snowflake's REGEXP_REPLACE |
| 23 | + |
| 24 | +- **Parser Improvements**: |
| 25 | + - Allow lists of generic options with optional commas |
| 26 | + - EXTERNAL can now be used as an ID despite being documented as reserved |
| 27 | + - Support for DROP RULE syntax in TSQL |
| 28 | + - Allow DBT Jinja macros within JSON literals |
| 29 | + - Fixed bugs around DBT elseif and comment nodes |
| 30 | + |
| 31 | +- **Error Handling**: Upgraded SimpleError with support status and simplified user-facing parse error messages |
| 32 | +- **Integration Alignment**: Updated error handling to align with BladeBridge, now returning `UNRESOLVED_ROUTINE` errors consistently ([#1998](https://github.com/databrickslabs/lakebridge/issues/1998)) |
| 33 | + |
| 34 | + |
| 35 | +## BladeBridge |
| 36 | +- **XML Source Processing**: |
| 37 | + - Automatic detection of XML sources with proper encoding preservation |
| 38 | + - Maintains UTF-8 encoding while respecting XML-specific encoding declarations |
| 39 | + - Prevents XML parser failures from encoding mismatches |
| 40 | + |
| 41 | +- **SQL Scripting Enhancements**: |
| 42 | + - Fixed nested comment handling in SQL scripts |
| 43 | + - Improved custom configuration handling for first-match processing |
| 44 | + - Removed unnecessary begin/end enclosures in pre/post SQL blocks |
| 45 | + |
| 46 | +- **Teradata Updates**: |
| 47 | + - Enhanced `convert_update_to_merge` functionality |
| 48 | + - Replaced list partitioning with `CLUSTER BY` statements |
| 49 | + - Removed unsupported `CREATE INDEX` and `ALTER INDEX` statements |
| 50 | + - Fixed `CREATE PROCEDURE` signature generation with proper exception handling |
| 51 | + |
| 52 | +- **DataStage Updates**: |
| 53 | + - Added support for `TRUNCATE TABLE` specifications ([#1903](https://github.com/databrickslabs/lakebridge/issues/1903)) |
| 54 | + - Fixed column name handling when dataframe columns match job parameters |
| 55 | + - Enabled single-pass processing of shared containers |
| 56 | + - Resolved dataset component path issues for proper PySpark code generation |
| 57 | + |
| 58 | + |
| 59 | +## Reconcile |
| 60 | + |
| 61 | +- **Schema Normalization**: Added feature flag for identifier normalization with optional `normalize` parameter in `get_schema` method for flexible handling of different data source configurations ([#1953](https://github.com/databrickslabs/lakebridge/issues/1953)) |
| 62 | + |
| 63 | +**Enhanced Connection Support** |
| 64 | +- **Snowflake Security**: Added support for encrypted PEM private keys with `pem_private_key_password` field for secure authentication ([#1869](https://github.com/databrickslabs/lakebridge/issues/1869)) |
| 65 | +- **JDBC URL Handling**: Improved JDBC URL arguments handling with enhanced error handling and logging |
| 66 | +- **Connection Properties**: Enhanced SecretsMixin class with new `_get_secret_or_none` method for better secret value retrieval |
| 67 | +- **Error Handling**: Introduced new exceptions like `InvalidSnowflakePemPrivateKey` for better error management |
| 68 | + |
| 69 | + |
| 70 | +## Documentation |
| 71 | + |
| 72 | +**Comprehensive Documentation Updates** |
| 73 | +- **MS SQL and Synapse**: Enhanced documentation for reconcile connections including default secret naming conventions and required connection properties ([#1954](https://github.com/databrickslabs/lakebridge/issues/1954)) |
| 74 | +- **Connection Configuration**: Added clear YAML format examples for MS SQL connection properties covering user, password, host, port, database, encryption, and trust server certificate |
| 75 | +- **BladeBridge Updates**: Minor naming correction from "Microsoft MS SQL Server" to "Microsoft SQL Server" while maintaining support for Oracle, Teradata, Netezza, Informatica, and DataStage |
| 76 | +- **SQL Splitter**: Updated documentation to remove RCT references, relocated to main menu with revised terminology using "Lakebridge" consistently ([#1952](https://github.com/databrickslabs/lakebridge/issues/1952)) |
| 77 | +- **Transpiler Discovery**: Updated documentation for pluggable transpiler discovery and execution, introducing Morpheus and BladeBridge as Databricks-provided transpilers |
| 78 | +- **Installation Process**: Updated installation processes from Maven Central and PyPi with new directory structure for manual installations |
| 79 | + |
| 80 | + |
| 81 | +## General |
| 82 | + |
| 83 | +**Installation and Maintenance Improvements** |
| 84 | +- **Automated Upgrades**: Streamlined installation process with automatic transpiler upgrades during CLI upgrade, eliminating need for separate upgrade commands |
| 85 | +- **Plugin Management**: Improved installation process for plugins like Bladebridge and Morpheus |
| 86 | +- **Testing Enhancement**: Added comprehensive test functions to validate SQL file transpilation with various scenarios including table creation and error handling |
| 87 | + |
| 88 | + |
3 | 89 | ## 0.10.7 |
4 | 90 |
|
5 | 91 | ## Analyzer |
|
0 commit comments