@ui5/webcomponents-tools 1.19.0-rc.1 → 1.19.0-rc.3

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.3](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.2...v1.19.0-rc.3) (2023-11-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * **framework:** switch default theme from Quartz Light to Morning Ho… ([#7749](https://github.com/SAP/ui5-webcomponents/issues/7749)) ([10dadd7](https://github.com/SAP/ui5-webcomponents/commit/10dadd79e3a93daf29baaed3a5bcebd8c66a0940))
12
+
13
+
14
+
15
+
16
+
17
+ # [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)
18
+
19
+ **Note:** Version bump only for package @ui5/webcomponents-tools
20
+
21
+
22
+
23
+
24
+
6
25
  # [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)
7
26
 
8
27
 
package/assets-meta.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const assetsMeta = {
2
2
  "themes": {
3
- "default": "sap_fiori_3",
3
+ "default": "sap_horizon",
4
4
  "all": [
5
5
  "sap_fiori_3",
6
6
  "sap_fiori_3_dark",
@@ -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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "1.19.0-rc.1",
3
+ "version": "1.19.0-rc.3",
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": "a2cbfa03f06d8c7b405bcc91583f5934a1fc6d92"
81
+ "gitHead": "d20c314b86bdaf6a667b01e6f8b3a4ddc194d93b"
82
82
  }