Skip to content

Commit

Permalink
release 6.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtzr committed Nov 5, 2021
1 parent fd22501 commit 6e6b5ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 6.2.1 11/05/2021

- Add `nullable`: Added support to generate nullable attributes in schemas for swagger specs.
- Fix event namespaces: `AdHoc` channels for events did not respect namespaces when generating topic names.
- Add `default` modifier to enum attributes. Enum and primitves properties now can set a default value.
- Fix verb enum: events that included a rest resource generated an invalid json schema. (specifically included empty enum array)
- Fix env flag: it was being ignored and overriden with PROD in most places.
- Add `Summary:` syntax for summaries in swagger generated specs for operations
- Reword generated swagger descriptions for paginated APIs

## 4.0.0 12/10/2020

Revert generated topic name format for compatibility with topic names generated by earlier versions of Reslang.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveramp/reslang",
"version": "5.2.1",
"version": "6.2.1",
"main": "index.js",
"license": "Apache-2.0",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import JsonSchemaGen from "./genjsonschema"
const RULES = "rules.json"
const LOCAL_RULES = lpath.join(__dirname, "library", RULES)

export const VERSION = "v6.1.5"
export const VERSION = "v6.2.1"

// parse the cmd line
const args = yargs
Expand Down

0 comments on commit 6e6b5ba

Please sign in to comment.