From f91537b48d432aee9c640ac97e626a451340340b Mon Sep 17 00:00:00 2001 From: Umed Khudoiberdiev Date: Sat, 20 May 2017 23:58:36 +0500 Subject: [PATCH] added info about AR --- CHANGELOG.md | 1 + src/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fdcbb5e7..412fc49cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ each for its own `findOne*` or `find*` methods * `SpecificRepository` is deprecated for now * `transaction` method has been removed from `Repository`. Use `EntityManager#transaction` method instead * custom repositories do not support container anymore +* added ActiveRecord support (by extending EntityModel) class ### NEW FEATURES diff --git a/src/index.ts b/src/index.ts index 565e207ef..117fd96aa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -97,6 +97,7 @@ export {InsertEvent} from "./subscriber/event/InsertEvent"; export {UpdateEvent} from "./subscriber/event/UpdateEvent"; export {RemoveEvent} from "./subscriber/event/RemoveEvent"; export {EntitySubscriberInterface} from "./subscriber/EntitySubscriberInterface"; +export {EntityModel} from "./repository/EntityModel"; // ------------------------------------------------------------------------- // Deprecated