Skip to content

Commit d3348d2

Browse files
Version Packages (#3790)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 926792f commit d3348d2

File tree

9 files changed

+27
-33
lines changed

9 files changed

+27
-33
lines changed

.changeset/afraid-kangaroos-cheer.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fair-students-fix.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/pretty-suns-applaud.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quick-peas-return.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ten-cups-film.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/formik-native/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# formik-native
22

3+
## 2.1.18
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`22e236e`](https://github.com/jaredpalmer/formik/commit/22e236ed8035c7c5824232202c8ce52193338d5a), [`bc9cb28`](https://github.com/jaredpalmer/formik/commit/bc9cb28df7ad07277a499e8301cfd1bb7b230b86), [`9cbf150`](https://github.com/jaredpalmer/formik/commit/9cbf150e65d7c5498900f19b4fa1897ca8a2c87f), [`9c75a9f`](https://github.com/jaredpalmer/formik/commit/9c75a9f639eb38ad55c351e5e1def8a7e5ebd1f3), [`35fa4cc`](https://github.com/jaredpalmer/formik/commit/35fa4cc38260d709a5570dd3c9ef82831758a5f5)]:
8+
- formik@2.2.10
9+
310
## 2.1.17
411

512
### Patch Changes

packages/formik-native/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formik-native",
3-
"version": "2.1.17",
3+
"version": "2.1.18",
44
"license": "Apache-2.0",
55
"author": "Jared Palmer <jared@palmer.net>",
66
"repository": "formium/formik",
@@ -19,9 +19,7 @@
1919
"module": "dist/index.esm.js",
2020
"react-native": "src/index.js",
2121
"typings": "dist/index.d.ts",
22-
"files": [
23-
"dist"
24-
],
22+
"files": ["dist"],
2523
"scripts": {
2624
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
2725
"build": "tsdx build --tsconfig tsconfig.build.json",
@@ -33,7 +31,7 @@
3331
"react": ">=16.8.0"
3432
},
3533
"dependencies": {
36-
"formik": "2.2.9"
34+
"formik": "2.2.10"
3735
},
3836
"devDependencies": {
3937
"@react-native-community/eslint-config": "^0.0.5",

packages/formik/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# formik
22

3+
## 2.2.10
4+
5+
### Patch Changes
6+
7+
- [`22e236e`](https://github.com/jaredpalmer/formik/commit/22e236ed8035c7c5824232202c8ce52193338d5a) [#3784](https://github.com/jaredpalmer/formik/pull/3784) Thanks [@probablyup](https://github.com/probablyup)! - Improve performance of the `FieldArray` component by adding a `shouldComponentUpdate` check; this should help avoid unnecessary re-renders which may affect the performance of a form.
8+
9+
* [`bc9cb28`](https://github.com/jaredpalmer/formik/commit/bc9cb28df7ad07277a499e8301cfd1bb7b230b86) [#3785](https://github.com/jaredpalmer/formik/pull/3785) Thanks [@probablyup](https://github.com/probablyup)! - Fixed field error state for array fields that have an error and become empty through an API like `arrayHelpers.remove`.
10+
11+
The prior behavior resolved the field error to `[undefined]`, now it is simply `undefined`.
12+
13+
- [`9cbf150`](https://github.com/jaredpalmer/formik/commit/9cbf150e65d7c5498900f19b4fa1897ca8a2c87f) [#3787](https://github.com/jaredpalmer/formik/pull/3787) Thanks [@probablyup](https://github.com/probablyup)! - Fix infinite loop issue in `Field` when field helpers (`setTouched`, etc) are used as an argument in `React.useEffect`.
14+
15+
* [`9c75a9f`](https://github.com/jaredpalmer/formik/commit/9c75a9f639eb38ad55c351e5e1def8a7e5ebd1f3) [#3780](https://github.com/jaredpalmer/formik/pull/3780) Thanks [@probablyup](https://github.com/probablyup)! - Fixed an issue with array field errors being incorrectly split into an array of individual characters instead of an array of error strings.
16+
17+
- [`35fa4cc`](https://github.com/jaredpalmer/formik/commit/35fa4cc38260d709a5570dd3c9ef82831758a5f5) [#3783](https://github.com/jaredpalmer/formik/pull/3783) Thanks [@probablyup](https://github.com/probablyup)! - Fix validation of deep.dot.path field references when using the `validateField` API.
18+
319
## 2.2.9
420

521
### Patch Changes

packages/formik/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "formik",
33
"description": "Build forms in React, without the tears",
4-
"version": "2.2.9",
4+
"version": "2.2.10",
55
"license": "Apache-2.0",
66
"author": "Jared Palmer <jared@palmer.net> (https://jaredpalmer.com)",
77
"repository": "formium/formik",

0 commit comments

Comments
 (0)