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 dependency auto to v7.17.0 #25

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 3, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
auto 7.6.2 -> 7.17.0 age adoption passing confidence

Release Notes

intuit/auto

v7.17.0

Compare Source

🚀 Enhancement
📝 Documentation
🔩 Dependency Updates
Authors: 4

v7.16.3

Compare Source

🏠 Internal
📝 Documentation
🔩 Dependency Updates
Authors: 3

v7.16.2

Compare Source

🐛 Bug Fix
Authors: 1

v7.15.2

Compare Source

🐛 Bug Fix
Authors: 1

v7.15.1

Compare Source

🐛 Bug Fix
📝 Documentation
Authors: 1

v7.15.0

Compare Source

🚀 Enhancement
  • auto, @auto-it/core, @auto-it/git-tag, @auto-it/npm
Authors: 1

v7.14.1

Compare Source

🐛 Bug Fix
Authors: 1

v7.14.0

Compare Source

🚀 Enhancement
📝 Documentation
Authors: 2

v7.13.3

Compare Source

🐛 Bug Fix
🏠 Internal
🔩 Dependency Updates
Authors: 2

v7.13.2

Compare Source

📝 Documentation
  • clarify plugin docs #​664 (@​hipstersmoothie)
  • auto, @auto-it/core, @auto-it/all-contributors, @auto-it/chrome, @auto-it/conventional-commits, @auto-it/crates, @auto-it/first-time-contributor, @auto-it/git-tag, @auto-it/jira, @auto-it/maven, @auto-it/npm, @auto-it/omit-commits, @auto-it/omit-release-notes, @auto-it/released, @auto-it/s3, @auto-it/slack, @auto-it/twitter, @auto-it/upload-assets
⚠️ Pushed to master
Authors: 1

v7.13.1

Compare Source

🐛 Bug Fix
Authors: 1

v7.13.0

Compare Source

🚀 Enhancement
  • @auto-it/core, @auto-it/all-contributors, @auto-it/npm
Authors: 1

v7.12.9

Compare Source

🐛 Bug Fix
Authors: 1

v7.12.8

Compare Source

🐛 Bug Fix
Authors: 1

v7.12.7

Compare Source

🐛 Bug Fix
🔩 Dependency Updates
Authors: 2

v7.12.6

Compare Source

🐛 Bug Fix
🏠 Internal
📝 Documentation
Authors: 3

v7.12.5

Compare Source

🐛 Bug Fix
🏠 Internal
📝 Documentation
Authors: 3

v7.12.4

Compare Source

🐛 Bug Fix
🔩 Dependency Updates
Authors: 2

v7.12.3

Compare Source

🐛 Bug Fix
Authors: 1

v7.12.2

Compare Source

🎉 This release contains work from a new contributor! 🎉

Thank you, Rocio Montes (@​roxiomontes), for all your work!

🐛 Bug Fix
Authors: 1

v7.12.1

Compare Source

🐛 Bug Fix
  • @auto-it/chrome, @auto-it/crates, @auto-it/git-tag, @auto-it/maven, @auto-it/npm
Authors: 1

v7.12.0

Compare Source

Release Notes

From #​612

Commit Files

Plugin authors can now write plugins that do things based on the files in a commit. Anywhere you can receive a commit object you will also receive the files changed in that commit.

afterAddToChangelog

A new hook is available to plugin developers. the afterAddToChangelog enables developers to run bits of automation after the new changelog is created. This is useful for getting extra commits into a release before publishing. The all-contributors plugin utilizes this hook.


🚀 Enhancement
📝 Documentation
🔩 Dependency Updates
Authors: 2

v7.11.0

Compare Source

🚀 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
Authors: 1

v7.10.0

Compare Source

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

v7.9.2

Compare Source

🏠 Internal
Authors: 1

v7.9.1

Compare Source

🐛 Bug Fix
📝 Documentation
Authors: 1

v7.9.0

Compare Source

