Skip to content

Commit f7f4a99

Browse files
committed
feat(deps): Add Nextcloud 36 support on main
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent 5ac4104 commit f7f4a99

7 files changed

Lines changed: 103 additions & 20 deletions

File tree

.github/workflows/npm-audit-fix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
matrix:
2727
branches:
2828
- ${{ github.event.repository.default_branch }}
29+
- 'stable35'
2930
- 'stable34'
3031
- 'stable33'
3132
- 'stable32'

.github/workflows/update-nextcloud-ocp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
matrix:
2727
branches:
2828
- ${{ github.event.repository.default_branch }}
29+
- 'stable35'
2930
- 'stable34'
3031
- 'stable33'
3132
- 'stable32'

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- **💾 Open format:** Files are saved as [Markdown](https://en.wikipedia.org/wiki/Markdown), so you can edit them from any other text app too.
1616
- **✊ Strong foundation:** We use [🐈 tiptap](https://tiptap.scrumpy.io) which is based on [🦉 ProseMirror](https://prosemirror.net) – huge thanks to them!
1717
]]></description>
18-
<version>9.0.0-dev.0</version>
18+
<version>10.0.0-dev.0</version>
1919
<licence>agpl</licence>
2020
<author mail="jus@bitgrid.net">Julius Härtl</author>
2121
<namespace>Text</namespace>
@@ -31,7 +31,7 @@
3131
<screenshot>https://raw.githubusercontent.com/nextcloud/text/main/img/screenshots/screenshot2.png</screenshot>
3232
<screenshot>https://raw.githubusercontent.com/nextcloud/text/main/img/screenshots/screenshot3.gif</screenshot>
3333
<dependencies>
34-
<nextcloud min-version="35" max-version="35" />
34+
<nextcloud min-version="36" max-version="36" />
3535
</dependencies>
3636
<background-jobs>
3737
<job>OCA\Text\Cron\Cleanup</job>

composer.lock

Lines changed: 92 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "text",
3-
"version": "9.0.0-dev.0",
3+
"version": "10.0.0-dev.0",
44
"description": "Collaborative document editing",
55
"license": "AGPL-3.0-or-later",
66
"type": "module",

renovate.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"minimumReleaseAge": "4 days",
1010
"rebaseWhen": "conflicted",
1111
"ignoreUnstable": false,
12-
"baseBranchPatterns": ["main", "stable34", "stable33", "stable32"],
12+
"baseBranchPatterns": ["main", "stable35", "stable34", "stable33", "stable32"],
1313
"enabledManagers": ["npm"],
1414
"ignoreDeps": ["node", "npm"],
1515
"packageRules": [
@@ -52,12 +52,12 @@
5252
},
5353
{
5454
"matchUpdateTypes": ["major"],
55-
"matchBaseBranches": ["stable34", "stable33", "stable32"],
55+
"matchBaseBranches": ["stable35", "stable34", "stable33", "stable32"],
5656
"enabled": false
5757
},
5858
{
5959
"matchUpdateTypes": ["major", "minor"],
60-
"matchBaseBranches": ["stable34", "stable33", "stable32"],
60+
"matchBaseBranches": ["stable35", "stable34", "stable33", "stable32"],
6161
"enabled": false
6262
},
6363
{
@@ -67,7 +67,7 @@
6767
"@nextcloud/cypress",
6868
"@cypress/{/,}**"
6969
],
70-
"matchBaseBranches": ["stable34", "stable33", "stable32"],
70+
"matchBaseBranches": ["stable35", "stable34", "stable33", "stable32"],
7171
"enabled": false
7272
},
7373
{

0 commit comments

Comments
 (0)