cds-plugin-ui5 0.11.1 → 0.12.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/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.12.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.11.2...cds-plugin-ui5@0.12.0) (2025-02-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * general dependencies update ([#1162](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1162)) ([5375d76](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/5375d76496741433330d76ce59a89b39f7ad8a69))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.11.2](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.11.1...cds-plugin-ui5@0.11.2) (2024-12-04)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cds-plugin-ui5:** color adoption for skip logs ([#1129](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1129)) ([0d2c354](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/0d2c35421c803ef7b5c6492715d13e53e88031d4))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [0.11.1](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.11.0...cds-plugin-ui5@0.11.1) (2024-10-10)
7
29
 
8
30
 
package/cds-plugin.js CHANGED
@@ -16,14 +16,13 @@
16
16
  let skip = false;
17
17
  if (process.env.NODE_ENV === "test" && process.env.JEST_WORKER_ID && process.env.CDS_PLUGIN_UI5_ACTIVE !== "true") {
18
18
  console.log(
19
- process.env.NO_COLOR ? "[%s] %s" : "\x1b[36m[%s]\x1b[0m \x1b[31m%s\x1b[0m",
19
+ process.env.NO_COLOR ? "[%s] %s" : "\x1b[36m[%s]\x1b[0m \x1b[33m%s\x1b[0m",
20
20
  "cds-plugin-ui5",
21
21
  "Skip execution because JEST is running tests! To force the execution of the plugin set env var CDS_PLUGIN_UI5_ACTIVE=true...",
22
22
  );
23
23
  skip = true;
24
- }
25
- if (process.env.CDS_PLUGIN_UI5_ACTIVE === "false") {
26
- console.log(process.env.NO_COLOR ? "[%s] %s" : "\x1b[36m[%s]\x1b[0m \x1b[31m%s\x1b[0m", "cds-plugin-ui5", "Skip execution because it has been disabled by env var CDS_PLUGIN_UI5_ACTIVE!");
24
+ } else if (process.env.CDS_PLUGIN_UI5_ACTIVE === "false") {
25
+ console.log(process.env.NO_COLOR ? "[%s] %s" : "\x1b[36m[%s]\x1b[0m \x1b[33m%s\x1b[0m", "cds-plugin-ui5", "Skip execution because it has been disabled by env var CDS_PLUGIN_UI5_ACTIVE!");
27
26
  skip = true;
28
27
  }
29
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cds-plugin-ui5",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
4
4
  "description": "A CDS server plugin to inject the middlewares of all related UI5 tooling based projects.",
5
5
  "author": "Peter Muessig",
6
6
  "license": "Apache-2.0",
@@ -15,8 +15,8 @@
15
15
  "@ui5/project": "^4",
16
16
  "@ui5/server": "^4",
17
17
  "js-yaml": "^4.1.0",
18
- "node-html-parser": "^6.1.13",
19
- "semver": "^7.6.3"
18
+ "node-html-parser": "^7.0.1",
19
+ "semver": "^7.7.1"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@sap/cds": "*",
@@ -26,5 +26,5 @@
26
26
  "@sap/cds": ">=6.8.2",
27
27
  "express": ">=4.18.2"
28
28
  },
29
- "gitHead": "49c0415f143ba94b88f522362f027e84021933d2"
29
+ "gitHead": "ce6bb3836d24a9318fe1c9fb394fb609195607ae"
30
30
  }