-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node.js v6: v8::ObjectTemplate::Set() with non-primitive values is deprecated
#758
Comments
we just have to update the minimum version of NAN, it was fixed in 2.3.1: nodejs/nan@a90951e |
Pull request: #759 |
Released as |
i'm also getting this error
|
@jitendravyas Have you made sure that your version of canvas is updated to 1.3.13? |
i am also getting this error (node) v8::ObjectTemplate::Set() with non-primitive values is deprecated ==== JS stack trace ========================================= Security context: 0xc9537cc9fa9 #0# 1: v8::Template::Set(v8::Localv8::Name, v8::Localv8::Data, v8::PropertyAttribute) |
@richardgong1987 Have you made sure that your version of canvas is updated to 1.3.13? |
I am also running into this error: `node) v8::ObjectTemplate::Set() with non-primitive values is deprecated ==== JS stack trace ========================================= Security context: 0x3cf280bc9fa9 #0# 1: v8::Template::Set(v8::Localv8::Name, v8::Localv8::Data, v8::PropertyAttribute) |
@seanlarge Have you made sure that your version of canvas is updated to 1.3.13? |
Ref. nodejs/node#6216 and nodejs/node#6228 — starting with Node.js v6, setting non-primitive values on
FunctionTemplate
andObjectTemplate
instances is discouraged (and triggers a stack trace). v7 will downright disallow it.The text was updated successfully, but these errors were encountered: