diff --git a/.changeset/gentle-trees-tan.md b/.changeset/gentle-trees-tan.md deleted file mode 100644 index f693e38..0000000 --- a/.changeset/gentle-trees-tan.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@calycode/core": minor -"@calycode/cli": minor ---- - -chore: by default do not generate table schemas into the OAS spec, but allow that via flag diff --git a/.changeset/tangy-windows-taste.md b/.changeset/tangy-windows-taste.md deleted file mode 100644 index 3ae76e0..0000000 --- a/.changeset/tangy-windows-taste.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@calycode/core': patch -'@calycode/cli': patch ---- - -chore: extract the tags from the paths to the global to comply better with OAS -chore: set maxLength to strings on the error codes (owasp:api4:2019-string-limit) -chore: set type to strings (owasp:api4:2019-string-restricted) diff --git a/docs/commands/generate-spec.md b/docs/commands/generate-spec.md index 771748e..fdca9ed 100644 --- a/docs/commands/generate-spec.md +++ b/docs/commands/generate-spec.md @@ -19,6 +19,8 @@ $ xano generate spec [options] **Description:** Regenerate for all API groups in the workspace / branch of the current context. #### --print-output-dir **Description:** Expose usable output path for further reuse. +#### --include-tables +**Description:** Requests table schema fetching and inclusion into the generate spec. By default tables are not included. ### generate spec --help ```term @@ -46,6 +48,9 @@ Options: --print-output-dir Expose usable output path for further reuse. + --include-tables + Requests table schema fetching and inclusion into the generate spec. By default tables are not included. + -h, --help display help for command diff --git a/docs/xano.md b/docs/xano.md index 9508afb..5cce66f 100644 --- a/docs/xano.md +++ b/docs/xano.md @@ -17,7 +17,7 @@ Usage: xano [options] Supercharge your Xano workflow: automate backups, docs, testing, and version control — no AI guesswork, just reliable, transparent dev tools. -Current version: 0.14.0 +Current version: 0.15.0 Options: -v, --version output the version number diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index ec7273e..7dd3a0a 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,17 @@ # @calycode/xano-cli +## 0.15.0 + +### Minor Changes + +- db93d85: chore: by default do not generate table schemas into the OAS spec, but allow that via flag + +### Patch Changes + +- d9da43b: chore: extract the tags from the paths to the global to comply better with OAS + chore: set maxLength to strings on the error codes (owasp:api4:2019-string-limit) + chore: set type to strings (owasp:api4:2019-string-restricted) + ## 0.14.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 367b15d..d0388e5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@calycode/cli", - "version": "0.14.0", + "version": "0.15.0", "description": "Command-line interface for Xano providing terminal access to Xano workflows", "publishConfig": { "tag": "latest", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e53caa5..7063697 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @calycode/caly-core +## 0.12.0 + +### Minor Changes + +- db93d85: chore: by default do not generate table schemas into the OAS spec, but allow that via flag + +### Patch Changes + +- d9da43b: chore: extract the tags from the paths to the global to comply better with OAS + chore: set maxLength to strings on the error codes (owasp:api4:2019-string-limit) + chore: set type to strings (owasp:api4:2019-string-restricted) + ## 0.11.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 9bdb75a..6770576 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@calycode/core", - "version": "0.11.0", + "version": "0.12.0", "description": "Core functionality for the Caly Xano tooling providing programmatic access to Xano workflows", "publishConfig": { "tag": "latest",