Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fp-ts to the latest version 馃殌 #67

Closed
wants to merge 2 commits into from

Conversation

greenkeeper[bot]
Copy link
Contributor

@greenkeeper greenkeeper bot commented Nov 20, 2018

The dependency fp-ts was updated from 1.10.0 to 1.10.1.

This version is not covered by your current version range.

If you don鈥檛 accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.


Release Notes for 1.10.1
Commits

The new version differs by 23 commits.

  • d4a96ad Bug Fix: backport #637
  • 9cb9ca0 Docs: add These description
  • db76c7e Docs: add @link tags
  • 58a6a99 Docs: fix Monad description
  • 7333b88 Docs: fix taskify coment
  • 68391a4 Docs: add back link
  • f5a68e0 Docs: move instances to the top
  • e94af03 Docs: fix missing comment (Array)
  • 8b59bc2 Internal: upgrade to typescript@3.1.6
  • e5d06c4 add fp-ts-most to bindings
  • 93bfba9 Internal: upgrade to typescript@3.1.4
  • 3181e06 Docs: make consts explicit
  • eaaa05a upgrade to prettier@1.14.3
  • 15f751a add docs generation to npm test
  • f408467 Update generated docs, diff in update

There are 23 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don鈥檛 help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 馃尨

greenkeeper bot added a commit that referenced this pull request Nov 21, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 21, 2018

  • The dependency fp-ts was updated from 1.10.0 to 1.11.0.

Update to this version instead 馃殌

Release Notes for 1.11.0
  • Deprecation
    • deprecate Either.tryCatch in favour of Either.tryCatch2v (@gcanti)
    • deprecate IOEither.tryCatch in favour of IOEither.tryCatch2v (@gcanti)
  • New Feature
    • add Strong type class (@gcanti)
    • add Choice type class (@gcanti)
    • use unknown type instead of {}, #539 (@gcanti)
    • use HKT4, URIS4, URI2HKT4, #555 (@babakness)
    • NonEmptyArray enhancement #627 (@sledorze)
      • index
      • findFirst
      • findLast
      • findIndex
      • findLastIndex
      • insertAt
      • updateAt
      • filter
    • TaskEither
    • Reader
    • add Category4, Functor4, Profunctor4, Semigroupoid4, Strong4 (@gcanti)
  • Bug Fix
Commits

The new version differs by 20 commits ahead by 20, behind by 1.

  • 9162d38 bump version
  • e3fcb7b Docs: update type classes diagram
  • 7447c10 Docs: update TypeScript compatibility
  • af262a2 Docs: update docs
  • ad3b1a2 Test: fix 100% coverage
  • 70dbc80 New Feature: add Choice type class (+ Reader instance), closes #632
  • 763e092 add Category4, Functor4, Profunctor4, Semigroupoid4, Strong4
  • 8bcdaef Internal: update documentation
  • 7bea1ce Polish: rename V to X (HKT4)
  • f78ea11 Update HKT.ts
  • 71917cb New Feature: add Strong type class (+ Reader instance), closes #631
  • d2d5aa0 New Feature: add Category instance to Reader
  • 2d57384 New Feature: add profunctor instance to Reader, closes #634
  • 654fd1e New Feature: add filterOrElse, filterOrElseL to TaskEither, closes #619
  • 95bea56 Deprecation: deprecate IOEither.tryCatch in favour of IOEither.tryCatch2v, fix #625

There are 20 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 22, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 22, 2018

  • The dependency fp-ts was updated from 1.10.0 to 1.11.1.

Update to this version instead 馃殌

Release Notes for 1.11.1
  • Polish
    • ReaderTaskEither.tryCatch: add the environment as the second argument of the onrejected handler (@ascariandrea)
Commits

The new version differs by 3 commits.

  • 42609ab bump version
  • 69abead Test: add regression test to ReaderTaskEither.tryCatch
  • 0049bd2 Pass read value to 'onrejected' handler for ReaderTaskEither's tryCatch

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 23, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 23, 2018

  • The dependency fp-ts was updated from 1.10.0 to 1.11.2.

Update to this version instead 馃殌

Release Notes for 1.11.2
  • Bug Fix
    • fix function.toString when input does not have Object on its prototype chain (@gcanti)
Commits

The new version differs by 3 commits.

  • 778c285 bump version
  • 75216a5 Bug Fix: fix function.toString when input does not have Object on its prototype chain
  • e561a8b Docs: update

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 29, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 29, 2018

  • The dependency fp-ts was updated from 1.10.0 to 1.11.3.

Update to this version instead 馃殌

