@ui5/webcomponents-tools 1.19.0-rc.0 → 1.19.0-rc.2

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,25 @@
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
+ # [1.19.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.1...v1.19.0-rc.2) (2023-10-26)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [1.19.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.0...v1.19.0-rc.1) (2023-10-19)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * escape special characters when scoping CSS vars ([#7704](https://github.com/SAP/ui5-webcomponents/issues/7704)) ([8888751](https://github.com/SAP/ui5-webcomponents/commit/888875121b56fa0c7216674acc580620d8e0d720))
20
+
21
+
22
+
23
+
24
+
6
25
  # [1.19.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.1-rc.0...v1.19.0-rc.0) (2023-10-12)
7
26
 
8
27
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -1,3 +1,5 @@
1
+ const dns = require("node:dns");
2
+
1
3
  exports.config = {
2
4
  //
3
5
  // ====================
@@ -160,6 +162,9 @@ exports.config = {
160
162
  */
161
163
  // beforeSession: function (config, capabilities, specs) {
162
164
  // },
165
+ beforeSession: () => {
166
+ dns.setDefaultResultOrder('ipv4first');
167
+ },
163
168
  /**
164
169
  * Gets executed before test execution begins. At this point you can access to all global
165
170
  * variables like `browser`. It is the perfect place to define custom commands.
@@ -1,7 +1,7 @@
1
1
  const name = "postcss-scope-vars";
2
2
 
3
3
  module.exports = (options) => {
4
- const versionStr = "v" + options?.version?.replaceAll(".", "-");
4
+ const versionStr = "v" + options?.version?.replaceAll(/[^0-9A-Za-z\-_]/g, "-");
5
5
  return {
6
6
  postcssPlugin: name,
7
7
  prepare() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "1.19.0-rc.0",
3
+ "version": "1.19.0-rc.2",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -78,5 +78,5 @@
78
78
  "devDependencies": {
79
79
  "yargs": "^17.5.1"
80
80
  },
81
- "gitHead": "1299f76940f25b31aa6637319b96795c71fc6b29"
81
+ "gitHead": "b0c692bd41b55aa7f87020919466b3fd687ef215"
82
82
  }