Skip to content

Commit

Permalink
Re-define the browser support matrix
Browse files Browse the repository at this point in the history
Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+, iOS
Safari 10.3+ and node 8.9+.
  • Loading branch information
stasm committed Jun 15, 2018
1 parent 2f10bde commit d519b45
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 8 deletions.
24 changes: 18 additions & 6 deletions babel_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,28 @@ export default {
modules: false,
targets: {
browsers: [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
]
}
"Firefox >= 52",
"FirefoxAndroid >= 52",
"Chrome >= 55",
"ChromeAndroid >= 55",
"Edge >= 15",
"Safari >= 10.1",
"iOS >= 10.3",
],
node: "8.9",
},
exclude: [
// Exclude regeneratorRuntime explicitly because babel-preset-env
// incorrectly transpiles async functions for Firefox 52.
// See https://github.com/babel/babel/issues/8086.
"transform-regenerator"
],
}]
],
plugins: [
// Shipped in Firefox 57, Chrome 63
"@babel/plugin-proposal-async-generator-functions",
// Shipped in Firefox 55, Chrome 60
"@babel/plugin-proposal-object-rest-spread"
]
};
7 changes: 6 additions & 1 deletion fluent-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Changelog

## Unreleased
-

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent-dom 0.3.0

- Refactor the overlay sanitization methods into separate functions. (#189)
- Separate out CachedIterable and CachedAsyncIterable, and add a param to touchNext. (#191)
- Localization.formatValues should accept an array of objects. (#198)
Expand Down
5 changes: 5 additions & 0 deletions fluent-intl-polyfill/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

- The compat build is now transpiled using rollup-plugin-babel.

This ensures that the "use strict" pragma is scoped to the UMD wrapper. It
Expand Down
5 changes: 4 additions & 1 deletion fluent-langneg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Unreleased

-
- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent-langneg 0.1.0 (August 17, 2017)

Expand Down
7 changes: 7 additions & 0 deletions fluent-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Unreleased

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent-react 0.7.0 (May 18, 2018)

- Protect void elements against translated text content. (#174)
Expand Down
7 changes: 7 additions & 0 deletions fluent-syntax/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Unreleased

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent-syntax 0.7.0 (April 17, 2018)

- Add the `ref` field to `VariantExpression`.
Expand Down
7 changes: 7 additions & 0 deletions fluent-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Unreleased

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent-web 0.0.1

- The initial release.
7 changes: 7 additions & 0 deletions fluent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Unreleased

- Drop support for IE and old evergreen browsers. (#133)

Currently supported are: Firefox 52+, Chrome 55+, Edge 15+, Safari 10.1+,
iOS Safari 10.3+ and node 8.9+.

## fluent 0.6.4 (April 11, 2018)

- Minor optimization to bidirectionality isolation
Expand Down

0 comments on commit d519b45

Please sign in to comment.