ci: release - #32
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 24, 2026 01:36
8f06a55 to
b46d6bc
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@ilokesto/form@1.0.5
Patch Changes
90950d7: Add Vue/Solid/Svelte login form examples and React validation flow example
d1a6685: Add Biome linter/formatter with
lint,lint:fix, andformatscripts. Add CI lint step. Remove.prettierrcin favor of Biome configuration.d57581c: Build config cleanup: enable sourcemaps, preserve JSDoc in declarations, remove dead vite build config, remove redundant .npmignore.
tsconfig.json:sourceMap: true— consumers can now debug into library source.tsconfig.json:removeComments: false— Korean JSDoc preserved in.d.tsfiles, visible in IDE tooltips.vite.config.ts: removed deadbuild.libblock (production build usestsc, notvite build). File now clearly scoped to vitest config only..npmignore—package.jsonfilesfield already controls published files;.npmignorewas redundant.e71b915: Add dedicated unit tests for core modules.
test/core/ValueHelper.test.ts— covers path-based get/set and values reconstruction.test/core/FormPath.test.ts— covers path ↔ key conversion and path normalization.test/core/FormStateInitializer.test.ts— covers defaultValues → FormState initialization.test/core/FormArrayMutationPlanner.test.ts— covers push, insert, remove, move, swap, and replace planning.test/core/FormArrayRebaser.test.ts— covers field metadata rebase and arrayKeys updates.3a22eab: Document ESM-only policy in README.
The package is ESM-only (
"type": "module", norequirecondition inexports). This is now explicitly documented in the Installation section of README.md and README.ko.md, with guidance for CJS consumers (dynamicimport()or bundler transpilation). No code changes — documentation only.18bd869: Document performance considerations for PathKey encoding and immer dependency.
JSON.stringify/JSON.parsecould be replaced with NUL-separator encoding for large forms; benchmark before migrating.No code changes — documentation of design decisions and future optimization paths.
afd7fca: Add
useFieldto the Svelte adapter for API parity with React/Vue/Solid.useForm(form).useField(options)returns{ props, value, setValue, errors, dirty, touched }matching the shape of the React, Vue, and SoliduseFieldhooks.propsis a Svelteuse:-compatible register action bound to the field'sRegisterOptions, so<input use:field.props />works directly.value,errors,dirty, andtouchedread the latest field state from the core form on every access, staying reactive through the existingform.subscribeflow.setValue(value)updates the field programmatically with{ source: 'program' }.schemainRegisterOptionsis supported via the existing register action, with cleanup on action destroy restoring the form-level schema.Resolves P2: Svelte 어댑터에 useField 미제공 — React/Vue/Solid와 API 격차 #17
@ilokesto/form-react-validation-flow-example@0.0.1
Patch Changes
@ilokesto/form-solid-login-example@0.0.1
Patch Changes
@ilokesto/form-svelte-login-example@0.0.1
Patch Changes
@ilokesto/form-vue-login-example@0.0.1
Patch Changes