-
Notifications
You must be signed in to change notification settings - Fork 264
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
Modify how arrays are resolved by default #6428
base: main
Are you sure you want to change the base?
Modify how arrays are resolved by default #6428
Conversation
All changed packages have been documented.
Show changes
|
You can try these changes here
|
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.
- We also need to ensure the mocks are generated correctly for these types
- This will at least mean updating the logic in mock generation and in Initialiizer to handle enumerable types with an empty list of the appropriate type
- I think we should pick out some specs to do end-to-end validation against manually : we should be able to compile and scaffold services containing array types in multiple contexts (operation param, operation result, model property)
…Mendez/typespec into change-default-arrays-cs
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.
A few questions.
My biggest ask is that we have a plan for end-to-end testing
- Adding to the test project for the new constraint attributes
- Doing some manual end-to-end tests of actual specs
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.
A question:
- Thinking more about this, there is still good reason to use arrays for performance, how difficult would it be to add an option that chose between IEnumerable and array (
collection-type
= "array" | "enumerable")? - I think
ISet<T>
should be the default when@uniqueItems
is present, regardless of the above. - I think we want to use
IEnumerable<T>
in all contexts (Controllers, interfaces, models) when this is chosen.
.chronus/changes/change-default-arrays-cs-2025-2-28-13-55-13.md
Outdated
Show resolved
Hide resolved
I think it should be quite simple to make this an option but let me work really quick on this, which one do we want to make the default? |
Co-authored-by: Mark Cowlishaw <markcowl@microsoft.com>
issue: #6372