-
Notifications
You must be signed in to change notification settings - Fork 832
docs(components): add changelog commit history #4601
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
Conversation
commit: |
@hywax So I don't know if it's used a lot, but it looks cool. On the other hand, you display all the commits? not just a certain number? |
The last 1,000 commits are taken. Made following the example of vueuse. This is enough to get the last history for each component. |
If there was a commit but no release, the βpending for releaseβ section will appear |
@hywax It's awesome! I've updated the design a bit, let me know what you think π Is it necessary to store the |
Email and name are required if avatars of people will ever be displayed. If this is not planned, then it is not necessary. |
Thanks @hywax! π |
@hywax It seems I merged a bit too quick, the git history is not available when building π¬ |
@benjamincanac you just need to turn it on https://github.com/nuxt/ui/blob/v3/.github/workflows/docs.yml#L22 steps:
- uses: actions/checkout@v4
+ with:
+ fetch-depth: 0 Example: https://github.com/vueuse/vueuse/blob/main/.github/workflows/publish.yml#L16-L19 |
β Type of change
π Description
The
vueuse
documentation contains a history of commits by function. I use this quite often to see what has been changed. I'm probably not the only one. That's why I decided to transfer this functionality tonuxt-ui
.π Checklist