diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/package.json new file mode 100644 index 0000000000..d16ebedae3 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/package.json @@ -0,0 +1,10 @@ +{ + "name": "cypress", + "productName": "Cypress", + "description": "Cypress.io end to end testing tool", + "version": "6.2.1", + "electronVersion": "11.1.1", + "electronNodeVersion": "12.18.3", + "main": "index.js", + "env": "production" +} \ No newline at end of file diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/desktop-gui/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/desktop-gui/package.json new file mode 100644 index 0000000000..ba8b526b8c --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/desktop-gui/package.json @@ -0,0 +1,22 @@ +{ + "name": "@packages/desktop-gui", + "version": "0.0.0", + "private": true, + "main": "lib/gui.js", + "scripts": { + "build": "webpack", + "build-prod": "cross-env NODE_ENV=production yarn build", + "clean-deps": "rm -rf node_modules", + "cypress:open": "cross-env TZ=America/New_York node ../../scripts/cypress open --project .", + "cypress:run": "cross-env TZ=America/New_York node ../../scripts/cypress run --project .", + "dev": "yarn start-test 5005 cypress:open", + "postinstall": "echo '@packages/desktop-gui needs: yarn build'", + "start": "http-server -p 5005 dist", + "watch": "yarn build --watch --progress" + }, + "files": [ + "dist", + "lib", + "!lib/**/*_spec.jsx" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/driver/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/driver/package.json new file mode 100644 index 0000000000..ac3067b680 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/driver/package.json @@ -0,0 +1,22 @@ +{ + "name": "@packages/driver", + "version": "0.0.0", + "private": true, + "scripts": { + "clean-deps": "rm -rf node_modules", + "cypress:open": "node ../../scripts/cypress open", + "cypress:run": "node ../../scripts/cypress run", + "postinstall": "patch-package", + "start": "node -e 'console.log(require(`chalk`).red(`\nError:\n\tRunning \\`yarn start\\` is no longer needed for driver/cypress tests.\n\tWe now automatically spawn the server in the pluginsFile.\n\tChanges to the server will be watched and reloaded automatically.`))'" + }, + "dependencies": {}, + "files": [ + "lib", + "patches" + ], + "workspaces": { + "nohoist": [ + "*" + ] + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/electron/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/electron/package.json new file mode 100644 index 0000000000..94c15c801a --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/electron/package.json @@ -0,0 +1,33 @@ +{ + "name": "@packages/electron", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build": "node ./bin/cypress-electron --install", + "build-prod": "yarn build", + "clean-deps": "rm -rf node_modules", + "postinstall": "echo '@packages/electron needs: yarn build'", + "start": "./bin/cypress-electron", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "mocha", + "test-watch": "yarn test-unit --watch" + }, + "dependencies": { + "@cypress/icons": "0.7.0", + "bluebird": "3.5.3", + "debug": "4.1.1", + "electron-packager": "14.1.1", + "fs-extra": "8.1.0", + "lodash": "4.17.19", + "minimist": "1.2.5" + }, + "files": [ + "dist", + "lib" + ], + "bin": { + "cypress-electron": "./bin/cypress-electron" + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/cypress/fixtures/example.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/cypress/fixtures/example.json new file mode 100644 index 0000000000..02e4254378 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/package.json new file mode 100644 index 0000000000..d6c0f20fd8 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/example/package.json @@ -0,0 +1,27 @@ +{ + "name": "@packages/example", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "postinstall": "echo '@packages/example needs: yarn build'", + "clean-deps": "rm -rf node_modules", + "test": "yarn test-unit", + "test-e2e": "cypress run", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "cross-env NODE_ENV=test mocha", + "test-watch": "yarn test-unit --watch", + "build": "node ./bin/build.js && gulp build", + "build-prod": "yarn build", + "predeploy": "yarn build", + "deploy": "gulp deploy" + }, + "files": [ + "cypress", + "lib" + ], + "dependencies": { + "bluebird": "3.5.3", + "glob": "7.1.3" + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/app/manifest.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/app/manifest.json new file mode 100644 index 0000000000..a2c8268b7f --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/app/manifest.json @@ -0,0 +1,40 @@ +{ + "name": "Cypress", + "description": "Adds WebExtension APIs for testing with Cypress", + "applications": { + "gecko": { + "id": "automation-extension@cypress.io" + } + }, + "permissions": [ + "cookies", + "tabs", + "http://*/*", + "https://*/*", + "" + ], + "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAugoxpSqfoblTYUGvyXZpmBgjYQUY9k2Hx3PaDwquyaTH6GBxitwVMSu5sZuDYgPHpGYoF4ol6A4PZHhd6JvfuUDS9ZrxTW0XzP+dSS9AwmJo3uLuP88zBs4mhpje1+WE5NGM0pTzyCXYTPoyzyPRmToALWD96cahSGuhG8bSmaBw3py+16qNKm8SOlANbUvHtEaTpmrSWBUIq7YV8SIPLtR8G47vjqPTE1yEsBQ3GAgllhi0cJolwk/629fRLr3KVckICmU6spXD/jVhIgAeyHhFuFGYNuubzbel8trBVw5Q/HE5F6j66sBvEvW64tH4lPxnM5JPv0qie5wouPiT0wIDAQAB", + "icons": { + "16": "icons/icon_16x16.png", + "48": "icons/icon_48x48.png", + "128": "icons/icon_128x128.png" + }, + "browser_action": { + "default_title": "Cypress", + "default_icon": { + "19": "icons/icon_19x19.png", + "38": "icons/icon_38x38.png" + }, + "default_popup": "popup.html" + }, + "background": { + "scripts": [ + "background.js" + ] + }, + "chrome_url_overrides": { + "newtab": "newtab.html" + }, + "manifest_version": 2, + "version": "0.0.0" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/dist/manifest.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/dist/manifest.json new file mode 100644 index 0000000000..a2c8268b7f --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/dist/manifest.json @@ -0,0 +1,40 @@ +{ + "name": "Cypress", + "description": "Adds WebExtension APIs for testing with Cypress", + "applications": { + "gecko": { + "id": "automation-extension@cypress.io" + } + }, + "permissions": [ + "cookies", + "tabs", + "http://*/*", + "https://*/*", + "" + ], + "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAugoxpSqfoblTYUGvyXZpmBgjYQUY9k2Hx3PaDwquyaTH6GBxitwVMSu5sZuDYgPHpGYoF4ol6A4PZHhd6JvfuUDS9ZrxTW0XzP+dSS9AwmJo3uLuP88zBs4mhpje1+WE5NGM0pTzyCXYTPoyzyPRmToALWD96cahSGuhG8bSmaBw3py+16qNKm8SOlANbUvHtEaTpmrSWBUIq7YV8SIPLtR8G47vjqPTE1yEsBQ3GAgllhi0cJolwk/629fRLr3KVckICmU6spXD/jVhIgAeyHhFuFGYNuubzbel8trBVw5Q/HE5F6j66sBvEvW64tH4lPxnM5JPv0qie5wouPiT0wIDAQAB", + "icons": { + "16": "icons/icon_16x16.png", + "48": "icons/icon_48x48.png", + "128": "icons/icon_128x128.png" + }, + "browser_action": { + "default_title": "Cypress", + "default_icon": { + "19": "icons/icon_19x19.png", + "38": "icons/icon_38x38.png" + }, + "default_popup": "popup.html" + }, + "background": { + "scripts": [ + "background.js" + ] + }, + "chrome_url_overrides": { + "newtab": "newtab.html" + }, + "manifest_version": 2, + "version": "0.0.0" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/package.json new file mode 100644 index 0000000000..c2927f4fe5 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/package.json @@ -0,0 +1,28 @@ +{ + "name": "@packages/extension", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build": "gulp build", + "build-prod": "yarn build", + "clean": "gulp clean", + "clean-deps": "rm -rf node_modules", + "postinstall": "echo '@packages/extension needs: yarn build'", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json", + "test-watch": "yarn test-unit --watch", + "watch": "gulp watch" + }, + "dependencies": { + "bluebird": "3.5.3", + "lodash": "4.17.19" + }, + "files": [ + "app", + "dist", + "lib", + "theme" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/theme/manifest.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/theme/manifest.json new file mode 100644 index 0000000000..354b249c7d --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/extension/theme/manifest.json @@ -0,0 +1,44 @@ +{ + "name": "Cypress Theme", + "version": "1.0", + "manifest_version": 2, + "theme": { + "colors": { + "bookmark_text": [ + 0, + 0, + 0 + ], + "frame": [ + 29, + 31, + 33 + ], + "tab_background_text": [ + 255, + 255, + 255 + ], + "ntp_section": [ + 255, + 255, + 255 + ] + }, + "images": { + "theme_frame": "images/theme_frame.png" + }, + "tints": { + "frame_inactive": [ + -1, + -1, + -1 + ], + "background_tab": [ + -1, + -1, + -1 + ] + } + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/https-proxy/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/https-proxy/package.json new file mode 100644 index 0000000000..f000fde58b --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/https-proxy/package.json @@ -0,0 +1,27 @@ +{ + "name": "@packages/https-proxy", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "clean-deps": "rm -rf node_modules", + "https": "node https.js", + "regenerate:certs": "cd ./test/helpers/certs && ./regenerate-certs.sh", + "start": "node index.js", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json", + "test-watch": "cross-env NODE_ENV=test mocha --watch" + }, + "dependencies": { + "bluebird": "3.5.3", + "debug": "4.1.1", + "fs-extra": "8.1.0", + "lodash": "4.17.19", + "node-forge": "0.10.0", + "semaphore": "1.1.0" + }, + "files": [ + "lib" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/launcher/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/launcher/package.json new file mode 100644 index 0000000000..b054bfd189 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/launcher/package.json @@ -0,0 +1,28 @@ +{ + "name": "@packages/launcher", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build-prod": "tsc --project .", + "clean": "node scripts/clean.js || true", + "clean-deps": "rm -rf node_modules", + "clean-js": "yarn clean", + "size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";", + "test": "yarn test-unit", + "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json" + }, + "dependencies": { + "bluebird": "3.5.3", + "debug": "4.1.1", + "execa": "4.0.0", + "fs-extra": "8.1.0", + "lodash": "4.17.19", + "plist": "3.0.1", + "ramda": "0.24.1" + }, + "files": [ + "lib" + ], + "types": "./lib/types.ts" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/net-stubbing/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/net-stubbing/package.json new file mode 100644 index 0000000000..7dce5827b2 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/net-stubbing/package.json @@ -0,0 +1,22 @@ +{ + "name": "@packages/net-stubbing", + "version": "0.0.0", + "private": true, + "main": "./lib/server", + "scripts": { + "build-prod": "tsc --project .", + "clean-deps": "rm -rf node_modules", + "test": "mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json --exit test/unit/*" + }, + "dependencies": { + "@types/mime-types": "2.1.0", + "is-html": "^2.0.0", + "lodash": "4.17.15", + "mime-types": "2.1.27", + "minimatch": "^3.0.4", + "throttle": "^1.0.3" + }, + "files": [ + "lib" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/network/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/network/package.json new file mode 100644 index 0000000000..e128d69f0c --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/network/package.json @@ -0,0 +1,27 @@ +{ + "name": "@packages/network", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build-prod": "tsc --project .", + "clean": "rm lib/*.js", + "clean-deps": "rm -rf node_modules", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json", + "test-watch": "yarn test-unit --watch" + }, + "dependencies": { + "@cypress/parse-domain": "2.4.0", + "bluebird": "3.5.3", + "concat-stream": "1.6.2", + "debug": "4.1.1", + "lodash": "4.17.19", + "proxy-from-env": "1.0.0" + }, + "files": [ + "lib" + ], + "types": "./lib/index.ts" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/proxy/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/proxy/package.json new file mode 100644 index 0000000000..85e443f5e1 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/proxy/package.json @@ -0,0 +1,30 @@ +{ + "name": "@packages/proxy", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build-prod": "tsc --project .", + "clean-deps": "rm -rf node_modules", + "run-mocha": "mocha -r @packages/ts/register -r test/pretest.ts --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json", + "test": "yarn run-mocha \"test/integration/*.spec.ts\" \"test/unit/**/*.spec.ts\"", + "test-integration": "yarn run-mocha \"test/integration/*.spec.ts\"", + "test-unit": "yarn run-mocha \"test/unit/**/*.spec.ts\"" + }, + "dependencies": { + "bluebird": "3.5.3", + "charset": "1.0.1", + "common-tags": "1.8.0", + "debug": "4.1.1", + "grapheme-splitter": "1.0.4", + "iconv-lite": "0.6.2", + "lodash": "4.17.19", + "pumpify": "1.5.1", + "through": "2.3.8", + "utf8-stream": "0.0.0" + }, + "files": [ + "lib" + ], + "types": "./lib/index.ts" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/reporter/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/reporter/package.json new file mode 100644 index 0000000000..57c0846fda --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/reporter/package.json @@ -0,0 +1,16 @@ +{ + "name": "@packages/reporter", + "version": "0.0.0", + "private": true, + "main": "src/main.tsx", + "scripts": { + "build-for-tests": "webpack", + "clean-deps": "rm -rf node_modules", + "cypress:open": "node ../../scripts/cypress open --project .", + "cypress:run": "node ../../scripts/cypress run --project .", + "watch": "yarn build-for-tests --watch --progress" + }, + "files": [ + "lib" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/rewriter/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/rewriter/package.json new file mode 100644 index 0000000000..e59a9c24fd --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/rewriter/package.json @@ -0,0 +1,33 @@ +{ + "name": "@packages/rewriter", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build-prod": "tsc --project .", + "build-test": "yarn build-prod --noEmit", + "clean-deps": "rm -rf node_modules", + "test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json" + }, + "dependencies": { + "ast-types": "0.13.3", + "bluebird": "3.7.2", + "chai-as-promised": "7.1.1", + "debug": "4.1.1", + "lodash": "4.17.19", + "parse5-html-rewriting-stream": "5.1.1", + "recast": "0.19.1" + }, + "files": [ + "lib" + ], + "types": "./lib/index.ts", + "workspaces": { + "nohoist": [ + "parse5-html-rewriting-stream", + "parse5-html-rewriting-stream/**", + "@types/parse5-html-rewriting-stream", + "@types/parse5-html-rewriting-stream/**" + ] + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/root/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/root/package.json new file mode 100644 index 0000000000..4dc8aed939 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/root/package.json @@ -0,0 +1,6 @@ +{ + "name": "@packages/root", + "version": "0.0.0", + "description": "dummy package pointing at the root package", + "main": "index.js" +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/runner/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/runner/package.json new file mode 100644 index 0000000000..71fc4ab6f9 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/runner/package.json @@ -0,0 +1,23 @@ +{ + "name": "@packages/runner", + "version": "0.0.0", + "private": true, + "main": "src/index.js", + "scripts": { + "build": "webpack", + "build-prod": "cross-env NODE_ENV=production yarn build", + "clean-deps": "rm -rf node_modules", + "cypress:open": "node ../../scripts/cypress open", + "cypress:run": "node ../../scripts/cypress run", + "postinstall": "echo '@packages/runner needs: yarn build'", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "mocha --config test/.mocharc.json src/**/*.spec.*", + "test-watch": "yarn test-unit --watch", + "watch": "webpack --watch --progress" + }, + "files": [ + "dist", + "lib" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/lib/scaffold/fixtures/example.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/lib/scaffold/fixtures/example.json new file mode 100644 index 0000000000..da18d9352a --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/lib/scaffold/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} \ No newline at end of file diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/package.json new file mode 100644 index 0000000000..5c619929f9 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/server/package.json @@ -0,0 +1,137 @@ +{ + "name": "@packages/server", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build-prod": "tsc", + "clean-deps": "rm -rf node_modules", + "codecov": "codecov", + "dev": "node index.js", + "docker": "cd ../.. && WORKING_DIR=/packages/server ./scripts/run-docker-local.sh", + "postinstall": "patch-package", + "repl": "node repl.js", + "start": "node ../../scripts/cypress open --dev --global", + "test": "node ./test/scripts/run.js", + "test-e2e": "node ./test/scripts/run.js --glob-in-dir=test/e2e", + "test-integration": "node ./test/scripts/run.js --glob-in-dir=test/integration", + "test-performance": "node ./test/scripts/run.js --glob-in-dir=test/performance", + "test-unit": "node ./test/scripts/run.js --glob-in-dir=test/unit", + "test-watch": "./test/support/watch test" + }, + "dependencies": { + "@benmalka/foxdriver": "0.4.1", + "@cypress/commit-info": "2.2.0", + "@cypress/get-windows-proxy": "1.6.1", + "@cypress/icons": "0.7.0", + "@cypress/mocha-teamcity-reporter": "1.0.0", + "@cypress/request": "2.88.5", + "@cypress/request-promise": "4.2.6", + "@cypress/webpack-batteries-included-preprocessor": "2.1.3", + "@cypress/webpack-preprocessor": "*", + "@ffmpeg-installer/ffmpeg": "1.0.20", + "ansi_up": "4.0.4", + "black-hole-stream": "0.0.1", + "bluebird": "3.7.0", + "chai": "1.10.0", + "chalk": "2.4.2", + "check-more-types": "2.24.0", + "chokidar": "3.2.2", + "chrome-remote-interface": "0.28.2", + "cli-table3": "0.5.1", + "coffeescript": "1.12.7", + "color-string": "1.5.4", + "command-exists": "1.2.9", + "common-tags": "1.8.0", + "compression": "1.7.4", + "content-type": "1.0.4", + "cookie-parser": "1.4.5", + "data-uri-to-buffer": "2.0.1", + "debug": "4.1.1", + "dependency-tree": "7.0.2", + "duplexify": "4.1.1", + "electron-context-menu": "2.2.0", + "errorhandler": "1.5.1", + "evil-dns": "0.2.0", + "execa": "1.0.0", + "express": "4.17.1", + "find-process": "1.4.1", + "firefox-profile": "4.0.0", + "fix-path": "3.0.0", + "fluent-ffmpeg": "2.1.2", + "fs-extra": "8.1.0", + "get-port": "5.1.1", + "getos": "3.2.1", + "glob": "7.1.3", + "graceful-fs": "4.2.0", + "http-proxy": "cypress-io/node-http-proxy#9322b4b69b34f13a6f3874e660a35df3305179c6", + "human-interval": "1.0.0", + "image-size": "0.8.3", + "is-fork-pr": "2.5.0", + "is-html": "2.0.0", + "jimp": "0.14.0", + "jsonlint": "1.6.3", + "konfig": "0.2.1", + "launch-editor": "2.2.1", + "lazy-ass": "1.6.0", + "lockfile": "1.0.4", + "lodash": "4.17.19", + "log-symbols": "2.2.0", + "marionette-client": "cypress-io/marionette-client#2cddf7d791cca7be5191d7fe103d58be7283957d", + "md5": "2.3.0", + "mime": "2.4.4", + "minimatch": "3.0.4", + "minimist": "1.2.5", + "mocha-7.0.1": "npm:mocha@7.0.1", + "mocha-junit-reporter": "2.0.0", + "mocha-teamcity-reporter": "3.0.0", + "moment": "2.27.0", + "morgan": "1.9.1", + "node-machine-id": "1.1.12", + "opn": "cypress-io/opn#2f4e9a216ca7bdb95dfae9d46d99ddf004b3cbb5", + "ospath": "1.2.2", + "p-queue": "6.1.0", + "pluralize": "8.0.0", + "ramda": "0.24.1", + "randomstring": "1.1.5", + "resolve": "1.17.0", + "return-deep-diff": "0.4.0", + "sanitize-filename": "1.6.3", + "semver": "7.3.2", + "send": "0.17.1", + "shell-env": "3.0.0", + "signal-exit": "3.0.3", + "squirrelly": "7.9.2", + "strip-ansi": "6.0.0", + "syntax-error": "1.4.0", + "systeminformation": "4.27.11", + "term-size": "2.1.0", + "through": "2.3.8", + "tough-cookie": "4.0.0", + "trash": "5.2.0", + "tree-kill": "1.2.2", + "ts-node": "8.5.4", + "underscore": "1.9.1", + "underscore.string": "3.3.5", + "url-parse": "1.4.7", + "uuid": "8.2.0", + "which": "2.0.2", + "widest-line": "3.1.0", + "winston": "2.4.4" + }, + "files": [ + "config", + "lib", + "patches" + ], + "types": "index.d.ts", + "productName": "Cypress", + "workspaces": { + "nohoist": [ + "@benmalka/foxdriver" + ] + }, + "optionalDependencies": { + "registry-js": "1.8.0" + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/socket/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/socket/package.json new file mode 100644 index 0000000000..3a4cfce9fa --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/socket/package.json @@ -0,0 +1,28 @@ +{ + "name": "@packages/socket", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "clean-deps": "rm -rf node_modules", + "postinstall": "patch-package", + "test": "yarn test-unit", + "test-debug": "yarn test-unit --inspect-brk=5566", + "test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json", + "test-watch": "cross-env NODE_ENV=test mocha --watch" + }, + "dependencies": { + "socket.io": "2.3.0", + "socket.io-circular-parser": "cypress-io/socket.io-circular-parser#unpatched-has-binary-2", + "socket.io-client": "2.3.0" + }, + "files": [ + "lib", + "patches" + ], + "workspaces": { + "nohoist": [ + "**" + ] + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/static/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/static/package.json new file mode 100644 index 0000000000..bed1a34c97 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/static/package.json @@ -0,0 +1,16 @@ +{ + "name": "@packages/static", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "build": "gulp build", + "build-prod": "yarn build", + "clean-deps": "rm -rf node_modules", + "postinstall": "echo '@packages/static needs: yarn build'" + }, + "files": [ + "dist", + "lib" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ts/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ts/package.json new file mode 100644 index 0000000000..8bfca9ccc8 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ts/package.json @@ -0,0 +1,19 @@ +{ + "name": "@packages/ts", + "version": "0.0.0", + "private": true, + "main": "index.js", + "scripts": { + "clean-deps": "rm -rf node_modules", + "postinstall": "patch-package", + "test": "yarn test-unit", + "test-unit": "node test", + "test-watch": "echo 'no watching of tests'" + }, + "dependencies": { + "debug": "4.1.1" + }, + "files": [ + "register.js" + ] +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ui-components/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ui-components/package.json new file mode 100644 index 0000000000..e88b973868 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/ui-components/package.json @@ -0,0 +1,16 @@ +{ + "name": "@packages/ui-components", + "version": "0.0.0", + "private": true, + "main": "src/index.tsx", + "scripts": { + "build-for-tests": "webpack", + "check-deps": "node ../../scripts/check-deps.js --verbose", + "check-deps-pre": "npm run check-deps -- --prescript", + "clean-deps": "rm -rf node_modules", + "cypress:open": "node ../../scripts/cypress open --project .", + "cypress:run": "node ../../scripts/cypress run --project .", + "pretest": "npm run check-deps-pre", + "watch": "npm run build-for-tests -- --watch --progress" + } +} diff --git a/.cache/Cypress/6.2.1/Cypress/resources/app/packages/web-config/package.json b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/web-config/package.json new file mode 100644 index 0000000000..2ff95c24f9 --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/resources/app/packages/web-config/package.json @@ -0,0 +1,4 @@ +{ + "name": "@packages/web-config", + "version": "0.0.0" +} diff --git a/.cache/Cypress/6.2.1/Cypress/vk_swiftshader_icd.json b/.cache/Cypress/6.2.1/Cypress/vk_swiftshader_icd.json new file mode 100644 index 0000000000..28be1f3abe --- /dev/null +++ b/.cache/Cypress/6.2.1/Cypress/vk_swiftshader_icd.json @@ -0,0 +1 @@ +{"file_format_version": "1.0.0", "ICD": {"library_path": "./libvk_swiftshader.so", "api_version": "1.0.5"}} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b0c1df8d1..0fd9f1a04b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [2.13.0] - 2021-01-29 ### Added - Repository export for Subversion ([#1488](https://github.com/scm-manager/scm-manager/pull/1488)) - Provide more options for Helm chart ([#1485](https://github.com/scm-manager/scm-manager/pull/1485)) @@ -492,3 +492,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [2.11.0]: https://www.scm-manager.org/download/2.11.0 [2.11.1]: https://www.scm-manager.org/download/2.11.1 [2.12.0]: https://www.scm-manager.org/download/2.12.0 +[2.13.0]: https://www.scm-manager.org/download/2.13.0 diff --git a/gradle.properties b/gradle.properties index a4695a6ce2..4636fdb79f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,5 +22,5 @@ # SOFTWARE. # group = sonia.scm -version = 2.13.0-SNAPSHOT +version = 2.13.0 org.gradle.jvmargs=-Xmx1024M diff --git a/lerna.json b/lerna.json index 339d189d6d..e85cc6be3b 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "2.13.0-SNAPSHOT" + "version": "2.13.0" } diff --git a/scm-plugins/scm-git-plugin/package.json b/scm-plugins/scm-git-plugin/package.json index 270b56dc5d..9063363e64 100644 --- a/scm-plugins/scm-git-plugin/package.json +++ b/scm-plugins/scm-git-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-git-plugin", "private": true, - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -11,14 +11,14 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.13.0" }, "devDependencies": { - "@scm-manager/plugin-scripts": "^1.0.1", "@scm-manager/babel-preset": "^2.11.1", + "@scm-manager/eslint-config": "^2.11.1", "@scm-manager/jest-preset": "^2.12.3", - "@scm-manager/prettier-config": "^2.11.1", - "@scm-manager/eslint-config": "^2.11.1" + "@scm-manager/plugin-scripts": "^1.0.1", + "@scm-manager/prettier-config": "^2.11.1" }, "babel": { "presets": [ diff --git a/scm-plugins/scm-hg-plugin/package.json b/scm-plugins/scm-hg-plugin/package.json index 13a8e1c5a6..6ac3ffee9b 100644 --- a/scm-plugins/scm-hg-plugin/package.json +++ b/scm-plugins/scm-hg-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-hg-plugin", "private": true, - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -10,14 +10,14 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.13.0" }, "devDependencies": { - "@scm-manager/plugin-scripts": "^1.0.1", "@scm-manager/babel-preset": "^2.11.1", + "@scm-manager/eslint-config": "^2.11.1", "@scm-manager/jest-preset": "^2.12.3", - "@scm-manager/prettier-config": "^2.11.1", - "@scm-manager/eslint-config": "^2.11.1" + "@scm-manager/plugin-scripts": "^1.0.1", + "@scm-manager/prettier-config": "^2.11.1" }, "babel": { "presets": [ diff --git a/scm-plugins/scm-legacy-plugin/package.json b/scm-plugins/scm-legacy-plugin/package.json index cc5494c350..f0d62b3824 100644 --- a/scm-plugins/scm-legacy-plugin/package.json +++ b/scm-plugins/scm-legacy-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-legacy-plugin", "private": true, - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "license": "MIT", "main": "./src/main/js/index.tsx", "scripts": { @@ -10,14 +10,14 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.13.0" }, "devDependencies": { - "@scm-manager/plugin-scripts": "^1.0.1", "@scm-manager/babel-preset": "^2.11.1", + "@scm-manager/eslint-config": "^2.11.1", "@scm-manager/jest-preset": "^2.12.3", - "@scm-manager/prettier-config": "^2.11.1", - "@scm-manager/eslint-config": "^2.11.1" + "@scm-manager/plugin-scripts": "^1.0.1", + "@scm-manager/prettier-config": "^2.11.1" }, "babel": { "presets": [ diff --git a/scm-plugins/scm-svn-plugin/package.json b/scm-plugins/scm-svn-plugin/package.json index 10b1dee9d6..b7604cf90f 100644 --- a/scm-plugins/scm-svn-plugin/package.json +++ b/scm-plugins/scm-svn-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-svn-plugin", "private": true, - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -10,14 +10,14 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.13.0" }, "devDependencies": { - "@scm-manager/plugin-scripts": "^1.0.1", "@scm-manager/babel-preset": "^2.11.1", + "@scm-manager/eslint-config": "^2.11.1", "@scm-manager/jest-preset": "^2.12.3", - "@scm-manager/prettier-config": "^2.11.1", - "@scm-manager/eslint-config": "^2.11.1" + "@scm-manager/plugin-scripts": "^1.0.1", + "@scm-manager/prettier-config": "^2.11.1" }, "babel": { "presets": [ diff --git a/scm-ui/e2e-tests/package.json b/scm-ui/e2e-tests/package.json index b14882ba3c..639949af6e 100644 --- a/scm-ui/e2e-tests/package.json +++ b/scm-ui/e2e-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/e2e-tests", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "End to end Tests for SCM-Manager", "main": "index.js", "author": "Eduard Heimbuch ", diff --git a/scm-ui/ui-components/package.json b/scm-ui/ui-components/package.json index a9da0637af..b504deb01b 100644 --- a/scm-ui/ui-components/package.json +++ b/scm-ui/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-components", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "UI Components for SCM-Manager and its plugins", "main": "src/index.ts", "files": [ @@ -23,7 +23,7 @@ "@scm-manager/jest-preset": "^2.12.4", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.10.1", - "@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-tests": "^2.13.0", "@storybook/addon-actions": "^6.0.28", "@storybook/addon-storyshots": "^6.0.28", "@storybook/react": "^6.0.28", @@ -55,8 +55,8 @@ "worker-plugin": "^3.2.0" }, "dependencies": { - "@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", - "@scm-manager/ui-types": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-extensions": "^2.13.0", + "@scm-manager/ui-types": "^2.13.0", "classnames": "^2.2.6", "date-fns": "^2.4.1", "gitdiff-parser": "^0.1.2", diff --git a/scm-ui/ui-extensions/package.json b/scm-ui/ui-extensions/package.json index 6e0fd711ec..3c4bc72f25 100644 --- a/scm-ui/ui-extensions/package.json +++ b/scm-ui/ui-extensions/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-extensions", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "main": "src/index.ts", "license": "MIT", "private": false, diff --git a/scm-ui/ui-plugins/package.json b/scm-ui/ui-plugins/package.json index c3ddbfce04..34162fe872 100644 --- a/scm-ui/ui-plugins/package.json +++ b/scm-ui/ui-plugins/package.json @@ -1,13 +1,13 @@ { "name": "@scm-manager/ui-plugins", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "license": "MIT", "bin": { "ui-plugins": "./bin/ui-plugins.js" }, "dependencies": { - "@scm-manager/ui-components": "^2.13.0-SNAPSHOT", - "@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-components": "^2.13.0", + "@scm-manager/ui-extensions": "^2.13.0", "classnames": "^2.2.6", "query-string": "^5.0.1", "react": "^16.10.2", @@ -23,9 +23,9 @@ "@scm-manager/jest-preset": "^2.12.4", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.10.1", - "@scm-manager/ui-scripts": "^2.13.0-SNAPSHOT", - "@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", - "@scm-manager/ui-types": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-scripts": "^2.13.0", + "@scm-manager/ui-tests": "^2.13.0", + "@scm-manager/ui-types": "^2.13.0", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-ui/ui-polyfill/package.json b/scm-ui/ui-polyfill/package.json index 0f53bb27f6..08167f6d9c 100644 --- a/scm-ui/ui-polyfill/package.json +++ b/scm-ui/ui-polyfill/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-polyfill", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "Polyfills for SCM-Manager UI", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-scripts/package.json b/scm-ui/ui-scripts/package.json index 5df7d055e9..da9b8c933c 100644 --- a/scm-ui/ui-scripts/package.json +++ b/scm-ui/ui-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-scripts", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "Build scripts for SCM-Manager", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-styles/package.json b/scm-ui/ui-styles/package.json index 251f5826b6..f300b9ad56 100644 --- a/scm-ui/ui-styles/package.json +++ b/scm-ui/ui-styles/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-styles", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "Styles for SCM-Manager", "main": "src/scm.scss", "license": "MIT", diff --git a/scm-ui/ui-tests/package.json b/scm-ui/ui-tests/package.json index e565824e0d..65e2838b5e 100644 --- a/scm-ui/ui-tests/package.json +++ b/scm-ui/ui-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-tests", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "UI-Tests helpers", "author": "Sebastian Sdorra ", "license": "MIT", diff --git a/scm-ui/ui-types/package.json b/scm-ui/ui-types/package.json index 019f7030bc..ae6abdd5dc 100644 --- a/scm-ui/ui-types/package.json +++ b/scm-ui/ui-types/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-types", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "description": "Flow types for SCM-Manager related Objects", "main": "src/index.ts", "files": [ diff --git a/scm-ui/ui-webapp/package.json b/scm-ui/ui-webapp/package.json index 70456de727..272d9dc3ab 100644 --- a/scm-ui/ui-webapp/package.json +++ b/scm-ui/ui-webapp/package.json @@ -1,10 +1,10 @@ { "name": "@scm-manager/ui-webapp", - "version": "2.13.0-SNAPSHOT", + "version": "2.13.0", "private": true, "dependencies": { - "@scm-manager/ui-components": "^2.13.0-SNAPSHOT", - "@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-components": "^2.13.0", + "@scm-manager/ui-extensions": "^2.13.0", "classnames": "^2.2.5", "history": "^4.10.1", "i18next": "^19.6.0", @@ -30,7 +30,7 @@ }, "devDependencies": { "@scm-manager/jest-preset": "^2.12.4", - "@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", + "@scm-manager/ui-tests": "^2.13.0", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1",