diff --git a/.changeset/bumpy-moons-hear.md b/.changeset/bumpy-moons-hear.md deleted file mode 100644 index 2260bb7..0000000 --- a/.changeset/bumpy-moons-hear.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@calycode/core": patch -"@calycode/cli": patch ---- - -fix: fixing default registry item .xs function to match new syntax diff --git a/.changeset/many-moments-smile.md b/.changeset/many-moments-smile.md deleted file mode 100644 index 7c91cfb..0000000 --- a/.changeset/many-moments-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calycode/cli": patch ---- - -fix: several fixes for the registry related command, updated scaffolded registry directory structure, fixed url processing from env, fixed multiple issues with adding items to the remote Xano instance diff --git a/.changeset/olive-animals-attend.md b/.changeset/olive-animals-attend.md deleted file mode 100644 index 80467db..0000000 --- a/.changeset/olive-animals-attend.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@calycode/core": patch -"@calycode/cli": patch ---- - -chore: added test-config.schema, now it's easier to actually know what a test config should look like diff --git a/.changeset/stupid-views-relate.md b/.changeset/stupid-views-relate.md deleted file mode 100644 index 886fbbb..0000000 --- a/.changeset/stupid-views-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calycode/cli": patch ---- - -chore: updated the output of the registry-add command for better readibility and to expose the errors that Xano returns --> thus allowing actually remote linting of .xs files as well diff --git a/docs/commands/registry-add.md b/docs/commands/registry-add.md index 0a1e6db..99561bb 100644 --- a/docs/commands/registry-add.md +++ b/docs/commands/registry-add.md @@ -13,19 +13,21 @@ $ xano registry-add [options] **Description:** The workspace name. This is used to fetch the workspace configuration. Same as on Xano interface. #### --branch **Description:** The branch name. This is used to select the branch configuration. Same as on Xano Interface. -#### --components -**Description:** Comma-separated list of components to add #### --registry **Description:** URL to the component registry. Default: http://localhost:5500/registry/definitions ### registry-add --help ```term $ xano registry-add --help -Usage: xano registry-add [options] +Usage: xano registry-add [options] Add a prebuilt component to the current Xano context, essentially by pushing an item from the registry to the Xano instance. +Arguments: + components Space delimited list of components to add to your + Xano instance. + Options: --instance The instance name. This is used to fetch the instance configuration. The value provided at the setup @@ -34,7 +36,6 @@ Options: workspace configuration. Same as on Xano interface. --branch The branch name. This is used to select the branch configuration. Same as on Xano Interface. - --components Comma-separated list of components to add --registry URL to the component registry. Default: http://localhost:5500/registry/definitions -h, --help display help for command diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 0134b4f..257aac6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,14 @@ # @calycode/xano-cli +## 0.7.7 + +### Patch Changes + +- bc0d509: fix: fixing default registry item .xs function to match new syntax +- bc0d509: fix: several fixes for the registry related command, updated scaffolded registry directory structure, fixed url processing from env, fixed multiple issues with adding items to the remote Xano instance +- bc0d509: chore: added test-config.schema, now it's easier to actually know what a test config should look like +- bc0d509: chore: updated the output of the registry-add command for better readibility and to expose the errors that Xano returns --> thus allowing actually remote linting of .xs files as well + ## 0.7.6 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 35e89c4..a8df05f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@calycode/cli", - "version": "0.7.6", + "version": "0.7.7", "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 e32f355..7e766be 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # @calycode/caly-core +## 0.6.9 + +### Patch Changes + +- bc0d509: fix: fixing default registry item .xs function to match new syntax +- bc0d509: chore: added test-config.schema, now it's easier to actually know what a test config should look like + ## 0.6.8 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index d4f9fc2..9056d68 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@calycode/core", - "version": "0.6.8", + "version": "0.6.9", "description": "Core functionality for the Caly Xano tooling providing programmatic access to Xano workflows", "publishConfig": { "tag": "latest",