fatfisz / babel-plugin-module-resolverino

Custom module resolver plugin for Babel
MIT License
0 stars 0 forks source link

An in-range update of common-tags is breaking the build 🚨 #13

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 1.5.0 of common-tags was just published.

Branch Build failing 🚨
Dependency common-tags
Current Version 1.4.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

common-tags is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details - ❌ **ci/circleci** CircleCI is running your tests [Details](https://circleci.com/gh/fatfisz/babel-plugin-module-resolverino/117?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) - ❌ **continuous-integration/appveyor/branch** AppVeyor build failed [Details](https://ci.appveyor.com/project/fatfisz/babel-plugin-module-resolverino/build/144)

Commits

The new version differs by 52 commits.

  • f81559f 1.5.0
  • daa8a77 Add RafaΕ‚ RuciΕ„ski as a contributor
  • 900aa00 Replace trim methods with RegExp (#127)
  • 92ec152 Use slice instead of substr
  • 778b3e6 Add a note about needed polyfills
  • 6fb2cdc Misc - fix test names
  • a433625 Don't fail fast by default when running the tests
  • e9365c4 Fix oneLineTrim (#126)
  • 8a78ea5 Add info about stripIndent tag not being the html tag
  • bed83d8 Don't insert a conjunction if the substition array contains only one item (#117)
  • 147a84a Add a test for a newline preceding an array in html tag
  • 6023b75 Fix InlineArrayTransformer adding extra newlines when maintaining indentation [WIP] (#114)
  • 9295ee1 Merge pull request #124 from declandewet/update-deps
  • 607dca1 Exclude .babelrc.js from npm package and codecov
  • c2e5ae6 Remove regenerator-runtime from unused-ignores

There are 52 commits in total.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 6 years ago

After pinning to 1.4.0 your tests are passing again. Downgrade this dependency πŸ“Œ.

greenkeeper[bot] commented 6 years ago

Version 1.5.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 2 commits.

  • 62ff633 1.5.1
  • 292c10a Fix stripIndents and add regression tests (#129)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 1.6.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Commits

The new version differs by 19 commits.

  • d156062 1.6.0
  • 48d0c6d Merge pull request #135 from declandewet/fix-logo-text
  • 7393d25 fix logo text
  • c6b0925 Merge pull request #133 from declandewet/maintenance
  • a61cfc2 improve introductory section
  • 953e503 fix slack link
  • 1e81686 generate package-lock
  • c6f128c remove wallaby.js
  • dc36e2c remove emoji from titles because it breaks navigation
  • 6f5a83c add see who is using section
  • b7f3f28 change string usage header to be more descriptive and conform it to title capitilization
  • 7fb572b add note about type definitions
  • 551c890 fix markdown lint errors
  • ab9abe9 extract table of contents (toc) generation to own script & generate new toc
  • 95762f3 use actual emoji so README doesn't look broken on pages that don't support emoji tags

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 1.7.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Release Notes v1.7.0

New Features

onString

onString - transformers now accept an onString method which runs on each part of the template literal that is not marked as a substitution (i.e. not inside "${}").

replaceStringTransformer

replaceStringTransformer(replaceWhat, replaceWith)

Replaces the result of all strings (what's not in ${ ... }) with a new value. Same as for replaceResultTransformer, replaceWhat can be a string or regular expression and replaceWith is the new value.

Commits

The new version differs by 28 commits.

  • 38c07c9 1.7.0
  • 2ffb01e Merge pull request #106 from pizzafroide/transform-literals
  • 446229e Rename onLiteral to onString (and replaceLiteralTransformer to replaceStringTransformer)
  • ff8eb71 Take #132 changes into account
  • 156f200 Merge pull request #136 from declandewet/greenkeeper/cross-env-5.1.3
  • 3fe7cd8 chore(package): update cross-env to version 5.1.3
  • d156062 1.6.0
  • 48d0c6d Merge pull request #135 from declandewet/fix-logo-text
  • 7393d25 fix logo text
  • a4007c8 Merge branch 'master' into transform-literals
  • c6b0925 Merge pull request #133 from declandewet/maintenance
  • a61cfc2 improve introductory section
  • 953e503 fix slack link
  • 1e81686 generate package-lock
  • c6f128c remove wallaby.js

There are 28 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 1.7.1 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Release Notes v1.7.1

Patches

We've migrated from StandardJS formatting to Prettier's automatic code formatting as well as the recommended ESLint rules. Big props to @fatfisz on this release 🎊

Commits

The new version differs by 39 commits.

  • d5f9e08 1.7.1
  • f8058ea fix package-lock issue
  • 6a06e69 Merge pull request #137 from declandewet/prettier
  • f8d8548 Update the docs
  • 0e7ef63 Use the default (80 characters) width
  • aed3383 Add semicolons
  • 26c3c35 Move the config to .prettierrc
  • 51b18d9 Update the docs
  • 0a7c1b6 Set the right lint engine for BitHound
  • d49341d Apply the rules to all the files
  • 424536f Replace Standard with ESLint + Prettier
  • 38c07c9 1.7.0
  • 2ffb01e Merge pull request #106 from pizzafroide/transform-literals
  • 446229e Rename onLiteral to onString (and replaceLiteralTransformer to replaceStringTransformer)
  • ff8eb71 Take #132 changes into account

There are 39 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 1.7.2 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Release Notes v1.7.2

No major changes in this release, we just migrated from the AVA test runner to Jest, which has mitigated some issues with our CI pipeline speeds and removed some hard to maintain configs.

Commits

The new version differs by 51 commits.

  • 4ea0b81 1.7.2
  • 4b90cbd Merge pull request #138 from declandewet/jest
  • e52a041 remove redundant environment variables, switch to Node.js test environment instead of jsdom
  • b4a9102 remove nyc and ava configs
  • 984a224 add trailing comma to eslintrc
  • 0c50944 get rid of use strict directive in config files
  • 23a0722 revert useless jest configs
  • 3d741fa change eslint source type to module
  • cbd33cd set js files to be parsed by babel-jest
  • 374fe00 update babel env for Jest transpilation in older environments
  • 4097976 add babel-jest
  • 7f0666e migrate to jest from ava
  • d5f9e08 1.7.1
  • f8058ea fix package-lock issue
  • 6a06e69 Merge pull request #137 from declandewet/prettier

There are 51 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 1.8.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Release Notes v1.8.0

Bug Fixes

  • Previously valueOf was called on objects in templates before toString - now the order is in line with the spec (#144)

Plumbing

  • babel-plugin-transform-runtime was removed as a dependency and as a result babel-runtime is not necessary to use common-tags any more (that means common-tags is dependency-free!) (#148)
  • common-tags is now rolling up into a neat bundle that you can get at unpkg. This makes it even easier to get started with this library! (#150)
  • Dev dependencies were updated (no changes to the actual code) (#149)
Commits

The new version differs by 76 commits.

  • 6fd7469 1.8.0
  • 488d7b0 Make doctoc work properly on Windows
  • 5e545b6 Regenerate the table of contents
  • 978b2b1 Add a note about unpkg
  • 81fb440 1.8.0-rc.1
  • 92fbc28 Merge pull request #150 from declandewet/add-unpkg-bundle
  • b87b940 Only include the necessary files in the bundle
  • f9878cf Add an unpkg bundle
  • f2b079c Merge pull request #149 from declandewet/update-dev-dependencies
  • 20c511f Update dev dependencies
  • 40c9843 Merge pull request #148 from declandewet/remove-babel-runtime-dependency
  • 01d27d1 Remove the transform-runtime plugin and the dependency
  • 92a9265 Merge pull request #147 from declandewet/greenkeeper/cross-env-5.1.6
  • cfd2251 Merge branch 'master' into greenkeeper/cross-env-5.1.6
  • 0fac452 Merge pull request #145 from declandewet/greenkeeper/cross-env-5.1.5

There are 76 commits in total.

See the full diff