Skip to content

Commit

Permalink
Merge branch 'develop' into feature/pin-sui
Browse files Browse the repository at this point in the history
  • Loading branch information
artemrys authored Apr 22, 2024
2 parents d4553cf + 6a8784c commit 443a6b4
Show file tree
Hide file tree
Showing 9 changed files with 22,508 additions and 8,273 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ jobs:
if: "! github.event.pull_request.head.repo.fork "
- run: curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1
- run: poetry install
- name: Check docs
run: poetry run mkdocs build --strict
- name: Build UCC
run: |
cp -R built-ui/. splunk_add_on_ucc_framework/package/appserver/static/js/
Expand Down
19 changes: 15 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ name: docs
on:
push:
branches:
- main
- "main"
- "develop"
- "release/**"
pull_request:
branches:
- "main"
- "develop"
- "release/**"
jobs:
deploy:
runs-on: ubuntu-latest
Expand All @@ -24,10 +31,14 @@ jobs:
- name: Build Storybook
run: |
cd ui
yarn run build-storybook
cp -R storybook-static ../docs/storybook
yarn run build-storybook --quiet --output-dir ../docs/storybook/
cd ../
- run: |
curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1
poetry install
- run: poetry run mkdocs gh-deploy --force
- name: Deploy to GitHub Pages
if: github.ref_name == 'main'
run: poetry run mkdocs gh-deploy --force --strict
- name: Build Docs
if: github.ref_name != 'main'
run: poetry run mkdocs build --strict
30,734 changes: 22,469 additions & 8,265 deletions NOTICE

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [5.42.0](https://github.com/splunk/addonfactory-ucc-generator/compare/v5.41.0...v5.42.0) (2024-04-19)


### Bug Fixes

* add customScript for alert action ([#1143](https://github.com/splunk/addonfactory-ucc-generator/issues/1143)) ([12d8392](https://github.com/splunk/addonfactory-ucc-generator/commit/12d8392cc87b8f8c8cd08e0e2f294a413beee7a6))
* add schema version update for alert action ([#1150](https://github.com/splunk/addonfactory-ucc-generator/issues/1150)) ([94f3070](https://github.com/splunk/addonfactory-ucc-generator/commit/94f3070d92bff98aa6212f59230a1f3cd1b5d0aa))
* update idna to 3.7 ([#1146](https://github.com/splunk/addonfactory-ucc-generator/issues/1146)) ([ece8f65](https://github.com/splunk/addonfactory-ucc-generator/commit/ece8f650430e0e5f8cc51f04c5d23caf5d582b14))


### Features

* **adaptiveResponse:** add verbose details for AR alert action ([#1135](https://github.com/splunk/addonfactory-ucc-generator/issues/1135)) ([b19d678](https://github.com/splunk/addonfactory-ucc-generator/commit/b19d678baa0abda207dcf669eaf2a9180bc6585d))
* add iconFileName for alert action ([#1134](https://github.com/splunk/addonfactory-ucc-generator/issues/1134)) ([5a76706](https://github.com/splunk/addonfactory-ucc-generator/commit/5a76706df91ab115c285619adf5db5af712c4581)), closes [#1105](https://github.com/splunk/addonfactory-ucc-generator/issues/1105)
* **CheckboxGroup:** add support for required field ([#1131](https://github.com/splunk/addonfactory-ucc-generator/issues/1131)) ([e101aa3](https://github.com/splunk/addonfactory-ucc-generator/commit/e101aa37263b4c26968c573682c29661a0ccd34a))
* create a playground for global config ([#1144](https://github.com/splunk/addonfactory-ucc-generator/issues/1144)) ([791a6dc](https://github.com/splunk/addonfactory-ucc-generator/commit/791a6dc7ec6abea179c5601093a9bde86ba64ab4))
* enhanced monitoring dashboard ([#1125](https://github.com/splunk/addonfactory-ucc-generator/issues/1125)) ([2d2b143](https://github.com/splunk/addonfactory-ucc-generator/commit/2d2b143c2e8d17341ad8860a4681a096e56eba4a))

# [5.41.0](https://github.com/splunk/addonfactory-ucc-generator/compare/v5.40.0...v5.41.0) (2024-04-02)


Expand Down
1 change: 1 addition & 0 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Build and Test

Prerequisites:

- Node.js LTS version ([Node.js](https://nodejs.org/en/download), or use [nvm](https://github.com/nvm-sh/nvm))
- Yarn Classic (`npm install --global yarn`)
- Poetry 1.5.1. [Installation guide](https://python-poetry.org/docs/#installing-with-the-official-installer)
Expand Down
2 changes: 2 additions & 0 deletions docs/entity/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Components are used by UCC to render the Inputs and Configuration pages. See the following list of the supported components.

For a detailed look at our component implementations and to interact with them in a live environment, visit our <a href="/addonfactory-ucc-generator/storybook">Storybook library</a>.

## `Text`

See the underlying `@splunk/react-ui` component: [`Text`](https://splunkui.splunk.com/Packages/react-ui/Text).
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ nav:
- Troubleshooting: "troubleshooting.md"
- Contributing: "contributing.md"
- Changelog: "CHANGELOG.md"
- Storybook: "storybook/index.html"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[tool.poetry]
name = "splunk_add_on_ucc_framework"
version = "5.41.0"
version = "5.42.0"
description = "Splunk Add-on SDK formerly UCC is a build and code generation framework"
license = "Apache-2.0"
authors = ["Splunk <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion splunk_add_on_ucc_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "5.41.0"
__version__ = "5.42.0"

import logging

Expand Down

0 comments on commit 443a6b4

Please sign in to comment.