Skip to content

chore(deps): update all non-major dependencies #7

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@stacksjs/docs (source) ^0.69.3 -> ^0.70.23 age adoption passing confidence
@types/bun (source) ^1.2.2 -> ^1.2.10 age adoption passing confidence
bumpp ^10.0.2 -> ^10.1.0 age adoption passing confidence
bunfig ^0.5.3 -> ^0.8.2 age adoption passing confidence
changelogen ^0.5.7 -> ^0.6.1 age adoption passing confidence
lint-staged ^15.4.3 -> ^15.5.1 age adoption passing confidence
simple-git-hooks ^2.11.1 -> ^2.13.0 age adoption passing confidence
typescript (source) ^5.7.3 -> ^5.8.3 age adoption passing confidence
unocss (source) ^65.4.3 -> ^65.5.0 age adoption passing confidence

Release Notes

stacksjs/stacks (@​stacksjs/docs)

v0.70.23

Compare Source

What's Changed

Full Changelog: stacksjs/stacks@v0.70.22...v0.70.23

v0.70.22

Compare Source

Full Changelog: stacksjs/stacks@v0.70.21...v0.70.22

v0.70.21

Compare Source

Full Changelog: stacksjs/stacks@v0.70.20...v0.70.21

v0.70.19

Compare Source

What's Changed

Full Changelog: stacksjs/stacks@v0.70.18...v0.70.19

v0.70.18

Compare Source

Full Changelog: stacksjs/stacks@v0.70.17...v0.70.18

v0.70.17

Compare Source

What's Changed

Full Changelog: stacksjs/stacks@v0.70.16...v0.70.17

v0.70.16

Compare Source

Full Changelog: stacksjs/stacks@v0.70.15...v0.70.16

v0.70.15

Compare Source

Full Changelog: stacksjs/stacks@v0.70.14...v0.70.15

v0.70.14

Compare Source

Full Changelog: stacksjs/stacks@v0.70.13...v0.70.14

v0.70.13

Compare Source

Full Changelog: stacksjs/stacks@v0.70.12...v0.70.13

v0.70.12

Compare Source

No significant changes

    View changes on GitHub

v0.70.11

Compare Source

No significant changes

    View changes on GitHub

v0.70.10

Compare Source

No significant changes

    View changes on GitHub

v0.70.9

Compare Source

No significant changes

    View changes on GitHub

v0.70.8

Compare Source

No significant changes

    View changes on GitHub

v0.70.7

Compare Source

No significant changes

    View changes on GitHub

v0.70.6

Compare Source

No significant changes

    View changes on GitHub

v0.70.5

Compare Source

No significant changes

    View changes on GitHub

v0.70.4

Compare Source

No significant changes

    View changes on GitHub

v0.70.3

Compare Source

No significant changes

    View changes on GitHub

v0.70.2

Compare Source

No significant changes

    View changes on GitHub

v0.70.1

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.70.0

Compare Source

compare changes

🏡 Chore
❤️ Contributors
antfu-collective/bumpp (bumpp)

v10.1.0

Compare Source

   🚀 Features
    View changes on GitHub

v10.0.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
stacksjs/bunfig (bunfig)

v0.8.2

Compare Source

No significant changes

    View changes on GitHub

v0.8.1

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.8.0

Compare Source

compare changes

🏡 Chore
  • Ignore bunfig & generated (d407340)
  • Several minor updates (32e7f8e)
  • Improve browser test suite (0439989)
❤️ Contributors

v0.7.0

Compare Source

compare changes

🚀 Enhancements
🏡 Chore
❤️ Contributors

v0.6.0

Compare Source

compare changes

🚀 Enhancements
  • Allow for config file names that equal config name (87f89de)
  • Export tryLoadConfig (9db46cf)
🏡 Chore
  • Adjust instruction for dotfile configs (c3b8a9b)
❤️ Contributors
unjs/changelogen (changelogen)

v0.6.1

Compare Source

compare changes

🩹 Fixes
  • Pass cwd in more places before running commands (#​266)
🏡 Chore
✅ Tests
❤️ Contributors

v0.6.0

Compare Source

compare changes

🚀 Enhancements
  • Update jiti to v2 (6e85d32)
  • Add check for breaking changes in commit body (#​228)
  • Hide author email address via flag (#​247)
  • Add noAuthors option (#​183)
🩹 Fixes
  • Use https proto for author's github link (#​225)
  • Use https proto for author's github link in tests (#​226)
  • Release version regex supporting pre versions (#​259)
  • Use correct compare changes URL for Bitbucket (#​257)
  • Use tag template for version title and compare change link (#​255)
  • Render usernames in github changelog (#​265)
💅 Refactors
  • Use consola for colors (49e0401)
  • Use confbox for yaml parsing (19e940c)
📦 Build
🏡 Chore
✅ Tests
  • Add tests for parsing co-authors from commit body (#​229)
⚠️ Breaking Changes
❤️ Contributors
lint-staged/lint-staged (lint-staged)

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes
toplenboren/simple-git-hooks (simple-git-hooks)

v2.13.0

Compare Source

Minor Changes

v2.12.1

Compare Source

What's Changed

Full Changelog: toplenboren/simple-git-hooks@2.11.1...2.12.1

microsoft/TypeScript (typescript)

v5.8.3

Compare Source

v5.8.2

Compare Source

unocss/unocss (unocss)

v65.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Feb 11, 2025

Deploy Preview for ts-gif failed. Why did it fail? →

Name Link
🔨 Latest commit 7e742e7
🔍 Latest deploy log https://app.netlify.com/sites/ts-gif/deploys/6809360930acf0000861880b

Copy link

pkg-pr-new bot commented Feb 11, 2025

Open in StackBlitz

npm i https://pkg.pr.new/stacksjs/ts-gif@7

commit: 7e742e7

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b88ed48 to 1c5cb8b Compare February 13, 2025 00:51
@renovate renovate bot changed the title chore(deps): update dependency bumpp to ^10.0.3 chore(deps): update all non-major dependencies Feb 13, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1339201 to 2974249 Compare February 15, 2025 20:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5ff63f7 to a7bdfed Compare February 23, 2025 09:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 12456cf to b37fceb Compare February 28, 2025 17:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 47b6d3c to 1d63e2d Compare March 12, 2025 17:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2b84551 to b19f189 Compare March 21, 2025 01:02
@renovate renovate bot added minor and removed patch labels Mar 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 16d9879 to f1896cc Compare March 22, 2025 00:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from bcc8d6c to ded4e26 Compare March 29, 2025 04:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 63c7d51 to 1711c5b Compare April 9, 2025 15:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 297e5d4 to 450c830 Compare April 17, 2025 09:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 450c830 to 7e742e7 Compare April 23, 2025 18:48
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.

0 participants