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 cross-env to the latest version 🚀 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Mar 31, 2017

Version 4.0.0 of cross-env just got published.

Dependency cross-env
Current Version 3.2.4
Type devDependency

The version 4.0.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of cross-env.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes v4.0.0

4.0.0 (2017-03-31)

Bug Fixes

  • Resolve value of env variables before invoking cross-spawn (#95) (e8a16146)
  • Remove Windows => UNIX variable conversion (#94) (0a846e60)
  • module: Add export for commonjs (#88) (22d1c801)

Features

  • Convert list delimiters for PATH-style env variables (#93) (ea0ac4bd)
  • args: convert embedded and braced variables in command args (#86) (1b172fef)
  • spawn: add support for quoted scripts (ea800213)

Breaking Changes

  • This is unlikely to break anyone, but now if you assign a variable to a variable (like FOO=$BAR with the value $BAR being assigned to hello, the command will be converted to FOO=hello whereas before it was FOO=$BAR).
    (e8a16146)
  • %windows_style% env variables will no longer be converted to $unix_style in UNIX machines. To fix it, use always the UNIX syntax, cross-env will change the format in Windows machines as needed
    (0a846e60)
  • If an env variable has : or ; in its value, it will be converted to : on UNIX
    systems or ; on Windows systems. To keep the old functionality, you will need to escape those
    characters with a backslash.

#80

  • chore: Add myself (DanReyLop) to the contributors list

  • Simplified logic. Now only : (UNIX-style) are converted to ; (Windows-style), not the other way around

BREAKING CHANGE: You now must escape : to use it in a value of you don't want it to be swapped with ; on Windows
(ea0ac4bd)

  • Changes the behavior when passed quoted scripts or special characters interpreted by the shell.
    (ea800213)
  • echo $var2/$var1 would not be changed on windows, now it is. This is kind of a bug, but we're doing a major version bump to be safe.
    (1b172fef)
Commits

The new version differs by 7 commits .

  • e8a1614 fix: Resolve value of env variables before invoking cross-spawn (#95)
  • 9e0ea05 docs(engine): revert support to node 4 (#96)
  • 0a846e6 fix: Remove Windows => UNIX variable conversion (#94)
  • ea0ac4b feat: Convert list delimiters for PATH-style env variables (#93)
  • ea80021 feat(spawn): add support for quoted scripts
  • 22d1c80 fix(module): Add export for commonjs (#88)
  • 1b172fe feat(args): convert embedded and braced variables in command args (#86)

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@codecov-io
Copy link

codecov-io commented Mar 31, 2017

Codecov Report

Merging #12 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #12   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           1      1           
  Lines          49     49           
=====================================
  Hits           49     49

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 799e168...66149ed. Read the comment docs.

greenkeeper bot added a commit that referenced this pull request May 11, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 11, 2017

Version 5.0.0 just got published.

Update to this version instead 🚀

Release Notes v5.0.0

5.0.0 (2017-05-11)

Bug Fixes

  • bin: add a bin entry for cross-env-shell (9c4f3462)

Features

Breaking Changes

  • Scripts using quotes or escape sequences will see a difference in behavior.
    Switching to the second bin should resolve any issue.

Closes #99.

(d7b48d5c)

Commits

The new version differs by 4 commits0.

  • 9c4f346 fix(bin): add a bin entry for cross-env-shell
  • d7b48d5 feat(bin): two bins (shell, non-shell) (#104)
  • 3881423 feat: don't change colons on non-PATH/NODE_PATH on win32 (#107)
  • 6994a24 docs(contributors): add amilajack to contributors (#98)

false

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 8, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 8, 2017

Version 5.0.1 just got published.

Update to this version instead 🚀

Release Notes v5.0.1

<a name"5.0.1">

5.0.1 (2017-06-08)

Bug Fixes

Commits

The new version differs by 2 commits.

  • b10de51 fix: Change splitter regex to use .* instead of .+ (#117)
  • c9908f3 test(JSON): add JSON value tests that work on both Windows and UNIX (#112)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 1, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 1, 2017

Version 5.0.2 just got published.

Update to this version instead 🚀

Release Notes v5.0.2

<a name"5.0.2">

5.0.2 (2017-08-01)

Bug Fixes

Commits

The new version differs by 2 commits.

  • 487241d fix: Handle relative path in cmd on windows (#130)
  • f83a163 chore(deps): updated package babel-cli from 6.23.0 to 6.24.1 (#119)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 3, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 3, 2017

Version 5.0.3 just got published.

Update to this version instead 🚀

Release Notes v5.0.3

<a name"5.0.3">

5.0.3 (2017-08-03)

Bug Fixes

  • Normalize command only and not command args(windows) (#134) (277cf075)
Commits

The new version differs by 3 commits.

  • 277cf07 fix: Normalize command only and not command args(windows) (#134)
  • 601632d test: Fix EventEmitter.MaxListenersExceededWarning warning (#132)
  • 0fe3482 chore: rm yarn.lock, add lock files to .gitignore (#131)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 6, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 6, 2017

Version 5.0.4 just got published.

Update to this version instead 🚀

Release Notes v5.0.4

<a name"5.0.4">

5.0.4 (2017-08-06)

Bug Fixes

  • Don't pass fn reference(commandConvert) to commandArgs.map (#135) (c03ec7a2)
Commits

The new version differs by 1 commits.

  • c03ec7a fix: Don't pass fn reference(commandConvert) to commandArgs.map (#135)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 8, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 8, 2017

Version 5.0.5 just got published.

Update to this version instead 🚀

Release Notes v5.0.5

<a name"5.0.5">

5.0.5 (2017-08-08)

Bug Fixes

  • docs: add malware warning to README (44b37dd1)
Commits

The new version differs by 1 commits.

  • 44b37dd fix(docs): add malware warning to README

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 16, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 16, 2017

Version 5.1.0 just got published.

Update to this version instead 🚀

Release Notes v5.1.0

5.1.0 (2017-10-16)

Features

Commits

The new version differs by 7 commits.

  • 36b009e feat: introduce dollar sign escaping (#147)
  • 7719fb2 docs(README): reformat things
  • 72e29f0 docs: Update README.md (#144)
  • 4242490 docs: ISSUE_TEMPLATE fix
  • dd7b1fe chore(build): switch to kcd-scripts (#142)
  • da1e821 docs: update Code Sponsor link position (#141)
  • d398341 chore(package): Bump dev dependencies (#137)

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 27, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 27, 2017

Version 5.1.1 just got published.

Update to this version instead 🚀

Release Notes v5.1.1

5.1.1 (2017-10-27)

Bug Fixes

  • remove env variables that don't exist from the converted commands in Windows. (#149) (50299d9)
Commits

The new version differs by 1 commits.

  • 50299d9 fix: remove env variables that don't exist from the converted commands in Windows. (#149)

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 21, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 21, 2017

Version 5.1.2 just got published.

Update to this version instead 🚀

Release Notes v5.1.2

5.1.2 (2017-12-21)

Bug Fixes

Commits

The new version differs by 1 commits.

  • 7fa5c08 fix: handle escaping and single quotes (#158)

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 21, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 21, 2017

Version 5.1.3 just got published.

Update to this version instead 🚀

Release Notes v5.1.3

5.1.3 (2017-12-21)

Bug Fixes

Commits

The new version differs by 1 commits.

  • 3cf4170 fix: regex flag fix (#161)

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 9, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 9, 2018

Version 5.1.4 just got published.

Update to this version instead 🚀

Release Notes v5.1.4

5.1.4 (2018-03-09)

Bug Fixes

Commits

The new version differs by 3 commits.

  • 450dae9 fix: allow backslash (#173)
  • 5204dd6 docs: Fix typo (#166)
  • 3c064d8 docs: Closes #153 with documentation update (#165)

See the full diff

greenkeeper bot added a commit that referenced this pull request May 22, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 22, 2018

Version 5.1.6 just got published.

Update to this version instead 🚀

Release Notes v5.1.6

5.1.6 (2018-05-22)

Bug Fixes

  • check for sigint before setting exit code to 1 (#181) (b88977c)
Commits

The new version differs by 3 commits.

  • b88977c fix: check for sigint before setting exit code to 1 (#181)
  • eb37984 docs: inform about signal events on Windows (#179)
  • d5170bf fix: exit code should be set to 1 when os kills child process (#177)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 13, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 13, 2018

Version 5.2.0 just got published.

Update to this version instead 🚀

Release Notes v5.2.0

5.2.0 (2018-06-13)

Features

Commits

The new version differs by 1 commits.

  • 739fd62 feat(deps): upgrade cross-spawn (#182)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 31, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 31, 2019

  • The devDependency cross-env was updated from 3.2.4 to 5.2.1.

Update to this version instead 🚀

Release Notes for v5.2.1

5.2.1 (2019-08-31)

Bug Fixes

Commits

The new version differs by 6 commits.

  • a75fd0e fix: remove is-windows dependency (#207)
  • 4889923 docs: add note for windows issues
  • 2b36bb3 docs: add Jason-Cooke as a contributor (#201)
  • 41ab3b0 docs: Fix typo (#200)
  • 553705c docs(README): list @naholyr/cross-env in Other Solutions section (#189)
  • 5d0f19f docs: remove codesponsor (#186)

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 17, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 17, 2019

  • The devDependency cross-env was updated from 3.2.4 to 6.0.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 1, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 1, 2019

  • The devDependency cross-env was updated from 3.2.4 to 6.0.2.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 2, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 2, 2019

  • The devDependency cross-env was updated from 3.2.4 to 6.0.3.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jan 25, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 25, 2020

  • The devDependency cross-env was updated from 3.2.4 to 7.0.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 3, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 3, 2020

  • The devDependency cross-env was updated from 3.2.4 to 7.0.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 5, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 5, 2020

  • The devDependency cross-env was updated from 3.2.4 to 7.0.2.

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant