version bump

This commit is contained in:
Umed Khudoiberdiev 2022-03-23 01:33:11 +05:00
parent 35106dfe78
commit f010205e46
2 changed files with 16 additions and 8 deletions

View File

@ -1,3 +1,18 @@
## [0.3.2](https://github.com/typeorm/typeorm/compare/0.3.1...0.3.2) (2022-03-22)
### Bug Fixes
* broken CLI in ESM projects since version 0.3.0 ([#8773](https://github.com/typeorm/typeorm/issues/8773)) ([97699e8](https://github.com/typeorm/typeorm/commit/97699e816e03867efe595f620ceb152af91f9f56))
### Features
* add typeorm CLI variations that include `ts-node` ([#8776](https://github.com/typeorm/typeorm/issues/8776)) ([05fc744](https://github.com/typeorm/typeorm/commit/05fc74446988d100052f46e2dbf61c6cc2999b99))
* allows user to specify which mysql package should be used ([#8771](https://github.com/typeorm/typeorm/issues/8771)) ([35106df](https://github.com/typeorm/typeorm/commit/35106dfe78a92783abca7d06307ab9106ae536bc))
### Reverts
* json/jsonb change introduced in 0.3.1 ([#8777](https://github.com/typeorm/typeorm/issues/8777)) ([edf27d9](https://github.com/typeorm/typeorm/commit/edf27d97a30d1aaf28e5c7a7aab96d16152e4983))
## [0.3.1](https://github.com/typeorm/typeorm/compare/0.3.0...0.3.1) (2022-03-21)
### Bug Fixes
@ -442,13 +457,6 @@ This change was required to simplify ORM internals and introduce new features.
* issue with non-reliable `new Date(ISOString)` parsing ([#7796](https://github.com/typeorm/typeorm/pull/7796))
* true JSON / JSONB support - manual `JSON.stringify` was removed,
instead object handled by underlying driver. This opens ability to properly work with json/jsonb structures,
but brings few breaking changes:
* `array: true` must be explicitly defined for array json/jsonb values
* strings being JSON-stringified must be manually escaped
### DEPRECATIONS
* all CLI commands do not support `ormconfig` anymore. You must specify a file with data source instance instead.

View File

@ -1,7 +1,7 @@
{
"name": "typeorm",
"private": true,
"version": "0.3.1",
"version": "0.3.2",
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.",
"license": "MIT",
"readmeFilename": "README.md",