Skip to content
Merged

v9.0.1 #2535

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a70567b
Bump simple-git from 3.31.1 to 3.32.2
dependabot[bot] Feb 23, 2026
9aba12b
Merge pull request #2510 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 23, 2026
56669f1
Bump inquirer from 13.2.5 to 13.3.0
dependabot[bot] Feb 23, 2026
a024cf6
Merge pull request #2509 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 23, 2026
291bfef
Bump eslint from 10.0.1 to 10.0.2
dependabot[bot] Feb 23, 2026
fe9077f
Merge pull request #2512 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 25, 2026
c9265a1
Disable fail-fast in lint and testing job
JoernBerkefeld Feb 27, 2026
fa762b2
Bump c8 from 10.1.3 to 11.0.0
dependabot[bot] Feb 27, 2026
9bbf070
Merge pull request #2518 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 27, 2026
097ee19
Bump simple-git from 3.32.2 to 3.32.3
dependabot[bot] Feb 27, 2026
1d14075
Merge pull request #2514 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 27, 2026
91bfcc3
Bump @types/node from 25.3.0 to 25.3.2
dependabot[bot] Feb 27, 2026
3479885
Merge pull request #2515 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 27, 2026
b197717
Bump fast-xml-parser from 5.3.7 to 5.4.1
dependabot[bot] Feb 27, 2026
ed77def
Merge pull request #2517 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 27, 2026
c04c62d
Bump eslint-plugin-jsdoc from 62.7.0 to 62.7.1
dependabot[bot] Feb 27, 2026
f9861bd
Merge pull request #2516 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Feb 27, 2026
2cd1071
Bump lint-staged from 16.2.7 to 16.3.1
dependabot[bot] Mar 2, 2026
389fd27
Merge pull request #2522 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Mar 5, 2026
ae106ab
Bump @types/node from 25.3.2 to 25.3.3
dependabot[bot] Mar 5, 2026
9a01263
Merge pull request #2523 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Mar 5, 2026
26127db
Bump globals from 17.3.0 to 17.4.0
dependabot[bot] Mar 5, 2026
9cc40d9
Merge pull request #2524 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Mar 5, 2026
b5c80ea
Initial plan
Copilot Mar 5, 2026
2be4a01
#2543 fix: prevent folder creation skip when same path exists in anot…
Copilot Mar 5, 2026
41258f7
#2543 chore: remove spurious empty file
Copilot Mar 5, 2026
168060b
#2543 chore: fix shebang in post-checkout hook to use sh
Copilot Mar 5, 2026
fa01840
Merge pull request #2533 from Accenture/copilot/fix-asset-folder-crea…
JoernBerkefeld Mar 5, 2026
75b29e0
Initial plan
Copilot Mar 5, 2026
4e16519
#1781 fix folder path when folder name contains slash character
Copilot Mar 5, 2026
b8f0916
#1781 render U+2215 char in test fixture instead of escape sequence
Copilot Mar 5, 2026
bea64c6
#1781 add retrieve test for script in folder whose name contains a slash
Copilot Mar 5, 2026
c5beb7d
#1781 replace script slash folder tests with asset tests, expand depl…
Copilot Mar 6, 2026
00e6de6
Merge pull request #2534 from Accenture/copilot/fix-folder-path-slash…
JoernBerkefeld Mar 6, 2026
5337428
Merge remote-tracking branch 'origin/main' into develop
JoernBerkefeld Mar 6, 2026
6f4e545
prepare-release changes
JoernBerkefeld Mar 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/code-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
lintandTesting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["20.19", 21, 22, 23, 24, 25]
name: lint & test w/ node v${{ matrix.node }}
Expand Down
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INPUT_FILE=$1
START_LINE=`head -n1 $INPUT_FILE`
PATTERN="^(#[[:digit:]]|Merge|Revert)"

if ! [[ "$START_LINE" =~ $PATTERN ]] ; then
if ! echo "$START_LINE" | grep -qE "$PATTERN" ; then
echo "Bad commit message, see example: \"#431 commit message\", you provided: \"$START_LINE\""
exit 1
fi
10 changes: 4 additions & 6 deletions .husky/post-checkout
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
# ### git commit message template ###
git config commit.template .git/templatemessage
TICKETID=`git rev-parse --abbrev-ref HEAD | LC_ALL=en_US.utf8 grep -oP '^((feature|bug|bugfix|fix|hotfix|task|chore)\/)?\K\d{1,7}' || true`
Expand All @@ -11,24 +12,21 @@ echo "[POST-CHECKOUT] Setting template commit to '$TEMPLATE'"
echo "$TEMPLATE" > ".git/templatemessage"


if [[ $SKIP_HOOKS>0 ]]; then
if [ "${SKIP_HOOKS:-0}" -gt 0 ] 2>/dev/null; then
echo "[POST-CHECKOUT] skipping hooks ($SKIP_HOOKS)"
exit 0
fi

# ### run npm install ###
echo "[POST-CHECKOUT] 📦 Checking for changes to dependencies"
# define how to split strings into array elements
IFS=$'\n'
# $1 is the new HEAD pointer
NEWHEAD=$1
# $2 is the previous HEAD pointer
OLDHEAD=$2
# extract all paths to package-lock.json files
PACKAGE_LOCK_REGEX="(^package-lock\.json)"
PACKAGES=$(git diff --name-only $OLDHEAD $NEWHEAD | grep -E $PACKAGE_LOCK_REGEX || true)
PACKAGES=$(git diff --name-only "$OLDHEAD" "$NEWHEAD" | grep -E "^package-lock\.json" || true)

if [[ ${PACKAGES[@]} ]]; then
if [ -n "$PACKAGES" ]; then
for package in $PACKAGES; do
echo "📦 $package was changed."
done
Expand Down
2 changes: 1 addition & 1 deletion @types/lib/Deployer.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion @types/lib/metadataTypes/Asset.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion @types/lib/metadataTypes/Folder.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions @types/lib/util/util.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading