Skip to content

Commit 3a128d9

Browse files
authored
Merge pull request #6697 from nextcloud-libraries/chore/new-main
chore: default branch is `main` and Vue 2 branch is `stable8`
2 parents 52294a5 + 9647628 commit 3a128d9

File tree

5 files changed

+30
-14
lines changed

5 files changed

+30
-14
lines changed

.github/dependabot.yml

+19-3
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,39 @@ updates:
1313
- 3. to review
1414
- dependencies
1515

16-
- package-ecosystem: npm
16+
- package-ecosystem: github-actions
1717
directory: "/"
18-
target-branch: next
1918
schedule:
20-
interval: daily
19+
interval: weekly
2120
timezone: Europe/Paris
2221
open-pull-requests-limit: 10
2322
labels:
2423
- 3. to review
2524
- dependencies
2625

26+
# Keep stable8 up-to-date
2727
- package-ecosystem: github-actions
2828
directory: "/"
29+
target-branch: stable8
30+
schedule:
31+
interval: weekly
32+
timezone: Europe/Paris
33+
open-pull-requests-limit: 10
34+
labels:
35+
- 3. to review
36+
- dependencies
37+
- package-ecosystem: npm
38+
directory: "/"
39+
target-branch: stable8
2940
schedule:
3041
interval: weekly
3142
timezone: Europe/Paris
3243
open-pull-requests-limit: 10
3344
labels:
3445
- 3. to review
3546
- dependencies
47+
ignore:
48+
# For all deps
49+
- dependency-name: "*"
50+
# ignore all major updates
51+
update-types: ["version-update:semver-major"]

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ B | A
1616

1717
- [ ] ⛑️ Tests are included or are not applicable
1818
- [ ] 📘 Component documentation has been extended, updated or is not applicable
19-
- [ ] 3️⃣ Backport to `next` requested with a Vue 3 upgrade
19+
- [ ] 2️⃣ Backport bugfixes to `stable8` for maintained Vue 2 version.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

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

@@ -138,7 +138,7 @@ index 0e3a6a705d..416b8b0fb9 100644
138138

139139
## 📤 Releasing a new version
140140

141-
- Pull the latest changes from `master` or `stableX`
141+
- Pull the latest changes from `main` or `stableX`
142142
- Checkout a new branch with the tag name (e.g `v4.0.1`): `git checkout -b v<version>`
143143
- Run `npm version patch --no-git-tag-version` (`npm version minor --no-git-tag-version` if minor).
144144
This will return a new version name, make sure it matches what you expect

docs/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![npm last version](https://img.shields.io/npm/v/@nextcloud/vue.svg?style=flat-square)](https://www.npmjs.com/package/@nextcloud/vue)
2-
[![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)
2+
[![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)
33
[![Dependabot status](https://img.shields.io/badge/Dependabot-enabled-brightgreen.svg?longCache=true&style=flat-square&logo=dependabot)](https://dependabot.com)
4-
[![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)
4+
[![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)
55
[![irc](https://img.shields.io/badge/IRC-%23nextcloud--dev%20on%20freenode-blue.svg?style=flat-square)](https://webchat.freenode.net/?channels=nextcloud-dev)
66

77
<!--
@@ -19,8 +19,8 @@
1919

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

styleguide.config.cjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ module.exports = async () => {
8686
sections: [
8787
{
8888
name: 'next v9.x (Nextcloud 30+ on Vue 3)',
89-
href: 'https://next--nextcloud-vue-components.netlify.app',
89+
href: 'https://nextcloud-vue-components.netlify.app',
9090
},
9191
{
92-
name: 'current v8.x (Nextcloud 28+)',
93-
href: 'https://nextcloud-vue-components.netlify.app',
92+
name: 'current v8.x (Nextcloud 28+ on Vue 2)',
93+
href: 'https://stable8--nextcloud-vue-components.netlify.app',
9494
},
9595
{
9696
name: 'v7.x (Nextcloud 25 - 27)',

0 commit comments

Comments
 (0)