🚀 Enhancement
🏠 Internal
  • update plugin template #​606 (@​hipstersmoothie)
  • auto, @auto-it/core, @auto-it/chrome, @auto-it/conventional-commits, @auto-it/git-tag, @auto-it/jira, @auto-it/maven, @auto-it/npm, @auto-it/omit-commits, @auto-it/omit-release-notes, @auto-it/released, @auto-it/slack, @auto-it/twitter, @auto-it/upload-assets
  • auto, @auto-it/core, @auto-it/chrome, @auto-it/conventional-commits, @auto-it/git-tag, @auto-it/jira, @auto-it/maven, @auto-it/npm, @auto-it/omit-commits, @auto-it/omit-release-notes, @auto-it/released, @auto-it/slack, @auto-it/twitter, @auto-it/upload-assets
📝 Documentation
🔩 Dependency Updates
Authors: 2

v7.8.0

Compare Source

🚀 Enhancement
Authors: 2

v7.7.0

Compare Source

🚀 Enhancement
🔩 Dependency Updates
Authors: 3


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies The change only effects the dependencies. label Oct 3, 2019
@renovate renovate bot changed the title Update dependency auto to v7.7.0 Update dependency auto to v7.8.0 Oct 4, 2019
@renovate renovate bot changed the title Update dependency auto to v7.8.0 Update dependency auto to v7.9.0 Oct 16, 2019
@renovate renovate bot changed the title Update dependency auto to v7.9.0 Update dependency auto to v7.9.1 Oct 17, 2019
@renovate renovate bot changed the title Update dependency auto to v7.9.1 Update dependency auto to v7.9.2 Oct 17, 2019
@renovate renovate bot changed the title Update dependency auto to v7.9.2 Update dependency auto to v7.10.0 Oct 18, 2019
@renovate renovate bot changed the title Update dependency auto to v7.10.0 Update dependency auto to v7.11.0 Oct 18, 2019
@renovate renovate bot changed the title Update dependency auto to v7.11.0 Update dependency auto to v7.12.0 Oct 21, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.0 Update dependency auto to v7.12.1 Oct 23, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.1 Update dependency auto to v7.12.2 Oct 23, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.2 Update dependency auto to v7.12.3 Oct 24, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.3 Update dependency auto to v7.12.4 Oct 29, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.4 Update dependency auto to v7.12.5 Oct 30, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.5 Update dependency auto to v7.12.6 Nov 5, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.6 Update dependency auto to v7.12.7 Nov 7, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.7 Update dependency auto to v7.12.8 Nov 7, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.8 Update dependency auto to v7.12.9 Nov 7, 2019
@renovate renovate bot changed the title Update dependency auto to v7.12.9 Update dependency auto to v7.13.0 Nov 7, 2019
@renovate renovate bot changed the title Update dependency auto to v7.13.0 Update dependency auto to v7.13.1 Nov 7, 2019
@renovate renovate bot changed the title Update dependency auto to v7.13.1 Update dependency auto to v7.13.2 Nov 11, 2019
@renovate renovate bot changed the title Update dependency auto to v7.13.2 Update dependency auto to v7.13.3 Nov 12, 2019
@renovate renovate bot changed the title Update dependency auto to v7.13.3 Update dependency auto to v7.14.0 Nov 12, 2019
@renovate renovate bot changed the title Update dependency auto to v7.14.0 Update dependency auto to v7.14.1 Nov 13, 2019
@renovate renovate bot changed the title Update dependency auto to v7.14.1 Update dependency auto to v7.15.0 Nov 13, 2019
@renovate renovate bot changed the title Update dependency auto to v7.15.0 Update dependency auto to v7.15.1 Nov 13, 2019
@renovate renovate bot changed the title Update dependency auto to v7.15.1 Update dependency auto to v7.15.2 Nov 14, 2019
@renovate renovate bot changed the title Update dependency auto to v7.15.2 Update dependency auto to v7.16.2 Nov 15, 2019
@renovate renovate bot changed the title Update dependency auto to v7.16.2 Update dependency auto to v7.16.3 Nov 18, 2019
@renovate renovate bot changed the title Update dependency auto to v7.16.3 Update dependency auto to v7.17.0 Dec 14, 2019
@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies The change only effects the dependencies.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant