summaryrefslogtreecommitdiff
path: root/platform/node/CHANGELOG.md
diff options
context:
space:
mode:
authorMike Morris <michael.patrick.morris@gmail.com>2015-08-21 15:53:24 -0400
committerMike Morris <michael.patrick.morris@gmail.com>2015-08-21 16:22:04 -0400
commit6e6387e089d2f8cf998f6726fec8eef25028627f (patch)
tree2abf4da384fa29f7c64cd3773a0afa432ef9b71a /platform/node/CHANGELOG.md
parenta8d9b921d71a91d7f8eff82e5a584aaab8b7d1c6 (diff)
downloadqtlocation-mapboxgl-6e6387e089d2f8cf998f6726fec8eef25028627f.tar.gz
move node-mbgl to platform/node/ directory
Diffstat (limited to 'platform/node/CHANGELOG.md')
-rw-r--r--platform/node/CHANGELOG.md52
1 files changed, 52 insertions, 0 deletions
diff --git a/platform/node/CHANGELOG.md b/platform/node/CHANGELOG.md
new file mode 100644
index 0000000000..a86be910ef
--- /dev/null
+++ b/platform/node/CHANGELOG.md
@@ -0,0 +1,52 @@
+# 1.1.3
+
+- Removes deprecated mbgl::Environment from NodeLogObserver.
+
+# 1.1.2
+
+- Check libuv version semver-ishly, fixes segfaults in Node.js 0.12.x
+ and iojs.
+- Fixes segfault, throws JavaScript error instead when attempting to
+ render without first loading a style.
+- Bumps mbgl submodule to v0.4.0
+
+# 1.1.1
+
+- Bumps mbgl submodule to v0.3.5
+
+# 1.1.0
+
+- Adds Node.js v0.12.x and io.js support.
+- Adds `map.release()` method for manual cleanup of map resources.
+- Fixes garbage collection of NodeMap objects.
+- Returns an error callback for failed NodeFileSource requests.
+- Fixes handling of corrupt NodeFileSource request data.
+- Implements request coalescing to fix NodeRequest cancellation.
+- Removes `setAccessToken` method from NodeMap, `mapbox://` URLs
+ should be handled through `NodeFileSource` now.
+- Updates build scripts and Travis CI configuration.
+- Logs Environment ID and thread name when in an Environment scope.
+- Refactors NodeLog to implement mbgl::Log::Observer.
+- Fixes uncaught exception from missing sprites.
+- Fixes Unicode glyph range end.
+
+# 1.0.3
+
+- Fixes crash during garbage collection by assigning FileSource handle
+ to a v8::Persistent in NodeMap constructor.
+
+# 1.0.2
+
+- Initialize shared display connection at module load time to avoid
+ race condition when display connection is initialized on-demand.
+
+# 1.0.1
+
+- Adapts NodeFileSource around mbgl::Environment additions.
+- Adapts to minor changes in mapbox-gl-test-suite.
+- Adds tests for gzipped vector tile handling.
+- Cleans up documentation.
+
+# 1.0.0
+
+- Initial release.