-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
Fix: Always serialise Map and Set to object and array in typescript-axios #17790
Fix: Always serialise Map and Set to object and array in typescript-axios #17790
Conversation
Fixes the serialization part of #11746 |
can you please follow step 3 to update the samples? |
Done! Sorry about missing the samples. Step 3 messed up some samples for all languages on Mac. Worked fine with Docker though. This script might be useful for Mac users if it happens to others: docker run -it --rm --workdir /project -v $PWD:/project sapmachine:21-jdk-ubuntu sh -c './mvnw clean package && ./bin/generate-samples.sh ./bin/configs/*.yaml && ./bin/utils/export_docs_generators.sh' |
I replaced |
can you please merge the latest master into your branch as the ts axios test failures have been fixed? |
4c41422
to
21794c0
Compare
Rebased from master now. |
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.
LGTM
@adrianhelvikspond can you fix the build issue? |
I updated the tsconfig so it downlevels iterators to |
@@ -4,6 +4,7 @@ | |||
"target": "ES5", | |||
"module": "commonjs", | |||
"noImplicitAny": true, | |||
"downlevelIteration": true, |
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.
can you rewrite the code so it does not need this change? some folks might be using the generated code without the generated tsconfig.json
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.
Yep. I'll use forEach instead. Shouldn't expose any details about iterators, and makes it compatible with IE11 without a Symbol.iterator polyfill.
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.
I've made the changes and updated the documentation.
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.
And now I've rebased from master again.
44c90da
to
c017caf
Compare
6651ccc
to
921ae3c
Compare
@macjohnny, @wing328, @adrianhelvikspond this introduced new issue. Now Date object is serialized to
After serialization becomes:
This might happen not only with dates. Looks like you have to check if object has Had to downgrade from v7.5.0-SNAPSHOT to v7.4.0. |
@adrianhelvikspond do you want to fix this? |
This PR also changed the response for binary media, prior to 7.5.0, my response looked like:
but it now appears as:
|
This produces type definitions that aren't compatible with the typescript-axios client:
My fix serialises of
Set
s into arrays andMap
s into objects, since otherwise they are not serialized with JSON.stringify, see https://stackoverflow.com/questions/31190885/json-stringify-a-setPR checklist
Commit all changed files.
This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master.
These must match the expectations made by your contribution.
You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example
./bin/generate-samples.sh bin/configs/java*
.IMPORTANT: Do NOT purge/delete any folders/files (e.g. tests) when regenerating the samples as manually written tests may be removed.
master
(upcoming 7.1.0 minor release - breaking changes with fallbacks),8.0.x
(breaking changes without fallbacks)@TiFu @taxpon @sebastianhaas @kenisteward @Vrolijkx @macjohnny @topce @akehir @petejohansonxo @amakhrov @davidgamero @mkusaka