1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

changelog: upcoming 0.3.5 changelog

This commit is contained in:
Alexander Medvednikov 2023-05-07 19:55:18 +02:00
parent a0a8b7e47a
commit b50dac5e9a

View File

@ -1,3 +1,10 @@
## V 0.3.5
*not yet released*
- Struct fields can now be skipped during JSON/ORM serialization via `[json:'-']` and `[sql:'-']`,
in addition to `[skip]`. This allows having custom behavior for different serialization methods.
- ORM: fixed a foreign key bug that could result in an extra insert.
- Generic functions as function parameters are now supported: `fn f[T](x T, i int, f_ Fn[T]) T { `.
## V 0.3.4
*30 Apr 2023*