-
Notifications
You must be signed in to change notification settings - Fork 818
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release NPM package, and Node update
Made sense to do these two parts together, since they were intertwined. 1. Closed #679 - create an interactive shell, so we can publish to @google-cloud/agones-sdk, since it requires some internal tools to make it happen. 2. Also update the Node version to 12.x, since 11.x is deprecated 3. Updated the image to use the new NPM package, and also while in there updated Node to 12.x and the Debian base to Buster. (Node image update for #1261) 4. Updated the release checklist to use the interactive shell, rather than the `publish` command, which has now been removed.
- Loading branch information
1 parent
7d4789e
commit d87fde9
Showing
14 changed files
with
66 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
{ | ||
"author": "Google LLC", | ||
"bugs": { | ||
"url": "https://github.com/googleforgames/agones/issues" | ||
}, | ||
"dependencies": { | ||
"google-protobuf": "3.9.0", | ||
"grpc": "1.22.2" | ||
}, | ||
"description": "SDK for Agones", | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"jasmine": "^3.4.0", | ||
"nyc": "^14.1.1" | ||
}, | ||
"homepage": "https://agones.dev", | ||
"license": "Apache-2.0", | ||
"main": "src/index.js", | ||
"name": "@googleforgames/agones", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/googleforgames/agones.git" | ||
}, | ||
"scripts": { | ||
"cover": "nyc jasmine", | ||
"lint": "eslint --fix src spec", | ||
"test": "jasmine" | ||
}, | ||
"version": "1.4.0" | ||
"author": "Google LLC", | ||
"bugs": { | ||
"url": "https://github.com/googleforgames/agones/issues" | ||
}, | ||
"dependencies": { | ||
"google-protobuf": "3.9.0", | ||
"grpc": "1.22.2" | ||
}, | ||
"description": "Game Server SDK for Agones, the open source project for hosting dedicated game servers on Kubernetes", | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"jasmine": "^3.4.0", | ||
"nyc": "^14.1.1" | ||
}, | ||
"homepage": "https://agones.dev", | ||
"license": "Apache-2.0", | ||
"main": "src/index.js", | ||
"name": "@google-cloud/agones-sdk", | ||
"repository": "googleforgames/agones", | ||
"scripts": { | ||
"cover": "nyc jasmine", | ||
"lint": "eslint --fix src spec", | ||
"test": "jasmine" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"version": "1.4.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"dependencies": { | ||
"@googleforgames/agones": "../../../sdks/nodejs" | ||
}, | ||
"scripts": { | ||
"testSDK": "node ./testSDKClient.js" | ||
} | ||
"dependencies": { | ||
"@google-cloud/agones-sdk": "../../../sdks/nodejs" | ||
}, | ||
"scripts": { | ||
"testSDK": "node ./testSDKClient.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters