Christoph Wurst
0b9e22759b
Merge pull request #11492 from nextcloud/feat/devmanual/performance-database-cluster
...
feat(devmanual): DB clusters and read/write split
2024-02-02 12:36:44 +01:00
Christoph Wurst
d47461a1ec
feat(devmanual): DB clusters and read/write split
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at >
2024-02-02 12:21:31 +01:00
Christoph Wurst
9f73e1504d
Merge pull request #11490 from nextcloud/update-changelog-26
...
feat(adminmanual): Amend upgrade notes about mailer changes in 26
2024-02-01 19:57:35 +01:00
Anupam Kumar
85c5e013a4
update email changelog of NC 26
...
Signed-off-by: Anupam Kumar <kyteinsky@gmail.com >
2024-02-01 20:45:52 +05:30
github-actions[bot]
57d26836e5
Merge pull request #11489 from nextcloud/translations_69a91e60dcfe40f79ec4694e579bbaa8
2024-02-01 03:53:46 +00:00
transifex-integration[bot]
98e57fbf80
Translate webinterface.pot in es
...
100% translated source file: 'webinterface.pot'
on 'es'.
2024-02-01 03:18:02 +00:00
transifex-integration[bot]
fecd812af7
Translate webinterface.pot in es
...
100% translated source file: 'webinterface.pot'
on 'es'.
2024-02-01 03:16:52 +00:00
John Molakvoæ
19b5ce1b03
Merge pull request #11485 from nextcloud/addDesktopFilesClientUpcomingRelease3.12
2024-01-31 17:02:38 +01:00
Matthieu Gallien
66c75d30a5
desktop files client doc: 3.11 latest stable, 3.12 is upcoming
...
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com >
2024-01-31 14:54:39 +01:00
Nextcloud bot
86deb0ec94
generate documentation from config.sample.php
2024-01-31 02:46:32 +00:00
Josh
2180fa1c00
Merge pull request #11451 from nextcloud/fix/admin-mail-debug
...
Fix(email_configuration): Fix conflicting debug mode sections
2024-01-30 11:31:59 -05:00
Joas Schilling
7a89686646
Merge pull request #11480 from nextcloud/bugfix/noid/update-twofactor-screenshots
...
fix(admin): Update 2FA screenshots
2024-01-30 16:03:43 +01:00
Joas Schilling
60e63622b8
fix(admin): Update 2FA screenshots
...
Signed-off-by: Joas Schilling <coding@schilljs.com >
2024-01-30 15:38:43 +01:00
Joas Schilling
4e7a8a889a
Merge pull request #11477 from nextcloud/document-bruteforce-attempts
...
Document 'occ security:bruteforce:attempts'
2024-01-29 20:07:32 +01:00
Marcel Müller
3dbb0ce224
Document 'occ security:bruteforce:attempts'
...
Signed-off-by: Marcel Müller <marcel-mueller@gmx.de >
2024-01-29 19:27:05 +01:00
dependabot[bot]
9ff22d2b3d
chore(deps): Bump sphinxcontrib-serializinghtml from 1.1.9 to 1.1.10
...
Bumps [sphinxcontrib-serializinghtml](https://github.com/sphinx-doc/sphinxcontrib-serializinghtml ) from 1.1.9 to 1.1.10.
- [Release notes](https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/releases )
- [Changelog](https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/blob/master/CHANGES )
- [Commits](https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/compare/1.1.9...1.1.10 )
---
updated-dependencies:
- dependency-name: sphinxcontrib-serializinghtml
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-29 06:55:19 +00:00
dependabot[bot]
5f42a6b428
chore(deps): Bump peter-evans/create-or-update-comment
...
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment ) from 3.1.0 to 4.0.0.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases )
- [Commits](23ff15729e...71345be026 )
---
updated-dependencies:
- dependency-name: peter-evans/create-or-update-comment
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-29 06:27:27 +00:00
dependabot[bot]
25edf11775
chore(deps): Bump actions/upload-artifact from 4.2.0 to 4.3.0
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v4.2.0...v4.3.0 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-29 06:27:24 +00:00
Ferdinand Thiessen
9791035074
fix(admin): Update supported database support
...
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de >
2024-01-27 13:59:10 +01:00
MichaIng
4ef607d350
nginx: fix response headers for assets
...
Nginx resets all response headers in a location block, if it contains any "add_header" directive. When setting the "Cache-Control" header for static assets, this was originally worked around by using the "expires" directive instead. https://github.com/nextcloud/documentation/pull/8083 however added the "immutable" flag for assets with "v=" query parameter and broke all other response headers for assets that way.
This commit fixes this by re-adding all reponse headers explicitly for those assets. Originally those doubled code was removed thanks to using "expires", but I see no way to have both: the "immutable" flag as well as avoiding doubled headers via "expires" directive.
Additionally, this commit avoids the trailing comma and space in the Cache-Control header for assets without "v=" query parameter, and adds sets the wasm MIME type in a cleaner/more consistent way together with js/mjs, and rephrases the broken comment sentence.
Signed-off-by: MichaIng <micha@dietpi.com >
2024-01-26 17:10:58 +01:00
dependabot[bot]
6eced42daa
Merge pull request #11458 from nextcloud/dependabot/pip/master/markupsafe-2.1.4
2024-01-26 14:30:02 +00:00
dependabot[bot]
f19aa7e6c2
Merge pull request #11462 from nextcloud/dependabot/pip/master/sphinxcontrib-qthelp-1.0.7
2024-01-26 14:26:19 +00:00
dependabot[bot]
25657facb1
chore(deps): Bump sphinxcontrib-applehelp from 1.0.7 to 1.0.8
...
Bumps [sphinxcontrib-applehelp](https://github.com/sphinx-doc/sphinxcontrib-applehelp ) from 1.0.7 to 1.0.8.
- [Release notes](https://github.com/sphinx-doc/sphinxcontrib-applehelp/releases )
- [Changelog](https://github.com/sphinx-doc/sphinxcontrib-applehelp/blob/master/CHANGES )
- [Commits](https://github.com/sphinx-doc/sphinxcontrib-applehelp/compare/1.0.7...1.0.8 )
---
updated-dependencies:
- dependency-name: sphinxcontrib-applehelp
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-26 14:25:53 +00:00
dependabot[bot]
4d720d72bd
Merge pull request #11455 from nextcloud/dependabot/pip/master/sphinxcontrib-devhelp-1.0.6
2024-01-26 14:24:07 +00:00
dependabot[bot]
599f7fc723
Merge pull request #11463 from nextcloud/dependabot/pip/master/alabaster-0.7.16
2024-01-26 14:19:17 +00:00
dependabot[bot]
545bdc4dbe
Merge pull request #11464 from nextcloud/dependabot/github_actions/actions/upload-artifact-4.2.0
2024-01-26 14:18:40 +00:00
dependabot[bot]
ea2204b759
Merge pull request #11465 from nextcloud/dependabot/github_actions/shivammathur/setup-php-2.29.0
2024-01-26 14:18:16 +00:00
dependabot[bot]
2ff64cd32a
Merge pull request #11466 from nextcloud/dependabot/github_actions/actions/checkout-4.1.1
2024-01-26 14:17:55 +00:00
Nextcloud bot
450f2cb780
generate documentation from config.sample.php
2024-01-24 02:47:12 +00:00
github-actions[bot]
fb648887b5
Merge pull request #11469 from nextcloud/translations_69a91e60dcfe40f79ec4694e579bbaa8
2024-01-22 18:09:12 +00:00
transifex-integration[bot]
69b39048a2
Translate webinterface.pot in es
...
100% translated source file: 'webinterface.pot'
on 'es'.
2024-01-22 18:03:40 +00:00
Côme Chilliet
ce341846fb
Merge pull request #11444 from J0WI/rm-bz2-recommend
...
Remove bz2 from recommend extensions
2024-01-22 10:42:51 +01:00
dependabot[bot]
5be9fd4e50
chore(deps): Bump actions/checkout from 3.6.0 to 4.1.1
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3.6.0 to 4.1.1.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v3.6.0...b4ffde65f46336ab88eb53be808477a3936bae11 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:47:33 +00:00
dependabot[bot]
284c751e66
chore(deps): Bump shivammathur/setup-php from 2.28.0 to 2.29.0
...
Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php ) from 2.28.0 to 2.29.0.
- [Release notes](https://github.com/shivammathur/setup-php/releases )
- [Commits](e6f75134d3...6d7209f44a )
---
updated-dependencies:
- dependency-name: shivammathur/setup-php
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:47:28 +00:00
dependabot[bot]
0dd53f961e
chore(deps): Bump actions/upload-artifact from 4.1.0 to 4.2.0
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v4.1.0...v4.2.0 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:47:25 +00:00
dependabot[bot]
855aec56af
chore(deps): Bump alabaster from 0.7.13 to 0.7.16
...
Bumps [alabaster](https://github.com/sphinx-doc/alabaster ) from 0.7.13 to 0.7.16.
- [Release notes](https://github.com/sphinx-doc/alabaster/releases )
- [Changelog](https://github.com/sphinx-doc/alabaster/blob/master/docs/changelog.rst )
- [Commits](https://github.com/sphinx-doc/alabaster/compare/0.7.13...0.7.16 )
---
updated-dependencies:
- dependency-name: alabaster
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:06:04 +00:00
dependabot[bot]
6879971a92
chore(deps): Bump sphinxcontrib-qthelp from 1.0.6 to 1.0.7
...
Bumps [sphinxcontrib-qthelp](https://github.com/sphinx-doc/sphinxcontrib-qthelp ) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/sphinx-doc/sphinxcontrib-qthelp/releases )
- [Changelog](https://github.com/sphinx-doc/sphinxcontrib-qthelp/blob/1.0.7/CHANGES )
- [Commits](https://github.com/sphinx-doc/sphinxcontrib-qthelp/compare/1.0.6...1.0.7 )
---
updated-dependencies:
- dependency-name: sphinxcontrib-qthelp
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:05:58 +00:00
dependabot[bot]
1cc73c56a4
chore(deps): Bump markupsafe from 2.1.3 to 2.1.4
...
Bumps [markupsafe](https://github.com/pallets/markupsafe ) from 2.1.3 to 2.1.4.
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/2.1.3...2.1.4 )
---
updated-dependencies:
- dependency-name: markupsafe
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:05:36 +00:00
dependabot[bot]
d7001a470c
chore(deps): Bump sphinxcontrib-devhelp from 1.0.5 to 1.0.6
...
Bumps [sphinxcontrib-devhelp](https://github.com/sphinx-doc/sphinxcontrib-devhelp ) from 1.0.5 to 1.0.6.
- [Release notes](https://github.com/sphinx-doc/sphinxcontrib-devhelp/releases )
- [Changelog](https://github.com/sphinx-doc/sphinxcontrib-devhelp/blob/1.0.6/CHANGES )
- [Commits](https://github.com/sphinx-doc/sphinxcontrib-devhelp/compare/1.0.5...1.0.6 )
---
updated-dependencies:
- dependency-name: sphinxcontrib-devhelp
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-22 06:05:21 +00:00
github-actions[bot]
4269471d4f
Merge pull request #11454 from nextcloud/translations_69a91e60dcfe40f79ec4694e579bbaa8
2024-01-21 10:59:10 +00:00
transifex-integration[bot]
9542d8f286
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:54:44 +00:00
transifex-integration[bot]
70c0a5e886
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:54:30 +00:00
transifex-integration[bot]
877d833b64
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:54:17 +00:00
transifex-integration[bot]
b149680ed7
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:54:07 +00:00
transifex-integration[bot]
ba8dfc8848
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:53:56 +00:00
transifex-integration[bot]
0c469556c7
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:53:34 +00:00
transifex-integration[bot]
d855a9005d
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:53:15 +00:00
transifex-integration[bot]
670fe66434
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:52:44 +00:00
transifex-integration[bot]
4b9cc8613d
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:51:45 +00:00
transifex-integration[bot]
631a512969
Translate webinterface.pot in ko
...
100% translated source file: 'webinterface.pot'
on 'ko'.
2024-01-21 10:50:54 +00:00