Releases: BirjuVachhani/spider
Releases · BirjuVachhani/spider
Release v2.2.0
- [#38]: Add option to generate values list just like enums.
- Dependency upgrades.
Release v2.1.0
- Uses official lints package for static analysis.
- Added more code comments.
- Fix lint warnings.
- Fix #35 Constants names have no prefixes.
- Add option to use underscores in reference names.
Release v2.0.0
- Migrated to null safey.
Release v1.1.1
- Fixed part of directive for generated classes.
Release v1.1.0
- Added private constructor for generated classes to restrict instantiation
- Format fixes
- Upgraded dependencies
Release v1.0.1
1.0.1
- fix dart format warnings
- update dependencies
Release v1.0.0
1.0.0
-
Added support for exporting generated dart code which is enabled by
default This can be helpful in cases where you want to use a single file
to import all of the generated classes. (Accessible individual classes
when importing) -
Added support to use opt in for usage of
part of
feature of dart. It
allows to avoid false imports when using export option. It makes all the
generated dart code files to behave like one file and one import. -
Added support to remove
Generated by spider...
comment line from all
the generated dart code. Allows to minimize vcs noise. -
export_file
can be used to provide name of the export file.
Breaking Changes
- Instead of providing
package
to every group, now you have to define
globalpackage
name as it makes more sense. Providing package name for
individual groups won't work.
Release v0.5.0
- Added support for
check updates
- Updated help manuals
- Updated example configs files
- Fixed verbose logs
Release v0.4.1
- Fix build command failing when there's no test generation specified
- Fix embedded version
- Added test to make sure that release version and embedded version matches
Release v0.4.0
- Spider now allows specifying multiple paths to generate dart
references under a single class. - Spider now generates test cases for dart references to make sure that
the file is present in the project.