Browse Source

Update nextcloud server and notifications to 25.0.3

pull/184/head
jld3103 2 years ago
parent
commit
f7e5a3998d
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      external/nextcloud-notifications
  2. 2
      external/nextcloud-server
  3. 2
      packages/nextcloud/lib/src/nextcloud.openapi.json
  4. 6
      packages/nextcloud/test/core.dart
  5. 2
      specs/core.json
  6. 2
      specs/templates/appinfo_core.xml
  7. 2
      specs/templates/core.json
  8. 2
      tool/Dockerfile.dev

2
external/nextcloud-notifications vendored

@ -1 +1 @@
Subproject commit c6da9d2aa34179e5fe2b6ce529f3aeffc5b7b109
Subproject commit 52bb45654299f9d73313d6214d2a358ebae0c3e4

2
external/nextcloud-server vendored

@ -1 +1 @@
Subproject commit 9c791972de9c2561a9b36c1a60e48c25315ecca5
Subproject commit 494a0c1073b460d4d2a5c03ff3567fc388b91e36

2
packages/nextcloud/lib/src/nextcloud.openapi.json

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Nextcloud",
"version": "25.0.2",
"version": "25.0.3",
"description": "All supported Nextcloud APIs in one",
"license": {
"name": "agpl",

6
packages/nextcloud/test/core.dart

@ -26,8 +26,8 @@ Future run(final DockerImage image) async {
expect(status.installed, true);
expect(status.maintenance, false);
expect(status.needsDbUpgrade, false);
expect(status.version, startsWith('25.0.2'));
expect(status.versionstring, '25.0.2');
expect(status.version, startsWith('25.0.3'));
expect(status.versionstring, '25.0.3');
expect(status.edition, '');
expect(status.productname, 'Nextcloud');
expect(status.extendedSupport, false);
@ -36,7 +36,7 @@ Future run(final DockerImage image) async {
test('Get capabilities', () async {
final capabilities = await client.core.getCapabilities();
expect(capabilities.ocs.data.version.major.toString(), '25');
expect(capabilities.ocs.data.version.string, '25.0.2');
expect(capabilities.ocs.data.version.string, '25.0.3');
expect(capabilities.ocs.data.capabilities.theming!.name, 'Nextcloud');
expect(capabilities.ocs.data.capabilities.theming!.url, 'https://nextcloud.com');
expect(capabilities.ocs.data.capabilities.theming!.slogan, 'a safe home for all your data');

2
specs/core.json

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Core",
"version": "25.0.2",
"version": "25.0.3",
"description": "Core functionality of Nextcloud",
"license": {
"name": "agpl",

2
specs/templates/appinfo_core.xml

@ -4,6 +4,6 @@
<name>Core</name>
<summary>Core functionality of Nextcloud</summary>
<description><![CDATA[Core functionality of Nextcloud]]></description>
<version>25.0.2</version>
<version>25.0.3</version>
<licence>agpl</licence>
</info>

2
specs/templates/core.json

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Core",
"version": "25.0.2",
"version": "25.0.3",
"description": "Core functionality of Nextcloud",
"license": {
"name": "agpl",

2
tool/Dockerfile.dev

@ -1,4 +1,4 @@
FROM nextcloud:25.0.2
FROM nextcloud:25.0.3
WORKDIR /usr/src/nextcloud
RUN chown -R www-data:www-data .
USER www-data

Loading…
Cancel
Save