Open greenkeeper[bot] opened 7 years ago
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 8 commits .
9f4b8bb
1.1.10
adc95bb
Drop use of lodash/intersection from checkDuplicateIncludeExcludes (#173)
129f5f3
Merge pull request #170 from babel/hzoo-patch-1 [skip ci]
3993f08
add descriptions [skip ci]
6a44d3e
add links
51f7f68
Merge pull request #171 from babel/travis-shrug
534b566
Pin yarn version on travis
15dccd4
v1.1.9 changelog [skip ci]
See the full diff.
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 16 commits .
dfc1cb6
1.1.11
23b6459
Bump compat-table (#177)
dd21531
Merge pull request #176 from babel/add-electron-fail
12c0357
add electron version util to normalize-options
4114441
Use invariant for invalid electron version
18508c8
Add electron version exception test
3d4baca
Fix hasBeenWarned condition. (#175)
8086185
Add yarn example. (#174)
9f4b8bb
1.1.10
adc95bb
Drop use of lodash/intersection from checkDuplicateIncludeExcludes (#173)
129f5f3
Merge pull request #170 from babel/hzoo-patch-1 [skip ci]
3993f08
add descriptions [skip ci]
6a44d3e
add links
51f7f68
Merge pull request #171 from babel/travis-shrug
534b566
Pin yarn version on travis
There are 16 commits in total. See the full diff.
Your tests are passing again with this version. Explicitly upgrade to this version π
Support for uglify
as a target is now available! This will enable all plugins and, as a result, fully compiles your code to ES5. Note, that useBuiltIns will work as before, and only the polyfills that your other target(s) need will be included.
{
"presets": [
["env", {
"targets": {
"chrome": 55,
"uglify": true
},
"useBuiltIns": true,
"modules": false
}]
]
}
Fixes a number of bugs that caused some incorrect and/or missing environment data when parsing compat-table
.
The new version differs by 31 commits .
82b62c9
v1.2.0 changelog [skip ci]
b1399d9
1.2.0
c7bd064
Add uglify as a target (#178)
f0b6e51
Merge pull request #180 from babel/fix-compat-import
1edddca
Donβt add duplicate entries to map
fc040dd
Version can be float and correctly lookup envMap
6549565
Update compat-table to include ndoe4 and ios8 fixes
b5786d3
Add comments
29bd962
Secure script
880fb30
Fix tests
7319e7a
Fix node 4
2db35c8
Remove console.log
f05ef3b
Respect older versions in invert map
18771ed
Add additional note about async support on changelog [skip ci]
d43cfe3
v1.1.11 changelog [skip ci]
There are 31 commits in total. See the full diff.
Your tests are passing again with this version. Explicitly upgrade to this version π
Our plugin data was missing a mapping for the transform-duplicate-keys
plugin which caused it to never be included. (s/o to @Timer for the report!)
The new version differs by 35 commits .
14b2e4f
v1.2.1 changelog [skip ci]
e407ea4
1.2.1
e4d0040
Add transform-duplicate-keys mapping (#192)
0465a63
Clarify reasons for the uglify option in README.md (#188)
82b62c9
v1.2.0 changelog [skip ci]
b1399d9
1.2.0
c7bd064
Add uglify as a target (#178)
f0b6e51
Merge pull request #180 from babel/fix-compat-import
1edddca
Donβt add duplicate entries to map
fc040dd
Version can be float and correctly lookup envMap
6549565
Update compat-table to include ndoe4 and ios8 fixes
b5786d3
Add comments
29bd962
Secure script
880fb30
Fix tests
7319e7a
Fix node 4
There are 35 commits in total. See the full diff.
Your tests are passing again with this version. Explicitly upgrade to this version π
When parsing plugin data, we weren't properly handling browser families. This caused
transform-es2015-block-scoping
and other plugins to be incorrectly added for Edge >= 12.
(s/o to @mgol for the the report and review!)
Fixes an issue where some TypedArray features were not being polyfilled properly. (s/o to @alippai for the report!)
The new version differs by 60 commits .
40c3a1f
v1.2.2 changelog [skip ci]
e186f2d
1.2.2
ac9cf86
Change how yarn is installed on travis
81a7a82
Merge pull request #198 from yavorsky/typed-ie
491dc2c
Add typed array methods to built-ins features.
ed59056
Merge pull request #208 from babel/issue207
0cd96f5
address review comments
ea788f8
Refactor browser data parsing to handle families
df1452f
Merge pull request #201 from yavorsky/bump-plugins
215e5eb
Merge branch 'master' into bump-plugins
defdd5e
Merge pull request #200 from alxpy/alxpy-patch-1
1bc6235
Tweak package scripts and travis config for code coverage
707bf10
Add babel-plugin-istanbul
5964dec
Add codecov badge
163ed64
Enable code coverage
There are 60 commits in total. See the full diff.
Your tests are still failing with this version. Compare the changes π¨
We now properly check for Symbol.species
support in ArrayBuffer and include the
polyfill if necessary. This should, as a side effect, fix ArrayBuffer-related
errors on IE9.
We've simplified things by adding electron
as a target instead of doing a bunch of
things at runtime. Electron targets should now also be displayed in the debug output.
If you are targeting the node
environment exclusively, the always-included web polyfills
(like dom.iterable
, and a few others) will now no longer be included.
The new version differs by 68 commits .
8b2dc4f
1.3.0
6ebf857
Update changelog
046f326
Add check for ArrayBuffer[Symbol.species] (#233)
aead61c
Fill data with electron as a target. (#229)
48a329b
separate default builtins for platforms (#226)
a4d585c
remove deprecated projects (#223) [skip ci]
88cbe17
Merge pull request #216 from babel/update-npmignore
cf94af3
npmignore: Add related to build data and codecov.
40c3a1f
v1.2.2 changelog [skip ci]
e186f2d
1.2.2
ac9cf86
Change how yarn is installed on travis
81a7a82
Merge pull request #198 from yavorsky/typed-ie
491dc2c
Add typed array methods to built-ins features.
ed59056
Merge pull request #208 from babel/issue207
0cd96f5
address review comments
There are 68 commits in total. See the full diff.
Your tests are still failing with this version. Compare the changes π¨
Your tests are passing again with this version. Explicitly upgrade to this version π
Your tests are passing again with this version. Explicitly upgrade to this version π
Adding electron as a target was an inadvertent breaking change as it no longer
allowed string versions. We added an exception for now, even though it is
inconsistent with other versions. Just as a note, the upcoming version 2.x will
allow both number and string versions.
We now force the const-es2015-check
plugin to run first (so that it can
correctly report issues before they get transpiled away).
The include
and exclude
options now allow both prefixed (babel-plugin-transform-es2015-spread
)
and prefix-less (transform-es2015-spread
) plugin names.
The new version differs by 13 commits .
a222453
1.3.3
801c6d4
Fix and update changelog for v1.3.3 [skip ci]
8701755
Ensure const-check plugin order (#257)
19bd172
Update changelog (#253)
d7adb12
Merge pull request #252 from yavorsky/electron-string
b3edcf5
Support electron version in a string format.
c2e99b2
Merge pull request #245 from babel/existentialism-patch-1
b3f17b8
Note babel plugin prefix handling in include/exclude [skip ci]
f901427
Allow use babel-plugin-
prefix for include and exclude. (#242)
b2057c0
Add simple smoke-test (#240)
fe74b77
Fix README: debug option shows info in stdout. (#236)
500b2fb
Add prepublish script
147a33b
1.3.2
See the full diff.
Your tests are passing again with this version. Explicitly upgrade to this version π
Added an option to enable more spec compliant, but potentially slower, transformations for any plugins in this preset that support them.
We updated our mappings so that you can get native support for async/await and other goodies when targeting Edge 15!
Fixed a bug that was ignoring Android targets in browserslist queries (for example: "Android >= 4").
The new version differs by 24 commits .
125e928
1.4.0
e22c26c
Update changelog [skip ci]
2aaecc5
Support spec
option (#98)
8bca925
Clarify note about loading polyfills only once (#282)
2135fb9
Add a reminder about include/exclude options (#275)
40da88e
Chore: reduce package size. (#281) [skip ci]
cad1b2b
Merge pull request #273 from babel/compat-table
7033974
Bump compat-table for Edge 15 support
38a1369
Remove deprecated comment (#271)
d197aa0
Merge pull request #270 from babel/issue268
c0d641e
Add Android browser to name map
a222453
1.3.3
801c6d4
Fix and update changelog for v1.3.3 [skip ci]
8701755
Ensure const-check plugin order (#257)
19bd172
Update changelog (#253)
There are 24 commits in total. See the full diff.
Version 1.1.9 of babel-preset-env just got published.
This version is covered by your current version range and after updating it in your project the build failed.
As babel-preset-env is βonlyβ a devDependency of this project it might not break production or downstream projects, but βonlyβ your build or test tools β preventing new deploys or publishes.
I recommend you give this issue a high priority. Iβm sure you can resolve this :muscle:
Status Details
- β **continuous-integration/travis-ci/push** The Travis CI build could not complete due to an error [Details](https://travis-ci.org/bustlelabs/wool/builds/204967925)Commits
The new version differs by 20 commits .
846b7a2
1.1.9
48049aa
update compat (#169)
d1f301e
Add tests for debug output (#156)
9667dae
Fixes #143. Log correct targets. (#155)
48bde3b
Fix compat-table link in contributing.md
a59cf5b
Update yarn lockfile (#152)
27f33a1
Update README examples to fix website [skip ci] (#151)
55aa7ff
Use external Electron to Chromium library (#144)
96efb98
Merge pull request #146 from babel/typos
5fd3406
Fix few typos
7acd181
Merge pull request #125 from babel/feature/extract-option-validation
b8c768f
Extract option normalization into independant file
d726a5b
Update yarnfile
785d8ea
devDeps: eslint-config-babel v5.0.0 (#139)
fcf220c
Merge pull request #138 from yavorsky/debug-example
There are 20 commits in total. See the full diff.
Not sure how things should work exactly?
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: