Skip to content
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

Update babel monorepo - autoclosed #30

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 26, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
babel-core (source) ^6.23.1 -> 6.26.3 age adoption passing confidence
babel-eslint ^7.1.1 -> 7.2.3 age adoption passing confidence
babel-loader ^6.4.0 -> 6.4.1 age adoption passing confidence
babel-preset-env (source) ^1.2.1 -> 1.7.0 age adoption passing confidence
babel-preset-react (source) ^6.23.0 -> 6.24.1 age adoption passing confidence
babel-preset-stage-0 (source) ^6.22.0 -> 6.24.1 age adoption passing confidence

Release Notes

babel/babel

v6.26.3

Compare Source

Summary
  • Fixed a small regression from the backport of #​7761 from #​7812 if the output file contains no JS content

v6.26.2

Compare Source

Summary
  • Landed #​7812 which backported several fixes to make sourcemaps behave better
    • #​7312 - Include better mappings for arrow-transformed 'this' and 'arguments'
    • #​7378 - Include better mappings for import bindings transformed to member expressions
    • #​7761 - Re-implement inputSourceMap merging logic to more accurately reflect mappings

v6.26.0

Compare Source

6.26.0 (2017-08-16)

Backports for some folks (also others when we accidentally merged PRs from both 6.x/master)
Lesson learned: just use master and backport on another branch.
7.x beta is next: https://github.com/babel/babel/milestone/9, not planning on further 6.x releases (we say this every time)

👓 Spec Compliancy
  • babel-core, babel-generator, babel-plugin-transform-flow-comments, babel-plugin-transform-flow-strip-types, babel-traverse, babel-types
🚀 New Feature
  • babel-cli
🐛 Bug Fix
📝 Documentation
  • babel-plugin-transform-class-properties
  • babel-plugin-transform-runtime
  • babel-plugin-transform-regenerator
  • Other
  • babel-generator, babel-plugin-transform-es2015-arrow-functions, babel-plugin-transform-es2015-modules-commonjs, babel-plugin-transform-es2015-spread, babel-plugin-transform-runtime, babel-register
🏠 Internal
Committers: 19

v6.25.0

Compare Source

6.25.0 (2017-06-08)

Just backporting a few things.

🚀 New Feature
  • babel-plugin-transform-react-display-name
  • babel-generator, babel-plugin-transform-flow-strip-types, babel-types
🐛 Bug Fix
💅 Polish
Committers: 5

v6.24.1

Compare Source

v6.24.1 (2017-04-07)
🐛 Bug Fix
  • babel-plugin-transform-regenerator

Fixes an issue when using async arrow functions with rest parameters (crazy!)

function test(fn) {
  return async (...args) => {
    return fn(...args);
  };
} 
  • babel-plugin-transform-es2015-function-name, babel-types
var obj = { await: function () {} }; // input
var obj = { await: function _await() {} };  // output
📝 Documentation
🏠 Internal
Committers: 5

v6.24.0

Compare Source

6.24.0 (2017-03-13)

A quick release for 2 features:

  • Thanks to @​rwjblue, there is now a noInterop option for our es2015-modules transform to remove the interopRequireDefault and interopRequireWildcard helpers.

Input

import foo from "foo";
foo;

Regular Output

var _foo = require("foo");
var _foo2 = _interopRequireDefault(_foo);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
_foo2.default;

Output with option noInterop

"use strict";
var _foo = require("foo");
(0, _foo.default)();

This also helps ember-cli migrate to Babel 6.

  • @​izaakschroeder has added dirname to the preset constructor which presets can use to resolve things relative to files.

Example usage of fileContext.dirname in a preset

module.exports = function preset (context, options, fileContext) {
  if (/resolve-addons-relative-to-file$/.test(fileContext.dirname)) {
    return {
      plugins: ['plugin-here'],
    };
  }
  return {};
};

This will help out with reusing a browserslist file for babel-preset-env and for plugins like https://github.com/tleunen/babel-plugin-module-resolver.

🚀 New Feature
  • babel-plugin-transform-es2015-modules-amd, babel-plugin-transform-es2015-modules-commonjs
  • babel-core
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 14
babel/babel-eslint

v7.2.3

Compare Source

Fix

v7.2.2

Compare Source

