Skip to content

Commit ddfae3f

Browse files
authored
Merge pull request #4045 from jaredpalmer/changeset-release/main
2 parents f7f8f53 + 741c9d4 commit ddfae3f

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
lines changed

.changeset/react-19-support.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.31
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1de45de`](https://github.com/jaredpalmer/formik/commit/1de45decf8fd70c038fca88dc1a6543aac269553)]:
8+
9+
310
## 2.1.30
411

512
### Patch Changes

packages/formik-native/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formik-native",
3-
"version": "2.1.30",
3+
"version": "2.1.31",
44
"license": "Apache-2.0",
55
"author": "Jared Palmer <[email protected]>",
66
"repository": "formium/formik",
@@ -19,7 +19,9 @@
1919
"module": "dist/index.esm.js",
2020
"react-native": "src/index.js",
2121
"typings": "dist/index.d.ts",
22-
"files": ["dist"],
22+
"files": [
23+
"dist"
24+
],
2325
"scripts": {
2426
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
2527
"build": "tsdx build --tsconfig tsconfig.build.json",
@@ -30,7 +32,7 @@
3032
"react": ">=16.8.0"
3133
},
3234
"dependencies": {
33-
"formik": "2.4.7"
35+
"formik": "2.4.8"
3436
},
3537
"devDependencies": {
3638
"@react-native-community/eslint-config": "^0.0.5",

packages/formik/CHANGELOG.md

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

3+
## 2.4.8
4+
5+
### Patch Changes
6+
7+
- [#4042](https://github.com/jaredpalmer/formik/pull/4042) [`1de45de`](https://github.com/jaredpalmer/formik/commit/1de45decf8fd70c038fca88dc1a6543aac269553) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Replace JSX.IntrinsicElements with React.JSX.IntrinsicElements for React 19 compatibility. The global JSX namespace was removed in React 19, so we now use React.JSX.IntrinsicElements instead.
8+
39
## 2.4.7
410

511
### Patch Changes

packages/formik/package.json

Lines changed: 4 additions & 2 deletions
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.4.7",
4+
"version": "2.4.8",
55
"license": "Apache-2.0",
66
"author": "Jared Palmer <[email protected]> (https://jaredpalmer.com)",
77
"contributors": [
@@ -33,7 +33,9 @@
3333
"umd:main": "dist/formik.umd.production.js",
3434
"module": "dist/formik.esm.js",
3535
"typings": "dist/index.d.ts",
36-
"files": ["dist"],
36+
"files": [
37+
"dist"
38+
],
3739
"peerDependencies": {
3840
"react": ">=16.8.0"
3941
},

0 commit comments

Comments
 (0)