All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
4.1.1 (2024-11-19)
- fix alter last column (023eb4c)
- fix alter last column (Merge pull request #98 from duartealexf/staging) (7f24844)
4.1.0 (2023-07-07)
- add support for nvarchar mysql datatype (7697b5c)
- add support for uuid and uniqueidentifier types (d8c4cc5)
4.0.10 (2023-05-30)
4.0.9 (2023-02-13)
4.0.8 (2022-10-29)
4.0.7 (2022-09-16)
- add binary collation support (a89e50f)
4.0.6 (2021-11-13)
4.0.5 (2021-11-13)
4.0.4 (2020-09-02)
- Fix the problem that ?? operator doesn't work in typescript (merge PR #60) - thank you aihpoSSophia!
4.0.3 (2020-07-19)
- Add Node 14 to engines and CI tests
4.0.2 (2020-07-19)
- Vulnerability fixes
4.0.1 (2020-03-23)
- Fix package release build.
4.0.0 (2020-03-22)
- Removed
toJSONSchemaFiles
method from parser, as it caused build issues in Angular. - Changed export to named export (non-default). Now to import it, use braces, as in
import { Parser } from 'sql-ddl-to-json-schema'
. - The parsed format does not contain null values anymore. Instead, the values that used to be null are not mentioned at all in parsed JSON format.
- Fix Angular compatibility. (29c640f), closes [#47]
- Add typing definitions.
3.1.3 (2020-03-11)
- Fix circular dependency warnings when building on Angular. (838ee63), co-authored-by: yanmengfei yanmengfei@inspur.com
3.1.2 (2019-05-05)
- Fix unsigned in JSON Schema output. (10a430f)
3.1.1 (2019-05-05)
3.1.0 (2019-04-07)
3.0.1 (2019-03-16)
3.0.0 (2019-01-13)
- Timestamp initialization with triggers now working (32bbf7a)
- Add option to not use $ref in JSON Schema output. (713f1a1), closes #36
- Allow initialization of timestamp (5f37b57) (Thanks @umegaya for the PR!)
-
The
toJsonSchemaArray
method used to have only one argument: the tables array in compact JSON format. Now this array is the second argument to be passed to this method. The first argument refers to JSON Schema output options. Refer to the README for the list of options. -
For those who use the parsed format directly: foreign key reference had to be moved out of the O_COLUMN_DEFINITION rule, moving it out of column options. This had to be done because of grammar ambiguity when parsing "ON DELETE" or "ON UPDATE" clauses, as it conflicted with the foreign key triggers. It is still compliant with MySQL and MariaDB syntaxes. It will not affect the compact JSON format nor the JSON Schema format.
2.2.0 (2018-07-22)
- Add missing CHARSET alias. (367a14f), closes #28 #29
- Add NULL option as default column value. (22d65a9), closes #26
- Disabled foreign key checks. (78cddaf), closes #27
- Fix behavior of preparsing with escaping chars. (eb9aad8), closes #21
- Fix line count of parsing errors. (#30) (039ca75), closes #20
- Set INDEX_COLUMN length as optional, as per MariaDB and MySQL docs. (a94fe33), closes #24
- Add support for basic function statements as default column values. (218fd6c), closes #25
- Add support for SET statements. (bdfc327), closes #23
- Add support for SQL comments. (#33) (dfffb37), closes #22
2.1.0 (2018-07-08)
- Fix behavior when sending null arguments to parser. (46f6e46)
- Add validation to JSON Schema $id attribute when outputing to files. (32dd787)
- JSON Schema output (7655c2b)
2.0.6 (2018-07-01)
- Add default values of digits and decimals for fixed point datatype. (c7bffd7)
2.0.5 (2018-05-14)
- Add check to not add auto increment without being a primary key. (fed92cd)
- Add rename of fk references on table rename. (060a0e1)
2.0.4 (2018-05-13)
2.0.3 (2018-05-13)
- Set max version of node to 9. (7e7d25d)
2.0.2 (2018-05-13)
- Fix build for node 9 and code linting. (b4c1cc5)
2.0.1 (2018-05-13)
- Add rename of column references when renaming column. (f9db921), closes #9
- Skip copying of foreign keys in MySQL CREATE TABLE LIKE statement. (1e0d2db)
2.0.0 (2018-03-31)
- Add checks to not have two columns with autoincrement. (ddcbb6c)
- Add foreign key check when dropping a column. (ffa9936), closes #12
- Add foreign key check when dropping tables. (ac5d2bc)
- Bugfix on RENAME TABLE rule compact formatter. (b614b82)
- Changed to ALTER TABLE ADD COLUMN having REFERENCES does not add FK. (36a02d0), closes #16
- Fixed so it does not drop the last column of a table. (828ce79)
- Removed 'symbol' property from indexes and keys. (c1b1f60), closes #14 #15
- Ambiguous and confusing 'symbol' property from indexes and keys was removed from compact JSON format. Through tests it is noticed that MySQL and MariaDB don't seem to use them.
1.2.0 (2018-03-23)
- Bug fix in Index.clone method. (8a11ed6)
1.1.0 (2018-03-20)
- parser: Add Parser.toCompactJson with no arguments, taking parsed SQL. (b4f713c)
1.0.2 (2018-03-20)
- Fix build by adding moo as dependency. (717e2be)
1.0.1 (2018-03-20)
- Changed .npmignore and .gitignore. (e52e238)
- rule: Fix last implementation of keyword-as-identifier. (c9a6ab6)
- Add commitizen path. (e7af802)
- rule: Fix keyword-as-identifier rule. (94e97ad)
- Added SCHEMA as synonym for DATABASE. (a523cea)
- Correct CREATE INDEX test name. (cf1e5a4)
- Fix ambiguous interpretation of a FULLTEXT/SPATIAL INDEX/KEY. (7f7d828)
- Fix apparent infinite loop on parsing rules. (de6c1cd)
- Fix missing scripts and missing utils.js file. (d4f53fd)
- Fix several bugs, order of keywords and tests. (22b50ed)
- datatype: Add width of INT datatype. (70cbab2)
- Fix support for multiple statements. (235f55b)
- Fix syntax of datatypes and wip in CREATE TABLE statements. Add keywords. (da83fff)
- Fixed import in example file. (aa5b715)
- datatype: Correct returning values of datatypes. (d1017c6)
- datatype: Fix bug in fractional field in DATETIME. (93817e9)
- docs: Fix typo in README. (0b6f963)
- keyword: Fix word boundary issues with keywords. Fix tests. (1d71ff0)
- scripts: Fix typo in example script. (42d98a8)
- Add assembly of .ne files into a single one. (463e9c4)
- Add ALTER DATABASE statement. (9e4f660)
- Add ALTER TABLE add column, fulltext, spatial, index, primary and unique. (5081490)
- Add ALTER TABLE foreign key options. (5c73430)
- Add CREATE DATABASE statement parser. (ed85709)
- Add CREATE INDEX. (a21b50b)
- Add CREATE TABLE LIKE statement. (cdeccfd)
- Add CREATE TABLE options, still not parsing though. (3dd4e97)
- Add CREATE TABLE statement table options. (6f139cd)
- Add DROP DATABASE statement. (e2f2e28)
- Add DROP INDEX statement. (2bf5898)
- Add DROP TABLE statement. (ccab54c)
- Add FOREIGN KEY support. (6c37aa2)
- Add FULLTEXT and SPATIAL index support. (9663354)
- Add new ALTER TABLE statements. (80e2340)
- Add new features in CREATE TABLE statement. (58f1c16)
- Add PRIMARY KEY, INDEX and KEY column definitions. (54ca115)
- Add remaining ALTER TABLE statements. (f685d72)
- rule: Add more options to CREATE TABLE parse. (c8f94bc)
- Add RENAME TABLE statement. (07878fb)
- datatype: Add support for datatype. (76cd373)
- Add UNIQUE key / index table definition. (d2366a7)
- keyword: Add all keywords and reserved words from MySQL docs. (83b38f1)
- keyword: Add CURRENT_TIMESTAMP option as a default value. (5c080ba)
- keywords: Add function names to keywords. (67b41a3)
- moo: Add moo and wip in code refactoring. (018f97c)
- Add working complex example of CREATE TABLE. (ce4538e)
- Added MariaDB compatibility to MySQL parser. (6c4ae0a)
- symbols: Add new symbols. (f46ffdb)
- Added preparser to separate statements, improving performance. (3895c86)
- Removed unused keywords and symbols to improve performance. (8865f45)
- Create and alter table statements with key definitions had format changed, as Index and Key were treated differently. Since they are synonyms, some rules were grouped together and some were split in two.
- rule: All %S_IDENTIFIER were changed to S_IDENTIFIER (no percent sign).
- Changed Utils to class with static methods. Add utils to .ne files to make methods available.
- Assembly of .ne files by concatenating into one, to prevent circular dependency. Improved directory structure and README documentation on Contributing section.
- datatype: Support for datatypes changed the structure of the resulting struct, having default 'type' and 'def' fields. The former defines the name of what was parsed (the T_xxx, P_xxx, etc), while the latter has custom configurations according to the context. Tests are changed to support this new structure.