-
-
Notifications
You must be signed in to change notification settings - Fork 102
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publish v4 update. #1123
Merged
Publish v4 update. #1123
Conversation
This file contains 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
Adapt typia v7 update
Upgrade dependencies
add multer support for fastify
Complement #941: finalize `TypedFormData()` to support `fastify-multer`.
Prepare `@nestia/migrate`'s next update
Upgrade `@samchon/openapi` and `typia`, maybe the last testing.
Upgrade `typia@next` and `@samchon/openapi@next` for experiments.
samchon
added
documentation
Improvements or additions to documentation
enhancement
New feature or request
labels
Dec 2, 2024
samchon
commented
Dec 2, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, no problem.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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 pull request includes various updates and improvements across multiple files, focusing on dependency updates, removal of unnecessary code, and enhancements to the documentation. The most important changes include updating dependencies, removing unused imports and assignments, and updating the documentation to reflect these changes.
Dependency Updates:
benchmark/package.json
: Updated@nestia/core
to^4.0.0
,typia
to^7.0.0
, andtypescript
to~5.6.3
. [1] [2] [3]package.json
: Updated version to4.0.0
.packages/benchmark/package.json
: Updated@nestia/core
to^4.0.0
,@nestia/sdk
to^4.0.0
,typescript
to~5.6.3
, andtypia
to^7.0.0
.packages/core/package.json
: Updated@nestia/core
to4.0.0
,@samchon/openapi
to^2.0.0
,typia
to^7.0.0
, and removedmulter
. [1] [2]Code Cleanup:
packages/core/src/decorators/EncryptedBody.ts
: Removed unused imports and assignments ofis
,assert
, andvalidate
fromtypia
. [1] [2]packages/core/src/decorators/PlainBody.ts
: Removed unused import and assignment ofassert
fromtypia
. [1] [2]packages/core/src/decorators/TypedBody.ts
: Removed unused imports and assignments ofis
,assert
,misc
, andvalidate
fromtypia
. [1] [2]packages/core/src/decorators/TypedFormData.ts
: Removedfastify-multipart
and updated to usefastify-multer
. Removed unnecessary imports and assignments. [1] [2] [3] [4] [5] [6] [7] [8]Documentation Updates:
README.md
andpackages/core/README.md
: Removed the mention of the "OpenAI function calling schema generator" from the list of features.Miscellaneous:
deploy/publish.js
: Added code to removepackage-lock.json
if it exists before runningnpm install
.packages/benchmark/test/api/Primitive.ts
.