Releases
pinia-orm@1.5.1
Description
v1.5.1
๐ฅ Performance
- pinia-orm: Improve find speed for huge data (
1714d7a
)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.5.0
Description
v1.5.0 - ๐ฆ
๐ Enhancements
- pinia-orm: Support of composite key for some relations (#885)
๐ฉน Fixes
- pinia-orm:
new
doesnt fire creating or created hook (#808)
๐ฅ Performance
- pinia-orm: Querying models with belongsToMany relation are extremely slow (#876)
- pinia-orm: Improve caching for hydrated models #889
๐ Documentation
- Add missing
new
to api (#808)
๐ก Chore
- normalizr: Add unpkg & jsdelivr support(
c41f89d
)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.4.0
Description
v1.4.0 -๐- Merry Christmas
๐ Enhancements
- pinia-orm: add
hasManyThrough
relation (#678) - pinia-orm: Add the possibility to rollback changed models. Adding
$isDirty()
,$getOriginal()
and$refresh
. (#757)
๐ฏ๏ธ Fixes
- pinis-orm: Update hook not triggered with
update
method (fb1694f
) - pinis-orm:
@OnDelete
on same model attrs leads to undefined error (#754) - pinia-orm: Don't delete relations bind with
onDelete
if hook returns false (3531a06
)
๐คถ Performance
- pinia-orm: Improve hydrating check (#679)
- pinia-orm: Remove
JSON.stringfy()
for comparing objects (300482d
)
โ๏ธ Refactors
- pinia-orm: Improve typescript handling with
piniaStore()
(a8628c8
)
๐ Documentation
- Add some missing model functions to api (
ce54b23
)
โค๏ธ Contributors
- Gregor Becker
- Santa Clause
pinia-orm@1.3.0
Description
v1.3.0 - ๐ฒ
๐ Enhancements
- pinia-orm: Add the option to sort case insensitive with
sortBy
(#636)
๐ฉน Fixes
- pinia-orm: Query constraints with nested relations in m:m relations broken (#625)
๐ Refactors
- normalizr: Reduce code used by orm (#641)
๐ฅ Performance
- pinia-orm: Save hydrated models if not updated (#671)
๐ Documentation
โค๏ธ Contributors
- Gregor Becker
- yyydevf
pinia-orm@1.2.2
Description
v1.2.2
๐ฉน Fixes
- pinia-orm:
null
is casted in DateCast (#565)
๐ Documentation
โ Tests
- pinia-orm: Fix number cast test for notNullable (#564)
โค๏ธ Contributors
- Gregor Becker
- Thomas Klaas
pinia-orm@1.2.1
Description
v1.2.1
๐ฉน Fixes
- pinia-orm: Delete on cascade doesn't work with n:m relations (#562)
๐ Documentation
- Fix typos + minor tweaks (#558)
๐ฆ Build
- Trigger only ci in packages directory (
59d55c4
)
โค๏ธ Contributors
- Gregor Becker
- Paolo Dina
pinia-orm@1.2.0
Description
v1.2.0 - ๐
๐ Enhancements
- pinia-orm: Add the possibility to delete by cascade (#529)
- pinia-orm: Enhance
whereIn
to supportSet
as values (#537) - pinia-orm: Attributes can now accept closures for default value (#544)
- pinia-orm: Add simple
DateCast
(#546)
๐ฉน Fixes
- docs: Docs broken with nuxt3.0.0-rc.13 (#543)
- pinia-orm: Using childRepo (STI) for saving without type defined (#555)
๐ Refactors
- pinia-orm: Remove unnecessary fallback since config is always set (#555)
๐ Documentation
- Fixed some broken links (#529)
- Added missing
delete
anddestroy
methods to api (#529) - Added decorator example for STI (#555)
- Fix broken cards on index (
bb99b49
)
โ Tests
- pinia-orm: Add a missing test for
throwError
(#529)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.1.0
Description
v1.1.0 - ๐ฆ
๐ Enhancements
- pinia-orm: Add
record
field to saving hooks (#491)
๐ Refactors
- pinia-orm: Made all relation class properties public so they can be accessed (#491)
๐ Documentation
- Updated to current docus version & using new nuxt static generate (#473)
- Wrong chaining example with
groupBy
(#482) - Correct STI example for simple inhertance (
09b9dcf
)
๐ฆ Build
- Removed Algolia CI Crawler since pages are crawled by generate now. (
82b9cc4
)
โ Tests
- pinia-orm: Finish skipped test for error handling (
40cf182
)
โค๏ธ Contributors
- Gregor Becker
- Thomas Klaas
pinia-orm@1.0.4
Description
๐ฉน Fixes
- pinia-orm: pivot are not correctly loaded (#438)
๐ก Chore
- nuxt: Updated files to new package versions (#438)
โค๏ธ Contributors
- Gregor Becker
- Carsten Ruetz
pinia-orm@1.0.3
Description
๐ฉน Fixes
- pinia-orm: Multiple belongsToMany relations still wrong saved (#373)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.0.2
Description
๐ฉน Fixes
- pinia-orm: Multiple belongsTo relationships between 2 entities lead to unintended outcome (#369)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.0.1
Description
๐ฉน Fixes
- pinia-orm: Fallback for "Buffer is not defined" & fix cache config (#360)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.0.0
Description
v1.0.0 - ๐ฏ
Enjoy a stable and feature rich orm for pinia ! ๐
๐ Enhancements
- pinia-orm: Add an option to make fields hidden (#240)
- pinia-orm: Add
_meta
field for models containing metadata (#240) - pinia-orm: Add global configuration options (#240)
- nuxt: Add global configuration options (#240)
- pinia-orm: Add helper composables for collection (#259)
๐ฉน Fixes
- pinia-orm:
(where)has
queries are not working with 1:1 relations (#342) - playground: Remove
vue-hako
since it breaks with new vueuse version (#343)
๐ Refactors
- pinia-orm: Renamed internally ModelOption field from
mutator
tooperation
(#240)
๐ Documentation
- Add configuration options to api (#266)
- Add missing icons (#266)
- Update readme comparison (#266)
- Collapse side nav items (#266)
๐ฅ Performance
- pinia-orm: Add optional caching for same
get
requests (#272)
โ Tests
- pinia-orm: Add missing tests for better coverage (#257)
โค๏ธ Contributors
- Gregor Becker
pinia-orm@1.0.0-rc.6
Description
Warning There are slight API changes with this release candidate.
๐ Enhancements
- pinia-orm: Add
groupBy
method to query (#213) - pinia-orm: Added bundles for uid libs
nanoid
&uuid
(#215) - pinia-orm: Add the possibility to use
useRepo
outside ofsetup()
(#228)
๐ฉน Fixes
- pinia-orm: The
set
method of casts is not called (#215) - pinia-orm: Nuxt 2 has problems with nullish coalescing operator (#228)
๐ Refactors
- pinia-orm: โ ๏ธ Moved decorators to
pinia-orm/dist/decorators
(#185) - pinia-orm: โ ๏ธ Moved casts to
pinia-orm/dist/casts
(#215) - pinia-orm: โ ๏ธ Removed "string casting" with
string
,array
,number
andboolean
(#215) - pinia-orm: โ ๏ธ Make field per default nullable(#229)
๐ Documentation
๐ฅ Performance
๐ก Chore
- pinia-orm: Update package.json for better file imports (
ac4dd70
) - pinia-orm: Improve typings for
piniaOptions
,useDataStore
,useStoreActions
andpiniaStore
(#204) - Switch from
lerna
tolerna-lite
for workspace support - nuxt: Dependencies updates
- pinia-orm: Dependencies updates
๐ฆ Build
- normalizr: Added own
normalizr
package (#191 ) - pinia-orm: move from
normalizr
to@pinia-orm/normalizr
(#192)
โ Tests
โค๏ธ Contributors
- Gregor Becker
v@pinia-orm/nuxt@1.0.18
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-rc.5
Description
Warning There are slight API changes with this release candidate.
๐ Enhancements
- pinia-orm:
make
in repositories can create now multiple records (#133) - pinia-orm: Add
retrieved
life cycle hook (#145)
๐ฉน Fixes
- nuxt: Adept changes from
@pinia/nuxt
(#150) - docs: Invalid layout
fluid
selected in docs
๐ Refactors
- pinia-orm: โ ๏ธ Change
PiniaORM.install()
tocreateORM()
(902f4c2
) - pinia-orm: โ ๏ธ Remove
findIn
sincefind
does the same (#144)
๐ Documentation
๐ฅ Performance
๐ก Chore
- Update release script (
0b71a7d
) - Remove
default
export in indexes and create build config for cjs (#142)
๐ฆ Build
- Move to
unbuild
(#142)
โ Tests
โค๏ธ Contributors
- Gregor Becker
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-rc.4
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-rc.3
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.17
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-rc.2
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-rc.1
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-alpha.2
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.16
Description
Please refer to CHANGELOG.md for details.
pinia-orm@1.0.0-alpha.1
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.14.0
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.15
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.13.0
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.14
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.12.1
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.12.0
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.11.0
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.13
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.12
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.10.0
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.11
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.9.3
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.10
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.9.2
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.9
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.9.1
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.8
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.9.0
Description
Please refer to CHANGELOG.md for details.
v@pinia-orm/nuxt@1.0.7
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.8.4
Description
Please refer to CHANGELOG.md for details.
pinia-orm@0.8.0
Description
First release
v@pinia-orm/nuxt@1.0.5
Description
Please refer to CHANGELOG.md for details.