webdriver-installer 1.2.0 → 1.2.5
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 +35 -0
- package/edge.js +1 -1
- package/package.json +1 -1
- package/utils.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.5](https://github.com/shaka-project/webdriver-installer/compare/v1.2.4...v1.2.5) (2025-12-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ci:** Fixed typo in NPM config ([a052388](https://github.com/shaka-project/webdriver-installer/commit/a052388f6ea4c6997c67a75418fa900b851a8ed3))
|
|
9
|
+
|
|
10
|
+
## [1.2.4](https://github.com/shaka-project/webdriver-installer/compare/v1.2.3...v1.2.4) (2025-12-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ci:** Trusted publishing works now ([#57](https://github.com/shaka-project/webdriver-installer/issues/57)) ([2d42fad](https://github.com/shaka-project/webdriver-installer/commit/2d42fad9bd1f64874e61227cee1b7ad4a2cb68a4))
|
|
16
|
+
|
|
17
|
+
## [1.2.3](https://github.com/shaka-project/webdriver-installer/compare/v1.2.2...v1.2.3) (2025-10-03)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **ci:** Update npm to support OIDC for trusted publishing ([#55](https://github.com/shaka-project/webdriver-installer/issues/55)) ([e95d0a2](https://github.com/shaka-project/webdriver-installer/commit/e95d0a27b1d4c251d70b5aaa0b9d05f978ef4b4b))
|
|
23
|
+
|
|
24
|
+
## [1.2.2](https://github.com/shaka-project/webdriver-installer/compare/v1.2.1...v1.2.2) (2025-10-03)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **ci:** Stop using NPM token, use trusted publishing ([#53](https://github.com/shaka-project/webdriver-installer/issues/53)) ([1c39ef4](https://github.com/shaka-project/webdriver-installer/commit/1c39ef49834fc6372dc2384739990d599a450eff))
|
|
30
|
+
|
|
31
|
+
## [1.2.1](https://github.com/shaka-project/webdriver-installer/compare/v1.2.0...v1.2.1) (2025-07-16)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* Fix msedgedriver install ([#51](https://github.com/shaka-project/webdriver-installer/issues/51)) ([3a25d6c](https://github.com/shaka-project/webdriver-installer/commit/3a25d6ce1fec24259672202b9fa93df2bfe67180))
|
|
37
|
+
|
|
3
38
|
## [1.2.0](https://github.com/shaka-project/webdriver-installer/compare/v1.1.11...v1.2.0) (2025-03-13)
|
|
4
39
|
|
|
5
40
|
|
package/edge.js
CHANGED
|
@@ -10,7 +10,7 @@ const {InstallerUtils} = require('./utils.js');
|
|
|
10
10
|
const os = require('os');
|
|
11
11
|
const path = require('path');
|
|
12
12
|
|
|
13
|
-
const CDN_URL = 'https://msedgedriver.
|
|
13
|
+
const CDN_URL = 'https://msedgedriver.microsoft.com/';
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* An installer for msedgedriver for desktop Edge.
|
package/package.json
CHANGED
package/utils.js
CHANGED
|
@@ -264,7 +264,7 @@ class InstallerUtils {
|
|
|
264
264
|
try {
|
|
265
265
|
return await InstallerUtils.fetchVersionUrl(versionUrl, encoding);
|
|
266
266
|
} catch (error) {
|
|
267
|
-
if (error.cause
|
|
267
|
+
if (error.cause?.status != 404) {
|
|
268
268
|
// Any unexpected error (other than HTTP 404) is thrown immediately.
|
|
269
269
|
throw error;
|
|
270
270
|
}
|