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 - abandoned #18

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

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 force-pushed the renovate/auto-7.x branch from 41cd11e to ad82e06 Compare October 4, 2019 18:25
@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 force-pushed the renovate/auto-7.x branch from ad82e06 to dacdafa Compare October 16, 2019 23:24
@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 force-pushed the renovate/auto-7.x branch from dacdafa to cbe54fc Compare October 17, 2019 17:28
@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 force-pushed the renovate/auto-7.x branch from cbe54fc to 1c04685 Compare October 17, 2019 22:12
@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 force-pushed the renovate/auto-7.x branch from 1c04685 to 5d0d30c Compare October 18, 2019 18:59
@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 force-pushed the renovate/auto-7.x branch from 5d0d30c to 4faf851 Compare October 18, 2019 21:22
@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 force-pushed the renovate/auto-7.x branch from 4faf851 to 8cccde5 Compare October 21, 2019 16:38
@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 force-pushed the renovate/auto-7.x branch from 8cccde5 to 71b6dc0 Compare October 23, 2019 15:36
@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 force-pushed the renovate/auto-7.x branch from 71b6dc0 to e5fd0ae Compare October 23, 2019 16:02
@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 force-pushed the renovate/auto-7.x branch from e5fd0ae to 941cd68 Compare October 24, 2019 18:28
@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 force-pushed the renovate/auto-7.x branch from 941cd68 to f75754a Compare October 29, 2019 16:43
@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 force-pushed the renovate/auto-7.x branch from f75754a to daca209 Compare October 30, 2019 16:25
@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 force-pushed the renovate/auto-7.x branch from daca209 to b106b55 Compare November 5, 2019 20:31
@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 force-pushed the renovate/auto-7.x branch from b106b55 to 6288ca0 Compare November 7, 2019 18:49
@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 force-pushed the renovate/auto-7.x branch from 6288ca0 to e039855 Compare November 7, 2019 19:01
@renovate renovate bot force-pushed the renovate/auto-7.x branch from e039855 to 64a33cc Compare November 7, 2019 19:45
@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 force-pushed the renovate/auto-7.x branch from 64a33cc to b70acb9 Compare November 7, 2019 22:38
@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 force-pushed the renovate/auto-7.x branch from b70acb9 to 2bb0b30 Compare November 7, 2019 23:33
@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 force-pushed the renovate/auto-7.x branch from 2bb0b30 to 596cbae Compare November 11, 2019 07:31
@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 force-pushed the renovate/auto-7.x branch from 596cbae to b44d0e5 Compare November 12, 2019 20:06
@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 force-pushed the renovate/auto-7.x branch from b44d0e5 to 9b519bc Compare November 12, 2019 23:38
@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 force-pushed the renovate/auto-7.x branch from 9b519bc to 3b66803 Compare November 13, 2019 00:41
@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 force-pushed the renovate/auto-7.x branch from 3b66803 to c0f05e7 Compare November 13, 2019 04:30
@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 force-pushed the renovate/auto-7.x branch from c0f05e7 to 1a06127 Compare November 13, 2019 22:47
@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 force-pushed the renovate/auto-7.x branch from 1a06127 to 491c0dd Compare November 14, 2019 22:38
@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 force-pushed the renovate/auto-7.x branch from 491c0dd to a9bce69 Compare November 15, 2019 06:41
@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 force-pushed the renovate/auto-7.x branch from a9bce69 to a643928 Compare November 18, 2019 20:16
@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 force-pushed the renovate/auto-7.x branch from a643928 to 1316436 Compare December 6, 2019 23:56
@renovate renovate bot changed the title Update dependency auto to v7.16.3 Update dependency auto to v7.17.0 Dec 6, 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.

@renovate renovate bot changed the title Update dependency auto to v7.17.0 Update dependency auto to v7.17.0 - abandoned Oct 28, 2024
Copy link
Author

renovate bot commented Oct 28, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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.

1 participant