chromedriver 78.0.0 → 78.0.1

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/install.js CHANGED
@@ -128,9 +128,10 @@ function verifyIfChromedriverIsAvailableAndHasCorrectVersion() {
128
128
  function findSuitableTempDirectory() {
129
129
  const now = Date.now();
130
130
  const candidateTmpDirs = [
131
- process.env.TMPDIR || process.env.TMP || process.env.npm_config_tmp,
131
+ process.env.npm_config_tmp,
132
+ process.env.XDG_CACHE_HOME,
133
+ // Platform specific default, including TMPDIR/TMP/TEMP env
132
134
  os.tmpdir(),
133
- '/tmp',
134
135
  path.join(process.cwd(), 'tmp')
135
136
  ];
136
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromedriver",
3
- "version": "78.0.0",
3
+ "version": "78.0.1",
4
4
  "keywords": [
5
5
  "chromedriver",
6
6
  "selenium"
package/.github/lock.yml DELETED
@@ -1,38 +0,0 @@
1
- # Configuration for Lock Threads - https://github.com/dessant/lock-threads
2
-
3
- # Number of days of inactivity before a closed issue or pull request is locked
4
- daysUntilLock: 7
5
-
6
- # Skip issues and pull requests created before a given timestamp. Timestamp must
7
- # follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
8
- skipCreatedBefore: false
9
-
10
- # Issues and pull requests with these labels will be ignored. Set to `[]` to disable
11
- exemptLabels: []
12
-
13
- # Label to add before locking, such as `outdated`. Set to `false` to disable
14
- lockLabel: false
15
-
16
- # Comment to post before locking. Set to `false` to disable
17
- lockComment: >
18
- This thread has been automatically locked since there has not been
19
- any recent activity after it was closed. Please open a new issue for
20
- related bugs.
21
-
22
- # Assign `resolved` as the reason for locking. Set to `false` to disable
23
- setLockReason: true
24
-
25
- # Limit to only `issues` or `pulls`
26
- # only: issues
27
-
28
- # Optionally, specify configuration settings just for `issues` or `pulls`
29
- # issues:
30
- # exemptLabels:
31
- # - help-wanted
32
- # lockLabel: outdated
33
-
34
- # pulls:
35
- # daysUntilLock: 30
36
-
37
- # Repository to extend settings from
38
- # _extends: repo