Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,39 @@ updates:
- 3. to review
- dependencies

- package-ecosystem: npm
- package-ecosystem: github-actions
directory: "/"
target-branch: next
schedule:
interval: daily
interval: weekly
timezone: Europe/Paris
open-pull-requests-limit: 10
labels:
- 3. to review
- dependencies

# Keep stable8 up-to-date
- package-ecosystem: github-actions
directory: "/"
target-branch: stable8
schedule:
interval: weekly
timezone: Europe/Paris
open-pull-requests-limit: 10
labels:
- 3. to review
- dependencies
- package-ecosystem: npm
directory: "/"
target-branch: stable8
schedule:
interval: weekly
timezone: Europe/Paris
open-pull-requests-limit: 10
labels:
- 3. to review
- dependencies
ignore:
# For all deps
- dependency-name: "*"
# ignore all major updates
update-types: ["version-update:semver-major"]
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ B | A

- [ ] ⛑️ Tests are included or are not applicable
- [ ] 📘 Component documentation has been extended, updated or is not applicable
- [ ] 3️⃣ Backport to `next` requested with a Vue 3 upgrade
- [ ] 2️⃣ Backport bugfixes to `stable8` for maintained Vue 2 version.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

| Version | Target | Documentation |
|----------------|-----------------------|-------------------------------------------------------|
| v9.x [next] | Nextcloud 30+ (Vue 3) | https://next--nextcloud-vue-components.netlify.app |
| v8.x [master] | Nextcloud 28+ (Vue 2) | https://nextcloud-vue-components.netlify.app |
| v9.x [main] | Nextcloud 30+ (Vue 3) | https://nextcloud-vue-components.netlify.app |
| v8.x [stable8] | Nextcloud 28+ (Vue 2) | https://stable8--nextcloud-vue-components.netlify.app |
| v7.x [stable7] | Nextcloud 25 - 27 | https://stable7--nextcloud-vue-components.netlify.app |
| v6.x [stable6] | Nextcloud 24 - 25 | https://stable6--nextcloud-vue-components.netlify.app |

Expand Down Expand Up @@ -138,7 +138,7 @@ index 0e3a6a705d..416b8b0fb9 100644

## 📤 Releasing a new version

- Pull the latest changes from `master` or `stableX`
- Pull the latest changes from `main` or `stableX`
- Checkout a new branch with the tag name (e.g `v4.0.1`): `git checkout -b v<version>`
- Run `npm version patch --no-git-tag-version` (`npm version minor --no-git-tag-version` if minor).
This will return a new version name, make sure it matches what you expect
Expand Down
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![npm last version](https://img.shields.io/npm/v/@nextcloud/vue.svg?style=flat-square)](https://www.npmjs.com/package/@nextcloud/vue)
[![build status](https://img.shields.io/github/actions/workflow/status/nextcloud-libraries/nextcloud-vue/node.yml?style=flat-square)](https://github.com/nextcloud-libraries/nextcloud-vue/actions/workflows/node.yml?query=branch%3Amaster)
[![build status](https://img.shields.io/github/actions/workflow/status/nextcloud-libraries/nextcloud-vue/node.yml?style=flat-square)](https://github.com/nextcloud-libraries/nextcloud-vue/actions/workflows/node.yml?query=branch%3Amain)
[![Dependabot status](https://img.shields.io/badge/Dependabot-enabled-brightgreen.svg?longCache=true&style=flat-square&logo=dependabot)](https://dependabot.com)
[![Test status](https://img.shields.io/github/actions/workflow/status/nextcloud-libraries/nextcloud-vue/npm-test.yml?style=flat-square&label=Test%20status)](https://github.com/nextcloud-libraries/nextcloud-vue/actions/workflows/npm-test.yml?query=branch%3Amaster)
[![Test status](https://img.shields.io/github/actions/workflow/status/nextcloud-libraries/nextcloud-vue/npm-test.yml?style=flat-square&label=Test%20status)](https://github.com/nextcloud-libraries/nextcloud-vue/actions/workflows/npm-test.yml?query=branch%3Amain)
[![irc](https://img.shields.io/badge/IRC-%23nextcloud--dev%20on%20freenode-blue.svg?style=flat-square)](https://webchat.freenode.net/?channels=nextcloud-dev)

<!--
Expand All @@ -19,8 +19,8 @@

| Version | Target | Documentation |
|----------------|-----------------------|-------------------------------------------------------|
| v9.x [next] | Nextcloud 30+ (Vue 3) | https://next--nextcloud-vue-components.netlify.app |
| v8.x [master] | Nextcloud 28+ (Vue 2) | https://nextcloud-vue-components.netlify.app |
| v9.x [main] | Nextcloud 30+ (Vue 3) | https://nextcloud-vue-components.netlify.app |
| v8.x [stable8] | Nextcloud 28+ (Vue 2) | https://stable8--nextcloud-vue-components.netlify.app |
| v7.x [stable7] | Nextcloud 25 - 27 | https://stable7--nextcloud-vue-components.netlify.app |
| v6.x [stable6] | Nextcloud 24 - 25 | https://stable6--nextcloud-vue-components.netlify.app |

Expand Down
6 changes: 3 additions & 3 deletions styleguide.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ module.exports = async () => {
sections: [
{
name: 'next v9.x (Nextcloud 30+ on Vue 3)',
href: 'https://next--nextcloud-vue-components.netlify.app',
href: 'https://nextcloud-vue-components.netlify.app',
},
{
name: 'current v8.x (Nextcloud 28+)',
href: 'https://nextcloud-vue-components.netlify.app',
name: 'current v8.x (Nextcloud 28+ on Vue 2)',
href: 'https://stable8--nextcloud-vue-components.netlify.app',
},
{
name: 'v7.x (Nextcloud 25 - 27)',
Expand Down
Loading