Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 8b1cfaf

Browse files
authored
Merge branch 'atom:master' into fix-warning
2 parents ed14d2b + 2053290 commit 8b1cfaf

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

.github/workflows/ci.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: tests
1010
strategy:
1111
matrix:
12-
os: [ubuntu-18.04, macos-10.14, windows-latest]
12+
os: [ubuntu-18.04, macos-latest, windows-latest]
1313
channel: [beta, nightly]
1414
fail-fast: false
1515
runs-on: ${{ matrix.os }}
@@ -24,11 +24,6 @@ jobs:
2424
with:
2525
channel: ${{ matrix.channel }}
2626

27-
- name: install windows build tools
28-
if: contains(matrix.os, 'windows')
29-
run: |
30-
choco install visualcpp-build-tools --version=14.0.25420.1 --ignore-dependencies -y --params "'/IncludeRequired'"
31-
echo "VCTargetsPath='C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v140'" >> $GITHUB_ENV
3227
- name: install dependencies
3328
run: apm ci
3429

lib/relay-network-layer-manager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function logRatelimitApi(headers) {
1818
const resetsIn = moment.unix(parseInt(resets, 10)).from();
1919

2020
// eslint-disable-next-line no-console
21-
console.debug(`GitHub API Rate Limit: ${remaining}/${total} — resets ${resetsIn}`);
21+
console.debug(`GitHub API Rate Limiting Info: ${remaining}/${total} requests left — resets ${resetsIn}`);
2222
}
2323

2424
export function expectRelayQuery(operationPattern, response) {

lib/worker-manager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export class RendererProcess {
268268
this.onExecStarted = onExecStarted;
269269

270270
this.win = new BrowserWindow({show: !!process.env.ATOM_GITHUB_SHOW_RENDERER_WINDOW,
271-
webPreferences: {nodeIntegration: true}});
271+
webPreferences: {nodeIntegration: true, enableRemoteModule: true}});
272272
this.webContents = this.win.webContents;
273273
// this.webContents.openDevTools();
274274

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "github",
33
"main": "./lib/index",
4-
"version": "0.36.9",
4+
"version": "0.36.10",
55
"description": "GitHub integration",
66
"repository": "https://github.com/atom/github",
77
"license": "MIT",

0 commit comments

Comments
 (0)