typeorm-model-generator/CHANGELOG.md

65 lines
2.1 KiB
Markdown
Raw Normal View History

2018-06-17 19:30:54 +00:00
# Changelog
2019-04-01 20:04:20 +00:00
## 0.3.3
2019-04-01 12:16:05 +00:00
* added bit type support for mysql/mariadb
2019-04-01 20:04:20 +00:00
* fixed generation of relations with only onUpdate defined(#139)
2019-04-01 12:16:05 +00:00
2019-03-15 12:30:15 +00:00
## 0.3.2
* added option to generate models based on multiple databases(#144)
* fixed generation of ManyToMany relations on junction tables with custom names(#151)
2019-03-09 21:22:07 +00:00
* fixed problems with mysql 8
* fixed shadowed variables tslint errors(#141)
* fixed order of generated columns
* mariadb default value comatibility changes(#153)
2019-02-09 21:54:23 +00:00
## 0.3.1
* Fixed npx ussage(#146)
2019-02-07 18:05:10 +00:00
# 0.3.0
* Wizard mode - you can now run model generation without passing any parameters and provide them step by step. It also allows you to save provided informations for future use
* generated columns no longer contains options which are set by default in typeorm
* added support for VARBINARY type on MySQL, MariaDb
* fixed issue with case convertion and @RetlationId fields
* a lot of internal work
2019-01-06 16:18:21 +00:00
## 0.2.25
* fixed naming strategy changing entity name in db
* fixed proper relation generation when unique index have more columns
2018-12-30 22:39:13 +00:00
## 0.2.24
2019-01-06 16:18:21 +00:00
* fixed generation of default values
* fixed generation of duplicate relations for mysql
2018-12-30 22:39:13 +00:00
* added option for generating entities for AciveRecord pattern
## 0.2.23
* added column type to generated `@PrimaryGeneratedColumn` decorator
2018-12-16 20:09:13 +00:00
* allow to define property visibility, by using --pv
2019-01-06 16:18:21 +00:00
* fixed some problems with duplicated relationships on mysql database
2018-10-01 21:06:50 +00:00
## 0.2.22
* fixed naming stategy for guid ended column names
* fixed column names case convertion in index declarations
2018-09-02 14:01:57 +00:00
## 0.2.21
* primary keys using identity/sequence are now generated with `@PrimaryGeneratedColumn` decorator [#96](https://github.com/Kononnable/typeorm-model-generator/issues/96)
2018-08-26 17:05:36 +00:00
## 0.2.20
* relation onUpdate fixes
* postgres support for citext, hstore, geometry, array column types
* upgraded typeorm version
2018-07-31 20:29:15 +00:00
## 0.2.19
* custom naming strategy fiexes
* dependencies update
2018-06-19 21:45:06 +00:00
## 0.2.18
* oracle output format fixed
2018-06-17 19:30:54 +00:00
## 0.2.17
* added support for relationId fields
* added support for custom naming entity fields
* removed oracledb from dependencies
* generating nullable column types for nullable columns