v7.2.2

  • Fix: use eslint-scope instead of escope if present (#​461) (Vitor Balocco)
  • Separate finding peer deps from monkeypatching (#​460) (Andres Suarez)
  • Remove unused .gitmodules (#​457) (Andres Suarez)
  • Use dedent for unpadding (#​456) (Andres Suarez)
  • Enable strict mode in all of babylon-to-espree (Andres Suarez)
  • Move ast convert steps to babylon-to-espree (Andres Suarez)
  • Use for-loop for template literal conversion (Andres Suarez)
  • Only iterate over tokens once (Andres Suarez)
  • Inline fixDirectives and use for-loop (Andres Suarez)
  • Consolidate versions of "convertComments" (Andres Suarez)
  • toAst pass "source" in state instead of keeping in scope (Andres Suarez)
  • Add type parameter scope tests (#​454) (Andres Suarez)

v7.2.1

Compare Source

v7.2.0

Compare Source

New Feature
  • Add option to disable code frame. (#​446) (Luís Couto)

Main change is just an option to disable the codeframe (added in v7.1.1) for html output and more (thanks to @​Couto).

{
  "parser": "babel-eslint",
  "parserOptions": {
    "codeFrame": false
  },
  "extends": "eslint:recommended"
}
Bug Fix
  • [flow] Process polymorphic type bounds on functions (#​444) (Alex Rattray)
Internal/Docs
  • Use lodash instead of lodash.pickby. (#​435) (wtgtybhertgeghgtwtg)
  • Updates ESLint version/remove unnecessary config (Kai Cataldo)
  • Remove broken ESLint tests (Kai Cataldo)
  • Upgrade outdated dependencies (Kai Cataldo)
  • remove deprecated rule examples [skip ci] (Henry Zhu)
  • update readme [skip ci] (Henry Zhu)
  • chore(package): update eslint-config-babel to version 6.0.0 (#​433) (Henry Zhu)
  • Update to use Node 4 features (#​425) (Nazim Hajidin)
  • chore(package): update eslint-config-babel to version 4.0.0 (#​430) (greenkeeper[bot])
  • add badges [skip ci] (Henry Zhu)
  • Revert "use *" (#​426) (Henry Zhu)
  • use * (#​421) (Henry Zhu)
  • chore(package): update eslint-config-babel to version 3.0.0 (#​423) (greenkeeper[bot])
babel/babel-loader

v6.4.1

Compare Source

🐛 Bug Fix
babel/babel-preset-env

v1.7.0

Compare Source

v1.6.1

Compare Source

🐛 Bug Fix

ES2015 destructuring is not fully supported in Edge 15 and the polyfill required again. es6.math.imul is supported on Android as of version 4.4

Functions such as Object.keys, Object.freeze, ... do already exist in ES5, but their behaviour changed in ES2015. babel-preset-env with builtIns: true now adds the core-js polyfills for this methods if the browser only supports the ES5 variant of the method (like IE11 for example)

v1.6.0

Compare Source

🚀 New Feature

We updated our mappings to support native trailing function commas and string paddings in Node.js 8+.

🐛 Bug Fix

We added support for using browserslist's chromeandroid in targets.

📝 Documentation

Thanks to @​graingert and @​pfiaux for pointing out some needed updates to the uglify-js-related docs.

v1.5.2

Compare Source

🐛 Bug Fix

browser targets should be overridden by explicit targets, and we inadvertently broke this when we landed string version support.

v1.5.1

Compare Source

🐛 Bug Fix

v1.5.0

Compare Source

🚀 New Feature

We were originally waiting on 2.x for a breaking change, but since node v7.10
and other targets are causing some pain, we decided to land a backwards
compatible version.

🏠 Internal

v1.4.0

Compare Source

🚀 New Feature

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!

🐛 Bug Fix

Fixed a bug that was ignoring Android targets in browserslist queries (for example: "Android >= 4").

📝 Documentation
🏠 Internal

v1.3.3

Compare Source

🐛 Bug Fix

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).

🚀 New Feature

The include and exclude options now allow both prefixed (babel-plugin-transform-es2015-spread)
and prefix-less (transform-es2015-spread) plugin names.

📝 Documentation
🏠 Internal

v1.3.2

Compare Source

  • Fixed an issue with a broken publish

v1.3.1

Compare Source

  • Fixed a regression with missing files due to .npmignore.

v1.3.0

Compare Source

🐛 Bug Fix

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.

💅 Polish

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.

📝 Documentation
🏠 Internal

v1.2.2

Compare Source

🐛 Bug Fix

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!)

📝 Documentation
🏠 Internal

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/babel-monorepo branch from 32aa5c9 to 113d678 Compare May 9, 2021 20:49
@renovate renovate bot changed the title Update babel monorepo Update dependency babel-preset-env to ^1.7.0 May 9, 2021
@coveralls
Copy link

coveralls commented May 9, 2021

Coverage Status

Coverage remained the same at 100.0% when pulling 67d645a on renovate/babel-monorepo into 45be390 on master.

@renovate renovate bot force-pushed the renovate/babel-monorepo branch from 113d678 to 67d645a Compare May 15, 2021 21:27
@renovate renovate bot changed the title Update dependency babel-preset-env to ^1.7.0 Update babel monorepo May 15, 2021
@renovate renovate bot changed the title Update babel monorepo Update babel monorepo - autoclosed Nov 20, 2022
@renovate renovate bot closed this Nov 20, 2022
@renovate renovate bot deleted the renovate/babel-monorepo branch November 20, 2022 13:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants