{ "id": "162585", "key": "TIMOB-23775", "fields": { "issuetype": { "id": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "16980", "description": "New V8", "name": "Release 6.0.0", "archived": false, "released": true, "releaseDate": "2016-11-15" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2016-08-17T05:00:26.000+0000", "created": "2016-08-15T11:06:23.000+0000", "priority": { "name": "Critical", "id": "1" }, "labels": [], "versions": [], "issuelinks": [ { "id": "52835", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "163544", "key": "TIMOB-23965", "fields": { "summary": "Windows: Unable to send a data event that is greater than 979 bytes", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Critical", "id": "1" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "52387", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "152482", "key": "TIMOB-19826", "fields": { "summary": "Client SDK Feature Event restrictions and validations", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Critical", "id": "1" }, "issuetype": { "id": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "gmathews", "key": "gmathews", "displayName": "Gary Mathews", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2016-10-04T15:09:01.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "12642", "name": "Windows", "description": "Windows authoring support" } ], "attachment": [], "flagged": false, "summary": "Windows: Impose restrictions on feature events", "creator": { "name": "gmathews", "key": "gmathews", "displayName": "Gary Mathews", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "gmathews", "key": "gmathews", "displayName": "Gary Mathews", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "closedSprints": [ { "id": 695, "state": "closed", "name": "2016 Sprint 17 SDK", "startDate": "2016-08-13T00:00:16.620Z", "endDate": "2016-08-27T00:00:00.000Z", "completeDate": "2016-08-29T03:18:08.942Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "393132", "author": { "name": "gmathews", "key": "gmathews", "displayName": "Gary Mathews", "active": true, "timeZone": "America/Los_Angeles" }, "body": "master: https://github.com/appcelerator/titanium_mobile_windows/pull/821\r\n6_0_X: https://github.com/appcelerator/titanium_mobile_windows/pull/822\r\n\r\n*TEST CASE*\r\n{code:js}\r\nvar win = Ti.UI.createWindow({backgroundColor: 'purple'}),\r\n btn_a = Ti.UI.createButton({title: 'Feature Event: exceed levels', top: 0}),\r\n btn_b = Ti.UI.createButton({title: 'Feature Event: invalid object', top: 50}),\r\n btn_c = Ti.UI.createButton({title: 'Feature Event: exceed size', top: 100}),\r\n btn_d = Ti.UI.createButton({title: 'Feature Event: exceed keys', top: 150}),\r\n btn_e = Ti.UI.createButton({title: 'Feature Event: exceed key length', top: 200});\r\n\r\nbtn_a.addEventListener('click', function () {\r\n var data = {};\r\n for (var l = 0; l < 6; l++) {\r\n data = {l: data};\r\n }\r\n Ti.Analytics.featureEvent('levels', data);\r\n});\r\nbtn_b.addEventListener('click', function () {\r\n var data = undefined;\r\n Ti.Analytics.featureEvent('invalid', data);\r\n});\r\nbtn_c.addEventListener('click', function () {\r\n var data = {big: Array(1002).join('c')};\r\n Ti.Analytics.featureEvent('size', data);\r\n});\r\nbtn_d.addEventListener('click', function () {\r\n var data = {};\r\n for (var k = 0; k < 36; k++) {\r\n data[k] = 'd';\r\n }\r\n Ti.Analytics.featureEvent('keys', data);\r\n});\r\nbtn_e.addEventListener('click', function () {\r\n var data = {};\r\n data[Array(52).join('e')] = 'e';\r\n Ti.Analytics.featureEvent('keyLength', data);\r\n});\r\n\r\nwin.add(btn_a);\r\nwin.add(btn_b);\r\nwin.add(btn_c);\r\nwin.add(btn_d);\r\nwin.add(btn_e);\r\n\r\nwin.open();\r\n{code}", "updateAuthor": { "name": "gmathews", "key": "gmathews", "displayName": "Gary Mathews", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2016-08-15T11:19:06.000+0000", "updated": "2016-08-15T11:36:39.000+0000" }, { "id": "393491", "author": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Note: This is already pushed to 6.0.x branch but not available for nightly build yet due to build issue on Jenkins. Will let you know when it's ready.", "updateAuthor": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2016-08-18T07:28:00.000+0000", "updated": "2016-08-18T07:28:00.000+0000" }, { "id": "398059", "author": { "name": "eharris", "key": "eharris", "displayName": "Ewan Harris", "active": true, "timeZone": "Europe/Dublin" }, "body": "Verified using:\r\n\r\nWindows 10 Pro\r\nAppc core: 6.0.0-56\r\nAppc NPM: 4.2.8-7\r\nTi SDK: 6.0.0.v20161004013027\r\nLumia 550 10.0\r\nLumia 520 8.1\r\n\r\nWindows specific bugs found during testing have been fixed, TIMOB-23952 remains opened but more than likely a docs issue. Therefore closing this ticket", "updateAuthor": { "name": "eharris", "key": "eharris", "displayName": "Ewan Harris", "active": true, "timeZone": "Europe/Dublin" }, "created": "2016-10-04T15:08:44.000+0000", "updated": "2016-10-04T15:08:58.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }