Releases: e-oz/ngx-reactive-storage
Releases · e-oz/ngx-reactive-storage
2.0.0 - pre-release
Breaking changes:
- TypeScript version 5.6+ is required.
This library still works with Angular v16+, but if you use the strict peer dependencies setting (enabled by default) in your package manager, TypeScript version 5.6+ is only supported by Angular v19.
This is caused by a different method of importing the localForge library, and this method is required for SSR support.
New features:
You no longer need to wrap storage initialization in afterNextRender()
.
1.2.1
Add info about getWritableSignal()
to README.
v1.2.0
Method getWritableSignal()
will not write initial value to the storage anymore.
v1.1.1
Fix types in functions overloading.
v1.1.0
New method: getWritableSignal()
- returns a signal that you can modify using set()
or update()
methods, and these modifications will also update the storage key.
v1.0.4
More types overloading for getSignal()
🤦
1.0.3
Better TypeScript types for getSignal()
, remove SignalOptions
type (was not part of public API).
1.0.2
Better TypeScript types for getSignal()
and SignalOptions
.
1.0.1
Method getSignal()
now accepts SignalOptions
as the second argument. This allows you to set the initial value and the equality check function.