Skip to content
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

chore(CHANGELOG.md): add all changes since 0.0.16 #69

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,31 @@
## next

- replace `structopt` with `clap`
- replace dependency `Inflector` with `heck`
- add dependency `thiserror`
- remove dependency `anyhow`
- add subcommand to generate shell completions
- function `generate_files` now takes in `&Path`s instead of `PathBuf`s
- remove `to_singular` name generations
- replace dependency `Inflector` with `heck`
- add option `create-str` to set `Create*` structs string type
- add option `update-str` to set `Update*` structs string type
- add option `--create-str` to set `Create*` structs string type
- add option `--update-str` to set `Update*` structs string type
- add option `--single-model-file` to only generate a single file instead of a directory with `mod.rs` and `generated.rs`
- add option `--readonly-prefix` and `--readonly-suffix` to treat a matching name as a readonly struct
- add option `--no-crud` to not generate any `impl` blocks
- derive generation has been refactored and now only necessary derives are added to a given struct
- reduce amount of empty-newlines
- add `dsync::Error`(and `dsync::error` module)
- replace most `panic!`, `.expect` and some `.unwrap` with `Result`s
- fix nullable unsigned integers not resulting in `Option<u*>`
- derive `Default` for all `Update*` structs
- use `@generated` file signature to exclude the files from formatting
- rename `type Connection =` to `type ConnectionType =` to lessen naming conflicts
- add many doc-comments to fields and functions
- list changes to files (unchanged, modified, deleted)

## 0.0.17 (yanked)

- used for testing publishing CI

## 0.0.16

Expand Down