Support package-names with dashes in them (#232)
Support package-names with dashes in them We were smart about aliasing if you have name-collisions, but not if your package name is something that's not a valid identifier, like `"path/to/my-package"`, which Go for better or worse allows. Now we remove all the invalid characters (in practice mainly dashes, dots, and leading digits). Fixes #231. Test plan: make check
This commit is contained in:
+2
-1
@@ -28,7 +28,8 @@ When releasing a new version:
|
||||
|
||||
### Bug fixes:
|
||||
|
||||
- Fixed non-deterministic generated code when querying graphql interfaces
|
||||
- Fixed non-deterministic generated code when querying graphql interfaces.
|
||||
- Fixed generated code when last component of package name is not a valid identifier (e.g. `"path/to/my-package"`).
|
||||
|
||||
## v0.5.0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user