Release Notes for 1.11.3
  • Deprecation
    • Array
      • refine in favour of filter (@gcanti)
    • Either
      • .prototype.refineOrElse in favour of .prototype.filterOrElse (@gcanti)
      • .prototype.refineOrElseL in favour of .prototype.filterOrElseL (@gcanti)
      • fromRefinement in favour of fromPredicate (@gcanti)
    • Option
      • .prototype.refine in favour of .prototype.filter (@gcanti)
      • fromRefinement in favour of fromPredicate (@gcanti)
  • Polish
    • use built-in Record type in Record module (@gcanti)
    • add support for refinements (@gcanti)
      • Array
        • takeWhile
        • span
      • NonEmptyArray
        • .prototype.filter
      • ReaderTaskEither
        • fromPredicate
      • Record
        • filter
      • Set
        • filter
        • partition
      • StrMap
        • filter
      • TaskEither
        • .prototype.filterOrElse
        • .prototype.filterOrElseL
        • fromPredicate
      • Validation
        • fromPredicate
Commits

The new version differs by 26 commits.

  • b2c574e bump version
  • 3295662 Docs: handle method overloadings
  • a9bd313 Internal: add unsafe-docs script
  • 027b0b6 fix linting
  • 56bd67a Polish: add support for refinements to Validation.fromPredicate
  • 0aed8e9 Polish: add support for refinements to TaskEither.fromPredicate
  • 2ff33fb Polish: add support for refinements to TaskEither.prototype.filterOrElse
  • 550c0ef Polish: add support for refinements to StrMap.filter
  • fc1a7e1 Polish: add support for refinements to Set.filter
  • 3e63fbf Polish: add support for refinements to Set.filter
  • 5bcde3b Polish: use built-in Record type in Record
  • 925baf1 Polish: add support for refinements to Record.filter
  • 4aa326b Polish: add support for refinements to ReaderTaskEither.fromPredicate
  • 11356b8 Polish: add support for refinements to NonEmptyArray.prototype.filter
  • 340681a Polish: add support for refinements to Array.span

There are 26 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 3, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 3, 2018

  • The dependency fp-ts was updated from 1.10.0 to 1.12.0.

Update to this version instead 馃殌

Release Notes for 1.12.0
  • Deprecation
    • deprecate Set.difference in favour of difference2v (@gcanti)
  • New Feature
    • add Array.union (@gcanti)
    • add Array.intersection (@gcanti)
    • add Array.difference (@gcanti)
    • add Set.compact (@gcanti)
    • add Set.separate (@gcanti)
    • add Set.filterMap (@gcanti)
    • add getCompactableComposition (@gcanti)
    • add getFilterableComposition (@gcanti)
    • add chainFirst, chainSecond to TaskEither (@gcanti)
    • add NonEmptyArray.prototype.filterWithIndex (@gcanti)
    • add WithKey variants to Record (@gcanti)
      • reduceWithKey
      • foldMapWithKey
      • foldrWithKey
      • partitionMapWithIndex
      • partitionWithIndex
      • filterMapWithIndex
      • filterWithIndex
    • add FunctorWithIndex type class (@MaximeRDY)
    • add FoldableWithIndex type class (@gcanti)
    • add TraversableWithIndex type class (@gcanti)
    • add FilterableWithIndex type class (@gcanti)
  • Internal
    • upgrade to typescript@3.2.1 (@gcanti)
Commits

The new version differs by 35 commits.

  • 4823e34 Docs: update changelog
  • beb8498 bump version
  • 936a880 Docs: update docs
  • d2909ce New Feature: add Set.filterMap
  • 6ba0fbf New Feature: add Set.separate
  • 9600281 New Feature: add Set.compact
  • eaaa79f New Feature: add getFilterableComposition, closes #665
  • 4754632 New Feature: add getCompactableComposition, closes #664
  • c134a7d New Feature: add Array.difference
  • 89e208e New Feature: add Array.intersection
  • d07d385 New Feature: add Array.union
  • cce4d92 Deprecation: deprecate Set.difference in favour of difference2v
  • 254aafd New Feature: add NonEmptyArray.prototype.filterWithIndex
  • 45a54c2 New Feature: add FilterableWithIndex instance for StrMap
  • 2a261c5 New Feature: add FilterableWithIndex instance for Array

There are 35 commits in total.

See the full diff

StefanoMagrassi added a commit that referenced this pull request Dec 4, 2018
* fix(package): update fp-ts to version 1.12.0

Closes #67

* chore(package): update package-lock
@greenkeeper greenkeeper bot deleted the greenkeeper/fp-ts-1.10.1 branch December 4, 2018 11:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant