Socket
Socket
Sign inDemoInstall

@auto-it/first-time-contributor

Package Overview
Dependencies
Maintainers
1
Versions
721
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auto-it/first-time-contributor - npm Package Versions

1
7173

7.12.0-canary.612.7987.0

Diff

alisowski
published 7.11.1-canary.611.7966.0 •

alisowski
published 7.11.0 •

Changelog

Source

v7.11.0 (Fri Oct 18 2019)

🚀 Enhancement
  • @auto-it/core, @auto-it/chrome, @auto-it/git-tag, @auto-it/npm, @auto-it/omit-commits, @auto-it/omit-release-notes, @auto-it/s3, @auto-it/twitter
    • New Plugin: Amazon S3 #466 (@hipstersmoothie)
Authors: 1

alisowski
published 7.10.0-canary.466.7947.0 •

alisowski
published 7.10.0-canary.466.7942.0 •

alisowski
published 7.10.0 •

Changelog

Source

v7.10.0 (Fri Oct 18 2019)

Release Notes

From #610

This PR also introduces the changelog.addToBody hook. This can be used to add whatever extra content you want to a changelog.

The following adds a random GIF from giphy to each new changelog.

auto.hooks.onCreateChangelog.tapPromise('Giphy', changelog =>
  changelog.hooks.renderChangelogLine.tapPromise(
    'Giphy',
    async (notes, commits) => {
      const response = await fetch(`https://api.giphy.com/v1/gifs/random?api_key=${process.env.GIPHY_KEY}`);
      const json = await response.json();
      const { data: gif } = json;

      return [...notes, `![${gif.title}](${gif.url})\n`]
    }
  );
);

🚀 Enhancement
  • @auto-it/core, @auto-it/crates, @auto-it/first-time-contributor
⚠️ Pushed to master
Authors: 1

alisowski
published 7.10.0-canary.610.7923.0 •

alisowski
published 7.10.0-canary.610.7906.0 •

alisowski
published 7.10.0-canary.610.7901.0 •

alisowski
published 7.10.0-canary.610.7896.0 •

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