Skip to content

Commit 11cecea

Browse files
committed
Release 0.8.0-beta.0
1 parent 02f3d6b commit 11cecea

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Change Log
22

3+
## 0.8.0-beta.0
4+
5+
### Breaking changes
6+
7+
* [#350](https://github.com/mozilla/source-map/pull/350) -
8+
Change browser detection logic for WASM loading.
9+
* [#363](https://github.com/mozilla/source-map/pull/363) -
10+
Change WASM loading detection to rely on `package.json#browser` field.
11+
* [#362](https://github.com/mozilla/source-map/pull/362) -
12+
Remove the `dist/` bundle.
13+
* [#371](https://github.com/mozilla/source-map/pull/371) -
14+
Reimplement sourcemap URL processing using the WHATWG URL API.
15+
16+
### Nonbreaking changes:
17+
18+
* [#339](https://github.com/mozilla/source-map/pull/339) -
19+
Allow initializing the consumer `mappings.wasm` file as an `ArrayBuffer`.
20+
21+
### Internal Improvements:
22+
23+
* [#347](https://github.com/mozilla/source-map/pull/347) -
24+
Improve tests.
25+
* [#352](https://github.com/mozilla/source-map/pull/352) -
26+
Improve documentation.
27+
* [#361](https://github.com/mozilla/source-map/pull/361) -
28+
Use newer Webpack CLI when bundling.
29+
* [#364](https://github.com/mozilla/source-map/pull/364) -
30+
Convert `IndexedSourceMapConsumer` implementation to pass more through
31+
to `BasicSourceMapConsumer`.
32+
* [#366](https://github.com/mozilla/source-map/pull/366) -
33+
Normalize internal URL representation to be easier to follow.
34+
* [#341](https://github.com/mozilla/source-map/pull/341) -
35+
Use async functions to simplify `SourceMapConsumer.with` implementation.
36+
37+
338
## 0.7.3
439

540
* Fix a bug where nested uses of `SourceMapConsumer` could result in a

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "source-map",
33
"description": "Generates and consumes source maps",
4-
"version": "0.7.3",
4+
"version": "0.8.0-beta.0",
55
"homepage": "https://github.com/mozilla/source-map",
66
"author": "Nick Fitzgerald <[email protected]>",
77
"contributors": [
@@ -57,6 +57,9 @@
5757
"source-map.d.ts",
5858
"lib/"
5959
],
60+
"publishConfig": {
61+
"tag": "next"
62+
},
6063
"engines": {
6164
"node": ">= 8"
6265
},

0 commit comments

Comments
 (0)