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

chore(deps): update babel monorepo #5780

Merged
merged 1 commit into from
Apr 26, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 27, 2021

WhiteSource 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 10.0.3 -> 10.1.0 age adoption passing confidence
babel-loader 7.1.0 -> 7.1.5 age adoption passing confidence
babel-preset-es2015 (source) 6.22.0 -> 6.24.1 age adoption passing confidence
babel-preset-react (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

v10.1.0

Compare Source

babel/babel-loader

v7.1.5

Compare Source

v7.1.5

v7.1.4

Compare Source

🐛 Bug Fix
  • Update code to read filename

v7.1.3

Compare Source

🐛 Bug Fix
  • Support webpack 4

v7.1.2

Compare Source

🐛 Bug Fix
  • Add the message in BabelLoaderError's stack trace on node 8 (#​499) (Stephen Jennings)
  • Do not swallow errors in exists() and only call exists if option is string (#​495) (Nelo Mitranim)
📝 Documentation
  • README: fix typo (#​498) (Piper Chester)
🏠 Internal
  • Update ava to the latest version 🚀 (#​500) (greenkeeper[bot])
  • Update ava to the latest version 🚀 (#​491) (greenkeeper[bot])
  • Update ava to the latest version 🚀 (#​487) (greenkeeper[bot])

v7.1.1

Compare Source

🐛 Bug Fix
  • Do not read .babelrc for cache identifier when babelrc=false (#​483) (Russ Tyndall)
📝 Documentation
  • Update README.md for webpack 3.x (#​476) (Pierre Neter)
🏠 Internal
  • Update eslint to the latest version 🚀 (#​482) (greenkeeper[bot])
  • chore(package): update husky to version 0.14.0 (#​475) (greenkeeper[bot])

Configuration

📅 Schedule: At any time (no schedule defined).

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

Rebasing: Never, 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 27, 2021
@renovate renovate bot force-pushed the renovate/babel-monorepo branch from 87e5c57 to 57b237a Compare August 5, 2021 16:55
@renovate renovate bot force-pushed the renovate/babel-monorepo branch from 57b237a to eda111f Compare April 26, 2022 21:04
@kchadha kchadha merged commit e12bd10 into develop Apr 26, 2022
@renovate renovate bot deleted the renovate/babel-monorepo branch April 26, 2022 21:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants