Skip to content

Commit

Permalink
Updating spec version to 0.13.0 (#1186)
Browse files Browse the repository at this point in the history
* Updating spec version to 0.13.0

* Updating spec version to 0.13.0

* Updating spec version to 0.13.0
  • Loading branch information
rismehta authored Apr 13, 2024
1 parent 6556e4f commit 27be46c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spec-validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Check if any commit message contains a specific keyword or pattern (e.g., "RTC")
if echo "$commit_messages" | grep -q 'RTC' && echo "$changed_files" | grep -E 'resources/schema/.*\.json$'; then
echo "Commit message contains 'RTC' keyword, and specification files have changed. Build passed. Please check if your changes are working in visual rule editor"
echo "Commit message contains 'RTC' keyword, and specification files have changed. Build passed. Please check if your changes are working in visual rule editor. Update spec version in form container dialog"
else
echo "Either commit message doesn't contain 'RTC' keyword or specification files haven't changed. Build failed. Please check if your changes are working in visual rule editor"
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@
<specVersion
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/hidden"
ignoreData="{Boolean}true"
name="./specVersion"
value="0.12.5"/>
value="0.13.0"/>
</items>
</container>
</items>
Expand Down
6 changes: 6 additions & 0 deletions ui.tests/test-module/libs/support/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ Cypress.on('uncaught:exception', (err, runnable) => {
return false;
}

// occasionally this error is seen
// https://web-sdk.aptrinsic.com/api/aptrinsic.js?a=AP-AULLRFDZLJ9K-2-1:8:60690
if (err.message.includes("Cannot read properties of undefined (reading 'contentWindow')")) {
return false;
}

// circle ci is seen hanging due to this error
if (err.message.includes("Cannot read properties of null (reading")) {
return false;
Expand Down

0 comments on commit 27be46c

Please sign in to comment.