-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: introduce build subcommand (#593) This is not a breaking change. This PR introduces a subcommand `build`. The effect from running `ucc-gen` is the same as from running `ucc-gen build`, but running `ucc-gen` without a subcommand will be deprecated in the future releases. * docs(README): ADDON-58505 support of style property in the configuration page (#594) * refactor: move validators validation to the build phase (#595) * refactor: move validators validation to the build phase Currently build phase does not have any checks for the validators. Some of the checks are done here: https://github.com/splunk/addonfactory-ucc-base-ui/blob/283d5abcf8f462ac10de876464bc1719fd19ff90/src/main/webapp/util/uccConfigurationValidators.js#L170-L184 and they are not unit tested and only show errors during the runtime. * test: add tests for inputs validators as well * build(deps): bump dunamai from 1.14.1 to 1.15.0 (#584) Bumps [dunamai](https://github.com/mtkennerly/dunamai) from 1.14.1 to 1.15.0. - [Release notes](https://github.com/mtkennerly/dunamai/releases) - [Changelog](https://github.com/mtkennerly/dunamai/blob/master/CHANGELOG.md) - [Commits](mtkennerly/dunamai@v1.14.1...v1.15.0) --- updated-dependencies: - dependency-name: dunamai dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: add importlib-metadata (#596) * fix: add additional new line to globalConfig file (#598) * feat: ucc-gen init command (#599) * feat: ucc-gen init command * chore: update licenses * docs: ADDON-58758: Doc changes for the multi-level menu (#600) * docs: ADDON-58758 Doc changes for the multilevel menu * docs: ADDON-58758 Doc changes for the multilevel menu * docs: ADDON-58758 Changed the screenshots * feat: bump UCC UI to 5.19.0 (#602) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Tushar Balar <62089106+tbalar-splunk@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
26de98e
commit 2dc1ae1
Showing
58 changed files
with
2,552 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,4 @@ header: | |
- "mkdocs.yml" | ||
- ".*" | ||
- "example/**" | ||
- "splunk_add_on_ucc_framework/commands/init_template/**" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ repos: | |
rev: 4.0.1 | ||
hooks: | ||
- id: flake8 | ||
exclude: ^splunk_add_on_ucc_framework/commands/init_template/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# `additional_packaging.py` file | ||
|
||
To extend the build process, you can create `additional_packaging.py` file in the same file level where you have your globalConfig file. | ||
|
||
This file should have `additional_packaging` function which accepts 1 argument: add-on name. | ||
|
||
Example of how to utilize it: | ||
|
||
* Build custom UI after `ucc-gen` finishes all its necessary steps. | ||
* Workaround a `ucc-gen` feature which was not implemented. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.