Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit d2e150a

Browse files
author
Richard Hua
authored
Send the CodePush plugin version with server requests (microsoft#560)
This allows the server to maintain backward compatibility by distinguishing between different plugins (e.g. React Native/Cordova/Windows), as well as individual versions of these plugins, without needing to use the old SDK version (which refers to the acquisition SDK, which is shared between all plugins). This will also enable us to resolve microsoft#514, by rolling out a CDN only for newer plugin versions. (On the Cordova end at the very least, some users have plugins installed that have a whitelist of acceptable endpoints).
1 parent 22d2a14 commit d2e150a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

request-fetch-adapter.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const packageJson = require("./package.json");
2+
13
module.exports = {
24
async request(verb, url, requestBody, callback) {
35
if (typeof requestBody === "function") {
@@ -8,7 +10,9 @@ module.exports = {
810
const headers = {
911
"Accept": "application/json",
1012
"Content-Type": "application/json",
11-
"X-CodePush-SDK-Version": getSDKVersion()
13+
"X-CodePush-Plugin-Name": packageJson.name,
14+
"X-CodePush-Plugin-Version": packageJson.version,
15+
"X-CodePush-SDK-Version": packageJson.dependencies["code-push"]
1216
};
1317

1418
if (requestBody && typeof requestBody === "object") {
@@ -31,10 +35,6 @@ module.exports = {
3135
}
3236
};
3337

34-
function getSDKVersion() {
35-
return require("./package.json").dependencies["code-push"];
36-
}
37-
3838
function getHttpMethodName(verb) {
3939
// Note: This should stay in sync with the enum definition in
4040
// https://github.com/Microsoft/code-push/blob/master/sdk/script/acquisition-sdk.ts#L6

0 commit comments

Comments
 (0)