Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@auto-it/pr-body-labels

Package Overview
Dependencies
Maintainers
0
Versions
177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auto-it/pr-body-labels - npm Package Versions

1
18

10.2.2

Diff

Changelog

Source

v10.2.2 (Wed Nov 04 2020)

🐛 Bug Fix
  • @auto-it/npm
    • handle multiple spaces in "lerna changed" output #1633 (@hipstersmoothie)
Authors: 1

alisowski
published 10.2.1 •

Changelog

Source

v10.2.1 (Tue Nov 03 2020)

🐛 Bug Fix
Authors: 1

alisowski
published 10.2.0 •

Changelog

Source

v10.2.0 (Mon Nov 02 2020)

🚀 Enhancement
Authors: 1

alisowski
published 10.1.0 •

Changelog

Source

v10.1.0 (Mon Nov 02 2020)

:tada: This release contains work from a new contributor! :tada:

Thank you, Tim Ottewell (@tinytim84), for all your work!

🚀 Enhancement
🐛 Bug Fix
🔩 Dependency Updates
Authors: 3

alisowski
published 10.0.2 •

Changelog

Source

v10.0.2 (Thu Oct 29 2020)

🐛 Bug Fix
  • @auto-it/core
Authors: 1

alisowski
published 10.0.1 •

Changelog

Source

v10.0.1 (Thu Oct 29 2020)

🐛 Bug Fix
Authors: 1

alisowski
published 10.0.0 •

Changelog

Source

v10.0.0 (Thu Oct 29 2020)

Release Notes

From #1609

This release simplifies some of the hooks arguements to allow for easier future extensibility.

The following hooks have had their second argument converted to an object that takes a "context" of pertinent information:

  • afterShipIt
  • onCreateChangelog
  • publish
  • next

Please consult the docs or plugin implementations for further detail.

From #1604

Previously a lot of the hooks would not run during a dry run and auto would try to guess what they would do. This lead to the output versions of some commands to be off.

With the release of v10 auto will call to the plugins for various hooks so they can control that.

From #1607

We were implementing the renderChangelogLine in a way that was more complex than needed

Previously the hook took a tuple and had to return a tuple

auto.hooks.onCreateChangelog.tapPromise('Stars', changelog =>
  changelog.hooks.renderChangelogLine.tapPromise(
    'Stars',
    async ([commit, line]) =>
      [commit, `${line.replace('-', ':star:')}\n`]
  );
);

Now it can just return the rendered changelog line

auto.hooks.onCreateChangelog.tapPromise('Stars', changelog =>
  changelog.hooks.renderChangelogLine.tapPromise(
    'Stars',
    async (line, commit) => `${line.replace('-', ':star:')}\n`
  );
);

💥 Breaking Change
  • @auto-it/core, @auto-it/cocoapods, @auto-it/crates, @auto-it/docker, @auto-it/exec, @auto-it/first-time-contributor, @auto-it/gem, @auto-it/git-tag, @auto-it/jira, @auto-it/maven, @auto-it/npm, @auto-it/omit-release-notes
  • @auto-it/core, @auto-it/brew, @auto-it/chrome, @auto-it/cocoapods, @auto-it/crates, @auto-it/docker, @auto-it/exec, @auto-it/gem, @auto-it/git-tag, @auto-it/gradle, @auto-it/maven, @auto-it/npm
  • @auto-it/core, @auto-it/jira, @auto-it/npm
  • @auto-it/core, @auto-it/all-contributors
🐛 Bug Fix
🔩 Dependency Updates
Authors: 2

alisowski
published 10.0.0-next.3 •

alisowski
published 9.61.0 •

Changelog

Source

v9.61.0 (Tue Oct 27 2020)

:tada: This release contains work from a new contributor! :tada:

Thank you, Mukul Chaware (@mukul13), for all your work!

🚀 Enhancement
Authors: 2

alisowski
published 10.0.0-next.2 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc