Skip to content

Commit

Permalink
Release 0.8.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
loganfsmyth committed Nov 16, 2018
1 parent 02f3d6b commit 11cecea
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Change Log

## 0.8.0-beta.0

### Breaking changes

* [#350](https://github.com/mozilla/source-map/pull/350) -
Change browser detection logic for WASM loading.
* [#363](https://github.com/mozilla/source-map/pull/363) -
Change WASM loading detection to rely on `package.json#browser` field.
* [#362](https://github.com/mozilla/source-map/pull/362) -
Remove the `dist/` bundle.
* [#371](https://github.com/mozilla/source-map/pull/371) -
Reimplement sourcemap URL processing using the WHATWG URL API.

### Nonbreaking changes:

* [#339](https://github.com/mozilla/source-map/pull/339) -
Allow initializing the consumer `mappings.wasm` file as an `ArrayBuffer`.

### Internal Improvements:

* [#347](https://github.com/mozilla/source-map/pull/347) -
Improve tests.
* [#352](https://github.com/mozilla/source-map/pull/352) -
Improve documentation.
* [#361](https://github.com/mozilla/source-map/pull/361) -
Use newer Webpack CLI when bundling.
* [#364](https://github.com/mozilla/source-map/pull/364) -
Convert `IndexedSourceMapConsumer` implementation to pass more through
to `BasicSourceMapConsumer`.
* [#366](https://github.com/mozilla/source-map/pull/366) -
Normalize internal URL representation to be easier to follow.
* [#341](https://github.com/mozilla/source-map/pull/341) -
Use async functions to simplify `SourceMapConsumer.with` implementation.


## 0.7.3

* Fix a bug where nested uses of `SourceMapConsumer` could result in a
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "source-map",
"description": "Generates and consumes source maps",
"version": "0.7.3",
"version": "0.8.0-beta.0",
"homepage": "https://github.com/mozilla/source-map",
"author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
"contributors": [
Expand Down Expand Up @@ -57,6 +57,9 @@
"source-map.d.ts",
"lib/"
],
"publishConfig": {
"tag": "next"
},
"engines": {
"node": ">= 8"
},
Expand Down

0 comments on commit 11cecea

Please sign in to comment.