speedscope
Advanced tools
Comparing version 0.4.0 to 0.5.0
## [Unreleased] | ||
### Added | ||
### Fixed | ||
## [0.5.0] - 2018-08-09 | ||
### Fixed | ||
* Fix emscripten remapping when symbols contain dashes, like `527:i32s-div` [#129] | ||
* Improved firefox import speed and fixed bugs in it [#128] | ||
* Prevent non-contiguous blocks in the time ordered flamechart from appearing as a single node for selection [#123] | ||
* Prevent dragging from changing selection [#122] | ||
* Clamp zoom to prevent floating point issues [#121] | ||
* Preserve view state when switching tabs [#100] | ||
## [0.4.0] - 2018-07-21 | ||
@@ -4,0 +19,0 @@ |
{ | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"definitions": { | ||
"FileFormat.Profile": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/definitions/FileFormat.EventedProfile" | ||
}, | ||
{ | ||
"$ref": "#/definitions/FileFormat.SampledProfile" | ||
} | ||
] | ||
}, | ||
"FileFormat.File": { | ||
"title": "FileFormat.File", | ||
"type": "object", | ||
"properties": { | ||
"version": { | ||
"type": "string", | ||
"title": "version" | ||
}, | ||
"$schema": { | ||
"type": "string", | ||
"enum": [ | ||
"https://www.speedscope.app/file-format-schema.json" | ||
], | ||
"title": "$schema" | ||
}, | ||
"shared": { | ||
"type": "object", | ||
"properties": { | ||
"frames": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/FileFormat.Frame" | ||
}, | ||
"title": "frames" | ||
} | ||
}, | ||
"required": [ | ||
"frames" | ||
], | ||
"title": "shared" | ||
}, | ||
"profiles": { | ||
"type": "array", | ||
"items": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/definitions/FileFormat.EventedProfile" | ||
}, | ||
{ | ||
"$ref": "#/definitions/FileFormat.SampledProfile" | ||
} | ||
] | ||
}, | ||
"title": "profiles" | ||
} | ||
}, | ||
"required": [ | ||
"$schema", | ||
"profiles", | ||
"shared", | ||
"version" | ||
] | ||
}, | ||
"FileFormat.Frame": { | ||
"title": "FileFormat.Frame", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"title": "name" | ||
}, | ||
"file": { | ||
"type": "string", | ||
"title": "file" | ||
}, | ||
"line": { | ||
"type": "number", | ||
"title": "line" | ||
}, | ||
"col": { | ||
"type": "number", | ||
"title": "col" | ||
} | ||
}, | ||
"required": [ | ||
"name" | ||
] | ||
}, | ||
"FileFormat.ProfileType": { | ||
"title": "FileFormat.ProfileType", | ||
"enum": [ | ||
"evented", | ||
"sampled" | ||
], | ||
"type": "string" | ||
}, | ||
"FileFormat.IProfile": { | ||
"title": "FileFormat.IProfile", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"$ref": "#/definitions/FileFormat.ProfileType", | ||
"title": "type" | ||
} | ||
}, | ||
"required": [ | ||
"type" | ||
] | ||
}, | ||
"FileFormat.EventedProfile": { | ||
"title": "FileFormat.EventedProfile", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"evented" | ||
], | ||
"title": "type" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"title": "name" | ||
}, | ||
"unit": { | ||
"$ref": "#/definitions/FileFormat.ValueUnit", | ||
"title": "unit" | ||
}, | ||
"startValue": { | ||
"type": "number", | ||
"title": "startValue" | ||
}, | ||
"endValue": { | ||
"type": "number", | ||
"title": "endValue" | ||
}, | ||
"events": { | ||
"type": "array", | ||
"items": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/definitions/OpenFrameEvent" | ||
}, | ||
{ | ||
"$ref": "#/definitions/CloseFrameEvent" | ||
} | ||
] | ||
}, | ||
"title": "events" | ||
} | ||
}, | ||
"required": [ | ||
"endValue", | ||
"events", | ||
"name", | ||
"startValue", | ||
"type", | ||
"unit" | ||
] | ||
}, | ||
"SampledStack": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"FileFormat.SampledProfile": { | ||
"title": "FileFormat.SampledProfile", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"sampled" | ||
], | ||
"title": "type" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"title": "name" | ||
}, | ||
"unit": { | ||
"$ref": "#/definitions/FileFormat.ValueUnit", | ||
"title": "unit" | ||
}, | ||
"startValue": { | ||
"type": "number", | ||
"title": "startValue" | ||
}, | ||
"endValue": { | ||
"type": "number", | ||
"title": "endValue" | ||
}, | ||
"samples": { | ||
"type": "array", | ||
"items": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"title": "samples" | ||
}, | ||
"weights": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
}, | ||
"title": "weights" | ||
} | ||
}, | ||
"required": [ | ||
"endValue", | ||
"name", | ||
"samples", | ||
"startValue", | ||
"type", | ||
"unit", | ||
"weights" | ||
] | ||
}, | ||
"FileFormat.ValueUnit": { | ||
"title": "FileFormat.ValueUnit", | ||
"enum": [ | ||
"bytes", | ||
"microseconds", | ||
"milliseconds", | ||
"nanoseconds", | ||
"none", | ||
"seconds" | ||
], | ||
"type": "string" | ||
}, | ||
"FileFormat.EventType": { | ||
"title": "FileFormat.EventType", | ||
"enum": [ | ||
"C", | ||
"O" | ||
], | ||
"type": "string" | ||
}, | ||
"IEvent": { | ||
"title": "IEvent", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"$ref": "#/definitions/FileFormat.EventType", | ||
"title": "type" | ||
}, | ||
"at": { | ||
"type": "number", | ||
"title": "at" | ||
} | ||
}, | ||
"required": [ | ||
"at", | ||
"type" | ||
] | ||
}, | ||
"OpenFrameEvent": { | ||
"title": "OpenFrameEvent", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"O" | ||
], | ||
"title": "type" | ||
}, | ||
"frame": { | ||
"type": "number", | ||
"title": "frame" | ||
}, | ||
"at": { | ||
"type": "number", | ||
"title": "at" | ||
} | ||
}, | ||
"required": [ | ||
"at", | ||
"frame", | ||
"type" | ||
] | ||
}, | ||
"CloseFrameEvent": { | ||
"title": "CloseFrameEvent", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"C" | ||
], | ||
"title": "type" | ||
}, | ||
"frame": { | ||
"type": "number", | ||
"title": "frame" | ||
}, | ||
"at": { | ||
"type": "number", | ||
"title": "at" | ||
} | ||
}, | ||
"required": [ | ||
"at", | ||
"frame", | ||
"type" | ||
] | ||
} | ||
}, | ||
"definitions": {}, | ||
"$ref": "#/definitions/FileFormat.File" | ||
} |
@@ -1,2 +0,2 @@ | ||
Sat Jul 21 19:45:43 PDT 2018 | ||
2f95f77fcf6864b5270009e0d262c31b5cce1ef4 | ||
Thu Aug 9 09:40:51 PDT 2018 | ||
7368e15396bf7cfca4e594cd4a5eac8adcaec74a |
{ | ||
"name": "speedscope", | ||
"version": "0.4.0", | ||
"version": "0.5.0", | ||
"description": "", | ||
"repository": "jlfwong/speedscope", | ||
"main": "index.js", | ||
"bin": { | ||
"speedscope": "./cli.js" | ||
"speedscope": "./bin/cli.js" | ||
}, | ||
"scripts": { | ||
"deploy": "./deploy.sh", | ||
"prepack": "./build-release.sh", | ||
"prettier": "prettier --write './**/*.ts' './**/*.tsx'", | ||
"lint": "eslint './**/*.ts' './**/*.tsx'", | ||
"jest": "./test-setup.sh && jest", | ||
"deploy": "./scripts/deploy.sh", | ||
"prepack": "./scripts/build-release.sh", | ||
"prettier": "prettier --write 'src/**/*.ts' 'src/**/*.tsx'", | ||
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'", | ||
"jest": "./scripts/test-setup.sh && jest", | ||
"coverage": "npm run jest -- --coverage && coveralls < coverage/lcov.info", | ||
"test": "tsc --noEmit && npm run lint && npm run coverage", | ||
"serve": "parcel index.html --open --no-autoinstall" | ||
"serve": "parcel assets/index.html --open --no-autoinstall" | ||
}, | ||
"files": ["cli.js", "dist/release/**", "!*.map"], | ||
"files": ["bin/cli.js", "dist/release/**", "!*.map"], | ||
"browserslist": ["last 2 Chrome versions", "last 2 Firefox versions"], | ||
@@ -38,8 +39,10 @@ "author": "", | ||
"preact": "8.2.7", | ||
"preact-redux": "jlfwong/preact-redux#a56dcc4", | ||
"prettier": "1.12.0", | ||
"quicktype": "15.0.45", | ||
"redux": "^4.0.0", | ||
"regl": "1.3.1", | ||
"ts-jest": "22.4.6", | ||
"typescript": "2.8.1", | ||
"typescript-eslint-parser": "14.0.0", | ||
"typescript": "3.0.1", | ||
"typescript-eslint-parser": "17.0.1", | ||
"uglify-es": "3.2.2" | ||
@@ -46,0 +49,0 @@ }, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
810530
23
2232
7