File tree Expand file tree Collapse file tree
lib/open_api_typesense/plugins Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## major.minor.patch (yyyy.mm.dd)
99
10+ ## 1.0.3 (2025.06.16)
11+
12+ ### Chore
13+
14+ * Add few documents tests
15+ * Add custom encoder for JSON encoding all schemas.
16+ * Typespecs and client definitions to use snake casing for consistency.
17+ * Add custom renderer plugin for OpenAPI code gen.
18+ * Use fork version for open-api-generator, with added ` default ` field for generated schema.
19+
1020## 1.0.2 (2025.06.08)
1121
1222### Fixed
Original file line number Diff line number Diff line change @@ -12,17 +12,12 @@ config :open_api_typesense,
1212
1313config :oapi_generator ,
1414 default: [
15- # processor: OpenApiTypesense.Plugins.Processor,
1615 renderer: OpenApiTypesense.Plugins.Renderer ,
17- # naming: [
18- # field_casing: :snake
19- # ],
2016 output: [
2117 base_module: OpenApiTypesense ,
2218 location: "lib/open_api_typesense" ,
2319 operation_subdirectory: "operations/" ,
2420 schema_subdirectory: "schemas/" ,
2521 schema_use: OpenApiTypesense.Encoder
26- # extra_fields: [__info__: :map]
2722 ]
2823 ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule OpenApiTypesense.MixProject do
33
44 @ source_url "https://github.com/jaeyson/open_api_typesense"
55 @ hex_url "https://hexdocs.pm/open_api_typesense"
6- @ version "1.0.2 "
6+ @ version "1.0.3 "
77
88 def project do
99 [
You can’t perform that action at this time.
0 commit comments