Skip to content

Commit a87f41f

Browse files
authored
Merge pull request #77 from murgatroid99/v1.7.1_changes
Update to 1.7.1, add Node 9 support, fix generated file permissions
2 parents 264581f + 6cb2888 commit a87f41f

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

packages/grpc-native-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grpc",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"author": "Google Inc.",
55
"description": "gRPC Library for Node",
66
"homepage": "https://grpc.io/",
@@ -31,7 +31,7 @@
3131
"arguejs": "^0.2.3",
3232
"lodash": "^4.15.0",
3333
"nan": "^2.0.0",
34-
"node-pre-gyp": "^0.6.35",
34+
"node-pre-gyp": "^0.6.39",
3535
"protobufjs": "^5.0.0"
3636
},
3737
"devDependencies": {

packages/grpc-native-core/templates/package.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"arguejs": "^0.2.3",
3434
"lodash": "^4.15.0",
3535
"nan": "^2.0.0",
36-
"node-pre-gyp": "^0.6.35",
36+
"node-pre-gyp": "^0.6.39",
3737
"protobufjs": "^5.0.0"
3838
},
3939
"devDependencies": {

packages/grpc-native-core/tools/run_tests/artifacts/build_artifact_node.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@rem See the License for the specific language governing permissions and
1313
@rem limitations under the License.
1414

15-
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0
15+
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0
1616

1717
set electron_versions=1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0
1818

packages/grpc-native-core/tools/run_tests/artifacts/build_artifact_node.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ source ~/.nvm/nvm.sh
2020
nvm use 8
2121
set -ex
2222

23+
umask 022
24+
2325
cd $(dirname $0)/../../..
2426

2527
rm -rf build || true
@@ -28,7 +30,7 @@ mkdir -p "${ARTIFACTS_OUT}"
2830

2931
npm update
3032

31-
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 )
33+
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0 )
3234

3335
electron_versions=( 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 )
3436

0 commit comments

Comments
 (0)