diff --git a/.github/workflows/00-scan-secrets.yml b/.github/workflows/00-scan-secrets.yml index b44fbd9233d..725e6a1dfe5 100644 --- a/.github/workflows/00-scan-secrets.yml +++ b/.github/workflows/00-scan-secrets.yml @@ -18,7 +18,7 @@ jobs: id: extract_branch - name: 🐷 TruffleHog OSS - uses: trufflesecurity/trufflehog@v3.14.0 + uses: trufflesecurity/trufflehog@v3.15.0 with: path: ./ base: ${{ steps.extract_branch.outputs.branch }} diff --git a/docs/getStarted.adoc b/docs/getStarted.adoc index 75a8a1d216f..56e0df3ab6a 100644 --- a/docs/getStarted.adoc +++ b/docs/getStarted.adoc @@ -58,6 +58,8 @@ This should add a new entry to your `package.json` file: @import "@db-ui/core/sources/css/enterprise/db-ui-core"; ---- +### SCSS: `node_modules include path / load path + Please keep in mind, that you would need to set your `include path` also known as `load path` depending on your setup for the sass compiler to find the correct `node_modules` folder, e.g. like the following (this is similar to how other frameworks and libraries like link:https://github.com/twbs/bootstrap-npm-starter/blob/main/package.json#L18[Bootstrap] are handling this): #### link:https://npmjs.com/sass[`sass` compiler] diff --git a/docs/migrationGuide.adoc b/docs/migrationGuide.adoc index 52308c18d73..5187fac09f5 100644 --- a/docs/migrationGuide.adoc +++ b/docs/migrationGuide.adoc @@ -12,6 +12,8 @@ Especially the following aspects have changed through the various different rele Please note that we've switched from the deprecated link:https://www.npmjs.com/package/node-sass[`node-sass`] compiler to its successor link:https://www.npmjs.com/package/sass[`sass`]. As `sass` doesn't support the tilde (`~`) reference to your `node_modules` folder out of the box and there even also doesn't seem to be a general solution out there, we've removed that one, so that in case you're using our SCSS sources directly, you would need to provide your `node_modules` folder as a load path or include path (e.g. `--load-path=node_modules` on the `sass` CLI usage). +You need to set the load path / include path depending on your SCSS compiler as described within our link:getStarted.adoc#scss-node_modules-include-path--load-path[getting started] + Additionally we've deprecated the `@db-ui/core/sources/css/enterprise/db-ui-core-include` SCSS endpoint – please either `@import` the file `@db-ui/core/sources/css/rollup.assets-paths` or `@db-ui/core/sources/css/webpack.assets-paths` depending on your bundler, previous to `@import`ing `@db-ui/core/sources/css/enterprise/db-ui-core` directly from now on. ==== SCSS Helper functions diff --git a/package-lock.json b/package-lock.json index c40ec09d176..090bddb1b1e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30,7 +30,7 @@ "dialog-polyfill": "^0.5.6", "dotenv": "^16.0.3", "find-versions-cli": "^4.0.0", - "html-validate": "^7.6.0", + "html-validate": "^7.7.0", "html5-boilerplate": "^8.0.0", "husky": "^8.0.1", "iframe-resizer": "^4.3.2", @@ -7988,9 +7988,9 @@ } }, "node_modules/html-validate": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-7.6.0.tgz", - "integrity": "sha512-6Ib433N0/ou2/0oLjfUmFjaAVFW8KKU/fOBBhrZXNuPcYCUsZExAD3xOqKl1bp5ANHb4PItXEK9vcKL/L7Da0Q==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-7.7.0.tgz", + "integrity": "sha512-8/abZs9ta2gkbNcBNh3ciSkUBop6kb4GNmnxsgHSS9VF2AN71h0JddufmsHeZHovgJwXhkEkaouK0NUG99He9w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.10.0", @@ -22673,9 +22673,9 @@ "dev": true }, "html-validate": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-7.6.0.tgz", - "integrity": "sha512-6Ib433N0/ou2/0oLjfUmFjaAVFW8KKU/fOBBhrZXNuPcYCUsZExAD3xOqKl1bp5ANHb4PItXEK9vcKL/L7Da0Q==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-7.7.0.tgz", + "integrity": "sha512-8/abZs9ta2gkbNcBNh3ciSkUBop6kb4GNmnxsgHSS9VF2AN71h0JddufmsHeZHovgJwXhkEkaouK0NUG99He9w==", "dev": true, "requires": { "@babel/code-frame": "^7.10.0", diff --git a/package.json b/package.json index f7e2c2e1861..e58729260bd 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "dialog-polyfill": "^0.5.6", "dotenv": "^16.0.3", "find-versions-cli": "^4.0.0", - "html-validate": "^7.6.0", + "html-validate": "^7.7.0", "html5-boilerplate": "^8.0.0", "husky": "^8.0.1", "iframe-resizer": "^4.3.2",