mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
chore(changelog): 0.2.12 changelog + add Unreleased section
This commit is contained in:
parent
fdb8c33271
commit
da5ddff004
47
CHANGELOG.md
47
CHANGELOG.md
@ -5,13 +5,50 @@ however since API is already quite stable we don't expect too much breaking chan
|
||||
If we missed a note on some change or you have a questions on migrating from old version,
|
||||
feel free to ask us and community.
|
||||
|
||||
## 0.2.12
|
||||
## Unreleased
|
||||
|
||||
* fixed mongodb entity listeners and subscribers (#1527)
|
||||
* queries are simplified in `findByIds` and `whereInIds` for simple entities with single primary key
|
||||
### Bug Fixes
|
||||
|
||||
### Features
|
||||
|
||||
## 0.2.12 (2019-01-20)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fixed mongodb entity listeners and subscribers ([#1527](https://github.com/typeorm/typeorm/issues/1527))
|
||||
* fixed connection options builder - paramters parsed from url are assigned on top of options ([#3442](https://github.com/typeorm/typeorm/pull/3442))
|
||||
* fixed issue with logical operator precedence in `QueryBuilder` `whereInIds` ([#2103](https://github.com/typeorm/typeorm/issues/2103))
|
||||
* fixed missing `isolationLevel` in `Connection.transaction()` method ([#3363](https://github.com/typeorm/typeorm/issues/3363))
|
||||
* fixed broken findOne method with custom join column name
|
||||
* fixed issue with uuid in mysql
|
||||
* fixed issue with logical operator precedence in `QueryBuilder` `whereInIds` (#2103)
|
||||
* fixed issue with uuid in mysql ([#3374](https://github.com/typeorm/typeorm/issues/3374))
|
||||
* fixed missing export of `Exclusion` decorator
|
||||
* fixed ignored extra options in mongodb driver ([#3403](https://github.com/typeorm/typeorm/pull/3403), [#1741](https://github.com/typeorm/typeorm/issues/1741))
|
||||
* fixed signature of root `getRepository` function to accept `EntitySchema<Entity>` ([#3402](https://github.com/typeorm/typeorm/pull/3402))
|
||||
* fixed false undefined connection options passed into mongodb client ([#3366](https://github.com/typeorm/typeorm/pull/3366))
|
||||
* fixed ER_DUP_FIELDNAME with simple find ([#3350](https://github.com/typeorm/typeorm/issues/3350))
|
||||
|
||||
### Features
|
||||
|
||||
* added `tslib` to reduce package size ([#3457](https://github.com/typeorm/typeorm/issues/3457), [#3458](https://github.com/typeorm/typeorm/pull/3458))
|
||||
* queries are simplified in `findByIds` and `whereInIds` for simple entities with single primary key ([#3431](https://github.com/typeorm/typeorm/pull/3431))
|
||||
* added `ioredis` and `ioredis-cluster` cache support ([#3289](https://github.com/typeorm/typeorm/pull/3289),[#3364](https://github.com/typeorm/typeorm/pull/3364))
|
||||
* added `LessThanOrEqual` and `MoreThanOrEqual` find options ([#3373](https://github.com/typeorm/typeorm/pull/3373))
|
||||
* improve support of string, numeric and heterogeneous enums in postgres and mysql ([#3414](https://github.com/typeorm/typeorm/pull/3414))
|
||||
* default value of enum array in postgres is now possible define as typescript array ([#3414](https://github.com/typeorm/typeorm/pull/3414))
|
||||
```typescript
|
||||
@Column({
|
||||
type: "enum",
|
||||
enum: StringEnum,
|
||||
array: true,
|
||||
default: [StringEnum.ADMIN]
|
||||
})
|
||||
stringEnums: StringEnum[];
|
||||
```
|
||||
|
||||
### Breaking changes
|
||||
|
||||
* `UpdateQueryBuilder` now throw error if update values are not provided or unknown property is passed into `.set()` method ([#2849](https://github.com/typeorm/typeorm/issues/2849),[#3324](https://github.com/typeorm/typeorm/pull/3324))
|
||||
|
||||
|
||||
## 0.2.11
|
||||
|
||||
|
||||
@ -66,7 +66,7 @@ Before you submit your Pull Request (PR) consider the following guidelines:
|
||||
```
|
||||
|
||||
* Create your patch, **including appropriate test cases**. Without tests your PR will not be accepted.
|
||||
* Follow our [Coding Rules](#rules).
|
||||
* Add changelog record (short description, link to PR or issues) to the **Unreleased** section of `CHANGELOG.md`.
|
||||
* Run the full TypeORM test suite, as described in the [developer documentation](DEVELOPER.md), and ensure that all tests pass.
|
||||
* Commit your changes using a descriptive commit message
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user