Skip to content

Commit 2ba3766

Browse files
authored
Merge branch 'master' into fix/unit-test-for-storage-auto-expire-list
2 parents fbd99ce + 1da29cf commit 2ba3766

File tree

2,146 files changed

+31410
-19544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,146 files changed

+31410
-19544
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ af6de04e9e141466dc229e444ff3f146f4a34765
1919
b06f5ba4c47450f355a8903c1a93ac68e8c6cfc2
2020
# Update to coding-standard 1.4.0
2121
5981b7eb512aa411f51cad541d01c5c6e93476f0
22+
# Migrate `and` `or` operators to logical `&&` `||` operators
23+
660f3f6fd1ae5539b8f74bfa48859d1b9f1e6abf

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ body:
7171
Select Nextcloud Server version.
7272
_Versions not listed here are not maintained and not supported anymore_
7373
options:
74-
- "29"
7574
- "30"
7675
- "31"
76+
- "32"
7777
- "master"
7878
validations:
7979
required: true

.github/dependabot.yml

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ updates:
5454
# Latest stable release
5555
# Composer dependencies for linting and testing
5656
- package-ecosystem: composer
57-
target-branch: stable31
57+
target-branch: stable32
5858
directories:
5959
- "/"
6060
- "/build/integration"
@@ -78,7 +78,7 @@ updates:
7878
# Latest stable branch
7979
# frontend dependencies
8080
- package-ecosystem: npm
81-
target-branch: stable31
81+
target-branch: stable32
8282
directory: "/"
8383
schedule:
8484
interval: weekly
@@ -99,6 +99,28 @@ updates:
9999
# Older stable releases
100100

101101
# Composer dependencies for linting and testing
102+
- package-ecosystem: composer
103+
target-branch: stable31
104+
directories:
105+
- "/"
106+
- "/build/integration"
107+
- "/vendor-bin/cs-fixer"
108+
- "/vendor-bin/openapi-extractor"
109+
- "/vendor-bin/phpunit"
110+
- "/vendor-bin/psalm"
111+
schedule:
112+
interval: weekly
113+
day: saturday
114+
time: "04:00"
115+
timezone: Europe/Paris
116+
labels:
117+
- "3. to review"
118+
- "feature: dependencies"
119+
ignore:
120+
# only patch updates on stable branches
121+
- dependency-name: "*"
122+
update-types: ["version-update:semver-major", "version-update:semver-minor"]
123+
102124
- package-ecosystem: composer
103125
target-branch: stable30
104126
directories:
@@ -122,6 +144,25 @@ updates:
122144
update-types: ["version-update:semver-major", "version-update:semver-minor"]
123145

124146
# frontend dependencies
147+
- package-ecosystem: npm
148+
target-branch: stable31
149+
directory: "/"
150+
schedule:
151+
interval: weekly
152+
day: saturday
153+
time: "04:00"
154+
timezone: Europe/Paris
155+
open-pull-requests-limit: 20
156+
labels:
157+
- "3. to review"
158+
- "feature: dependencies"
159+
# Disable automatic rebasing because without a build CI will likely fail anyway
160+
rebase-strategy: "disabled"
161+
ignore:
162+
# no major updates on stable branches
163+
- dependency-name: "*"
164+
update-types: ["version-update:semver-major"]
165+
125166
- package-ecosystem: npm
126167
target-branch: stable30
127168
directory: "/"

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@
2121
- [ ] Screenshots before/after for front-end changes
2222
- [ ] Documentation ([manuals](https://github.com/nextcloud/documentation/) or wiki) has been updated or is not required
2323
- [ ] [Backports requested](https://github.com/nextcloud/backportbot/#usage) where applicable (ex: critical bugfixes)
24+
- [ ] [Labels added](https://github.com/nextcloud/server/labels) where applicable (ex: bug/enhancement, `3. to review`, feature component)
25+
- [ ] [Milestone added](https://github.com/nextcloud/server/milestones) for target branch/version (ex: 32.x for `stable32`)

.github/workflows/autocheckers.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ jobs:
5252

5353
steps:
5454
- name: Checkout server
55-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
55+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5656
with:
5757
persist-credentials: false
5858
submodules: true
5959

6060
- name: Set up php ${{ matrix.php-versions }}
61-
uses: shivammathur/setup-php@ccf2c627fe61b1b4d924adfcbd19d661a18133a0 #v2.35.2
61+
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 #v2.35.4
6262
with:
6363
php-version: ${{ matrix.php-versions }}
6464
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
@@ -81,13 +81,13 @@ jobs:
8181

8282
steps:
8383
- name: Checkout server
84-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
84+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8585
with:
8686
persist-credentials: false
8787
submodules: true
8888

8989
- name: Set up php ${{ matrix.php-versions }}
90-
uses: shivammathur/setup-php@ccf2c627fe61b1b4d924adfcbd19d661a18133a0 #v2.35.2
90+
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 #v2.35.4
9191
with:
9292
php-version: ${{ matrix.php-versions }}
9393
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite

.github/workflows/block-outdated-3rdparty.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- 'version.php'
3232
3333
- name: Checkout
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535
with:
3636
persist-credentials: false
3737

.github/workflows/block-unconventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
with:
3232
persist-credentials: false
3333

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
build-mode: none
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Initialize CodeQL
3838
uses: github/codeql-action/init@v3

.github/workflows/command-compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
key: git-repo
104104

105105
- name: Checkout ${{ needs.init.outputs.head_ref }}
106-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
106+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
107107
with:
108108
# Needed to allow force push later
109109
persist-credentials: true
@@ -124,7 +124,7 @@ jobs:
124124
fallbackNpm: '^10'
125125

126126
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }}
127-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
127+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
128128
with:
129129
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }}
130130
cache: npm

.github/workflows/command-pull-3rdparty.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
id: comment-branch
3939

4040
- name: Checkout ${{ steps.comment-branch.outputs.head_ref }}
41-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242
with:
4343
persist-credentials: false
4444
fetch-depth: 0

0 commit comments

Comments
 (0)