Motonary / Fortuna

0 stars 0 forks source link

Update dependency formik to v1.5.7 #129

Open renovate[bot] opened 5 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change References
formik dependencies patch 1.5.0 -> 1.5.7 source

Release Notes

jaredpalmer/formik ### [`v1.5.7`](https://togithub.com/jaredpalmer/formik/releases/v1.5.7) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.6...v1.5.7) #### Patch - Provide better typing for `isInitialValid` method when using `withFormik` **Commits** - Provide better typing for `isInitialValid` method when using `withFormik` ([#​1490](https://togithub.com/jaredpalmer/formik/issues/1490)) [`b6c630d`](https://togithub.com/jaredpalmer/formik/commit/b6c630d) - Add version for 1.4.4 patch [`1cccc6c`](https://togithub.com/jaredpalmer/formik/commit/1cccc6c) ### [`v1.5.6`](https://togithub.com/jaredpalmer/formik/releases/v1.5.6) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.5...v1.5.6) #### Patch Fix types for `connect()` for realz. **1.5.5 vs. 1.5.6** ```diff // connect.d.ts import * as React from 'react'; import { FormikContext } from './types'; export declare const FormikProvider: React.ProviderExoticComponent>>, FormikConsumer: React.ExoticComponent>>; export declare function connect(Comp: React.ComponentType; -}>): any; +}>): React.ComponentType; ``` **Commits** - Cast hoist in connect() to R.CompType [`cb443e2`](https://togithub.com/jaredpalmer/formik/commit/cb443e2) - Bump docs to 1.5.5 [`7c0236b`](https://togithub.com/jaredpalmer/formik/commit/7c0236b) ### [`v1.5.5`](https://togithub.com/jaredpalmer/formik/releases/v1.5.5) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.4...v1.5.5) #### Patch - Updated to latest version of `hoist-non-react-statics` - Removed internal (and effectively redundant typedefs for `@types/hoist-non-react-statics`) which caused pain and sadness for TS users. We were not really using the type defs anyways since we were casting the output to React.SFC. This was causing the type declarations to have dynamic type imports and even some triple slash directives. 😭😭😭 Luckily, this is fixed now. **Commits** - Fix TS build and remove types for hoist-non-react-statics ([#​1521](https://togithub.com/jaredpalmer/formik/issues/1521)) [`34a0805`](https://togithub.com/jaredpalmer/formik/commit/34a0805) - Fixed typo ([#​1518](https://togithub.com/jaredpalmer/formik/issues/1518)) [`47af0f4`](https://togithub.com/jaredpalmer/formik/commit/47af0f4) - Bump deps for hoist ([#​1514](https://togithub.com/jaredpalmer/formik/issues/1514)) [`c63d38f`](https://togithub.com/jaredpalmer/formik/commit/c63d38f) - Upgrade hoist-non-react-statics to v3.3.0 ([#​1502](https://togithub.com/jaredpalmer/formik/issues/1502)) [`fc36095`](https://togithub.com/jaredpalmer/formik/commit/fc36095) - Merge branch 'master' of github.com:jaredpalmer/formik [`b745c8a`](https://togithub.com/jaredpalmer/formik/commit/b745c8a) - Add new users [`a260256`](https://togithub.com/jaredpalmer/formik/commit/a260256) - Fix typo in example. ([#​1501](https://togithub.com/jaredpalmer/formik/issues/1501)) [`050512b`](https://togithub.com/jaredpalmer/formik/commit/050512b) - Add versions [`9ce3757`](https://togithub.com/jaredpalmer/formik/commit/9ce3757) ### [`v1.5.4`](https://togithub.com/jaredpalmer/formik/releases/v1.5.4) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.3...v1.5.4) #### Improvements Internally, Formik uses an undocumented utility function called `setIn` to support deep state updates (and nested fields). In this release, we altered the behavior of `setIn` to shallow copy unchanged siblings along the update path to be updated instead of deeply cloning the whole object. This should enable significant performance improvements when implementing `shouldComponentUpdate` methods for nested structures as it allows direct comparison of object / arrays to see if there has been changes to any of their child values (because unchanged objects retain the same JS reference). **Commits** - Change `setIn` to use `clone` instead of `cloneDeep`. ([#​1235](https://togithub.com/jaredpalmer/formik/issues/1235)) [`d34537b`](https://togithub.com/jaredpalmer/formik/commit/d34537b) - Add Campusjäger to users ([#​1466](https://togithub.com/jaredpalmer/formik/issues/1466)) [`d74805d`](https://togithub.com/jaredpalmer/formik/commit/d74805d) ### [`v1.5.3`](https://togithub.com/jaredpalmer/formik/releases/v1.5.3) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.2...v1.5.3) #### Improvements - `setIn` keeps class inheritance for the top level object ([#​1429](https://togithub.com/jaredpalmer/formik/issues/1429)) [`316023b`](https://togithub.com/jaredpalmer/formik/commit/316023b) **Commits** - Update formik.md ([#​1423](https://togithub.com/jaredpalmer/formik/issues/1423)) [`4dbb93f`](https://togithub.com/jaredpalmer/formik/commit/4dbb93f) - Remove extraneous Markdown markers in docs ([#​1440](https://togithub.com/jaredpalmer/formik/issues/1440)) [`77eddec`](https://togithub.com/jaredpalmer/formik/commit/77eddec) - bugfix Storybook ts config added bugfix/jaredpalmer/formik#​1431 Misspelled filename fixed ([#​1435](https://togithub.com/jaredpalmer/formik/issues/1435)) [`1de8b43`](https://togithub.com/jaredpalmer/formik/commit/1de8b43) - setIn keeps class inheritance for the top level object ([#​1429](https://togithub.com/jaredpalmer/formik/issues/1429)) [`316023b`](https://togithub.com/jaredpalmer/formik/commit/316023b) - bugfix Storybook ts config added bugfix/jaredpalmer/formik#​1431 ([#​1432](https://togithub.com/jaredpalmer/formik/issues/1432)) [`ae88fc5`](https://togithub.com/jaredpalmer/formik/commit/ae88fc5) - Correct type description on Field.render input properties ([#​1416](https://togithub.com/jaredpalmer/formik/issues/1416)) [`22db39c`](https://togithub.com/jaredpalmer/formik/commit/22db39c) - Add NOAA and NASA to users on website [`50882a2`](https://togithub.com/jaredpalmer/formik/commit/50882a2) - Docusaurus 1.8.x [`a940e37`](https://togithub.com/jaredpalmer/formik/commit/a940e37) - Update link to Expo Snack [`481aead`](https://togithub.com/jaredpalmer/formik/commit/481aead) - Update link to Expo Snack [`3d2007f`](https://togithub.com/jaredpalmer/formik/commit/3d2007f) - Update formik.md v1.5.2 [`8c5fcf8`](https://togithub.com/jaredpalmer/formik/commit/8c5fcf8) - Fix [#​1021](https://togithub.com/jaredpalmer/formik/issues/1021) ([#​1232](https://togithub.com/jaredpalmer/formik/issues/1232)) [`82d6650`](https://togithub.com/jaredpalmer/formik/commit/82d6650) - Let TS infer return type of getFormikContext() ([#​1413](https://togithub.com/jaredpalmer/formik/issues/1413)) [`c524394`](https://togithub.com/jaredpalmer/formik/commit/c524394) - Add 1.5.2 docs [`9d03575`](https://togithub.com/jaredpalmer/formik/commit/9d03575) ### [`v1.5.2`](https://togithub.com/jaredpalmer/formik/releases/v1.5.2) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.1...v1.5.2) #### Improvements - Improve handling and types of non-event values in the overloaded `handleChange` and `handleBlur` methods so that they can more easily be used with React Native (Web) and other renderers. ([#​1216](https://togithub.com/jaredpalmer/formik/issues/1216)) ### [`v1.5.1`](https://togithub.com/jaredpalmer/formik/releases/v1.5.1) [Compare Source](https://togithub.com/jaredpalmer/formik/compare/v1.5.0...v1.5.1) #### Fixes - Fixed bug causing React to warn against unmounted setState calls during certain validation scenarios ([#​1338](https://togithub.com/jaredpalmer/formik/issues/1338))

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Renovate Bot. View repository job log here.