Skip to content

Commit d9f43b9

Browse files
authored
21.11.2 (#179)
* hottu fix * change * version change
1 parent 2b8ea61 commit d9f43b9

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 21.11.2
2+
- Fixed a bug where request queue was not processing
13
## 21.11.1
24
- Fixed feedback widget bug related to the 'close events' origin check
35
- When consent is changed it will now send the full consent state instead of just the changed consents

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ or
3030

3131
Countly web SDK is available on CDNJS. Use either
3232

33-
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/21.11.1/countly.min.js](https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/21.11.1/countly.min.js)
33+
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/21.11.2/countly.min.js](https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/21.11.2/countly.min.js)
3434

3535
or
3636

lib/countly.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
*/
150150
Countly.onload = Countly.onload || [];
151151

152-
var SDK_VERSION = "21.11.1";
152+
var SDK_VERSION = "21.11.2";
153153
var SDK_NAME = "javascript_native_web";
154154

155155
var urlParseRE = /^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/;
@@ -3055,7 +3055,7 @@
30553055
log(logLevelEnums.DEBUG, "Processing request", params);
30563056
store("cly_queue", requestQueue, true);
30573057
if (!self.tests) {
3058-
sendXmlHttpRequest(self.url + apiPath, params, function(err, parameters) {
3058+
sendXmlHttpRequest("send_request_queue", self.url + apiPath, params, function(err, parameters) {
30593059
log(logLevelEnums.DEBUG, "Request Finished", parameters, err);
30603060
if (err) {
30613061
failTimeout = getTimestamp() + failTimeoutAmount;

lib/countly.min.js

+4-4
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,6 +1,6 @@
11
{
22
"name": "countly-sdk-web",
3-
"version": "21.11.1",
3+
"version": "21.11.2",
44
"description": "Countly Web SDK",
55
"main": "lib/countly.js",
66
"directories": {

0 commit comments

Comments
 (0)