This repository has been archived by the owner on May 17, 2022. It is now read-only.
Releases: configit/ngyn
Releases · configit/ngyn
Release 1.2.0
Fixes and Improvements
- Automatically cancels any pending requests when a resource calls
requery()
, if the action is cancellable.
Release 1.1.2
Fixes and Improvements
- Fixes an issue dealing with empty responses in response interceptor
Release 1.1.1
Fixes and Improvements
- Removed hidden dependency on lodash/underscore.
- Uses native functionality available in IE11+ and latest versions of other browsers
Release 1.1.0
This is the first release available via npm:
npm install ngyn
Fixes and Improvements
- New form saving extensions to assist in preventing users from leaving them accidentally
- New gulp build system
- Uses ng-annotate to reduce di-minification problems
- Numerous small fixes to the select2 component to address edge-case bugs
- New service to track changes on a form (like $dirty but reverts to $pristine when vaue matches original)
v1.0.38
v1.0.38
This release contains:
- ngyn-resource-extensions - Eases hooking into $resource to allow modification of request and responses.
- ngyn-route - Restful routing engine and utilities
- ngyn-select2 - Angular wrapper for select2
- ngyn-select-key - Emulates
track by
for old Angular versions - ngyn-server-connection - For managing connections to real-time client-server libraries. Ships with an adapter for SignalR
- ngyn-ui-multi-picker - Experimental pill-like control
- ngyn-ui-timespan-picker - Simple control to allow selection of a duration and the units for that duration
Documentation is available at http://configit.github.io/ngyn/
Breaking changes
If you are using a previous release of ngyn you need to be aware of the following breaking changes in this release:
ServerConnection
- All callbacks fired by ServerConnection run inside
$scope.$apply
. This means that any code inside anon
listener or athen
callback currently doing it's own $apply will need to be modified to take this into account and avoid a "Digest already in progress" exception. - Implementations of serverConnectionBackend must return a server instance whose methods return Angular promises, not a native format