Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Update changelog for 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fknop committed Feb 8, 2017
1 parent b806f34 commit 295cf47
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 6.0.0

## New pipes

* [`firstOrDefault`](./docs/array.md#firstordefault) [#41](https://github.com/fknop/angular-pipes/issues/41)

## Breaking changes

* All the `types` pipes have been renamed with a `is` prefix. [#40](https://github.com/fknop/angular-pipes/issues/40)
* The complete list is:
+ `null` has been renamed to `isNull`
+ `undefined` has been renamed to `isUndefined`
+ `nil` has been renamed to `isNil`
+ `number` has been renamed to `isNumber`
+ `string` has been renamed to `isString`
+ `function` has been renamed to `isFunction`
+ `array` has been renamed to `isArray`
+ `object` has been renamed to `isObject`
+ `defined` has been renamed to `isDefined`

* Reason: the `number` pipe was in conflict with the `Angular` built-in `number` pipe so it had to be renamed. To keep consistency between pipes, all type pipes have been renamed with the same prefix.

# 5.8.0

## Bundle distribution
Expand Down

0 comments on commit 295cf47

Please sign in to comment.