Version 5.2.1 - Implicit Import Fix
[5.2.1] - 2024-09-24
Changed
- The line
from typing import *
in most templates toimport typing
and now
references to classes an such fromtyping
are explicit (i.e.List
->
typing.List
)
Fixed
- Side-effects caused by
from typing import *
when messages/classes share a
name of classes in thetyping
package - Bug where
datetime
was missing from imports in gRPC senders and receivers