Releases: blakeembrey/sql-template-tag
Releases · blakeembrey/sql-template-tag
Documentation: Native OracleDB support
Added
- Document native support for OracleDB (#41) thanks to @PhilippSalvisberg and oracle/node-oracledb#1629
Fixed
OracleDB support
Bulk method and readonly input types
Set `Value` type to `unknown`
Performance improvements
Improved performance across the main use-cases:
- Constructor shows 4% improvement
sql
method shows 14% improvementtext
method shows 4% improvement
These are pretty minor adjustments so feel free to test it on your OS and JS configurations to confirm whether these changes help.
Allow `Date` as value type
ES Module
Remove `util` dependency
Use Plain Template Strings
In the initial release I used raw strings, but this creates confusion and bugs on how the string should be interpreted, preferring to use the plain JS strings instead (more info at #11).
Performance Improvements
Fixed
- 3x faster, 4x less memory overhead
Changed
- Removed access to
raw*
properties (previously protected properties)