@jahia/cypress 3.35.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/env.Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM cypress/browsers:node-20.10.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1
1
+ FROM cypress/browsers:node-22.13.1-chrome-132.0.6834.159-1-ff-134.0.2-edge-132.0.2957.127-1
2
2
 
3
3
  ARG MAVEN_VER="3.8.1"
4
4
  ARG MAVEN_BASE_URL="https://archive.apache.org/dist/maven/maven-3"
package/env.provision.sh CHANGED
@@ -81,13 +81,13 @@ if [[ -d artifacts/ ]]; then
81
81
  echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Module submitted =="
82
82
  done
83
83
 
84
- # This is done after classic .jar module to ensure NPM modules are installed after engine module
84
+ # This is done after classic .jar module to ensure Javascript modules are installed after engine module
85
85
  for file in $(ls -1 *-SNAPSHOT.tgz | sort -n)
86
86
  do
87
- echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Submitting NPM module from: $file =="
87
+ echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Submitting Javascript module from: $file =="
88
88
  curl -u root:${SUPER_USER_PASSWORD} -X POST ${JAHIA_URL}/modules/api/provisioning --form script='[{"installAndStartBundle":"'"$file"'", "forceUpdate":true}]' --form file=@$file
89
89
  echo
90
- echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == NPM Module submitted =="
90
+ echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Javascript Module submitted =="
91
91
  done
92
92
  cd ..
93
93
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "3.35.0",
3
+ "version": "4.0.0",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts"