-
Notifications
You must be signed in to change notification settings - Fork 29
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
fix(deps): update dependency source-map to ^0.7.0 #385
Conversation
8311b78
to
51d8cb8
Compare
7fab51c
to
c3f3776
Compare
c3f3776
to
8e22320
Compare
PR has been edited👷 This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over then you can add the label |
This version of source-map dropped support for Node 6 (cloud-debug-nodejs also uses source map, some discussion on why that module didn't switch to 0.7.0 here) Closing this, since we want to support Node 6. |
Renovate Ignore NotificationAs this PR has been closed unmerged, Renovate will now ignore this update (^0.7.0). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened. |
Only a few months left 😄 |
A few months till Node 6 EOL? Can we just drop Node 6 support then? @nolanmar511 perhaps take a look at whether we get any Node 6 traffic? |
Re-opening as I'd like to understand the Node.js 6 plan better. Not being able to update dependencies is not exciting. |
This is the standard way the community operates. Around this time every year, we expect the ecosystem to start dropping support for imminently EoL versions of Node. Here's some thoughts on the fact some modules drop support early that I have left in chat elsewhere, but copying here:
|
This PR contains the following updates:
^0.6.1
->^0.7.0
Release Notes
mozilla/source-map
v0.7.3
Compare Source
SourceMapConsumer
could result in aTypeError
. #338#330
#319
v0.7.2
Compare Source
SourceMapConsumer
. Read about it here:http://fitzgeraldnick.com/2018/02/26/speed-without-wizardry.html
v0.7.1
Compare Source
v0.7.0
Compare Source
SourceMapConsumer
now uses WebAssembly, and is much faster! Read aboutit here:
https://hacks.mozilla.org/2018/01/oxidizing-source-maps-with-rust-and-webassembly/
Breaking change:
new SourceMapConsumer
now returns aPromise
objectthat resolves to the newly constructed
SourceMapConsumer
instance, ratherthan returning the new instance immediately.
Breaking change: when you're done using a
SourceMapConsumer
instance,you must call
SourceMapConsumer.prototype.destroy
on it. After callingdestroy
, you must not use the instance again.Breaking change:
SourceMapConsumer
used to be able to handle lines,columns numbers and source and name indices up to
2^53 - 1
(akaNumber.MAX_SAFE_INTEGER
). It can now only handle them up to2^32 - 1
.Breaking change: The
source-map
library now uses modern ECMAScript-isms:let
, arrow functions,async
, etc. Use Babel to compile it down toECMAScript 5 if you need to support older JavaScript environments.
Breaking change: Drop support for Node < 8. If you want to support older
versions of node, please use v0.6 or below.
Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "
rebase!
".🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.