Releases: sql-formatter-org/sql-formatter
Releases · sql-formatter-org/sql-formatter
15.3.1
15.3.0
15.2.0
Larger change in PostgreSQL keywordCase handling
- Removed almost all of PostgreSQL non-reserved keywords #709
The keywords list that's used for uppercasing keywords is now much smaller.
This will lead to some keywords not being uppercased any more.
But it will eliminate several cases where table and column names were detected as keywords and uppercased.
15.1.3
15.1.2
15.1.1
15.1.0
New features
- Add support for disable/enable comments to turn off formatting for sections of SQL file #703
- Allow passing inline JSON config object from command line (e.g.
--config '{"keywordCase": "upper"}'
) #701
Bugfixes
15.0.2
15.0.1
15.0.0
Breaking changes
- The
keywordCase
option no more applies to data types. - The
identifierCase
option no more applies to function names. - New formatting style of
CREATE TABLE
(#495) Thanks to Timon Jurschitsch - New formatting style of
CREATE VIEW
- When using custom dialects:
TokenizerOptions
has new mandatoryreservedDataType
field.
New features
- Added
functionCase
option (#237) Thanks to Karl Horky - Added
dataTypeCase
option (#653) Thanks to Karl Horky