Browse Source

Update nextcloud server and notifications to 25.0.4

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

2
external/nextcloud-notifications vendored

@ -1 +1 @@
Subproject commit 52bb45654299f9d73313d6214d2a358ebae0c3e4
Subproject commit 6205c303497c8245415ade86be5122a7e33b01d6

2
external/nextcloud-server vendored

@ -1 +1 @@
Subproject commit 494a0c1073b460d4d2a5c03ff3567fc388b91e36
Subproject commit 0c86714144f50a66e845e9ef80d4cd7e6918a4f5

4
packages/nextcloud/lib/src/nextcloud.openapi.dart

@ -4334,7 +4334,7 @@ class NextcloudProvisioningApiUserDetails_BackendCapabilities {
class NextcloudProvisioningApiUserDetails {
NextcloudProvisioningApiUserDetails({
this.enabled,
required this.storageLocation,
this.storageLocation,
required this.id,
required this.lastLogin,
required this.backend,
@ -4385,7 +4385,7 @@ class NextcloudProvisioningApiUserDetails {
final bool? enabled;
final String storageLocation;
final String? storageLocation;
final String id;

2
packages/nextcloud/lib/src/nextcloud.openapi.g.dart

@ -1835,7 +1835,7 @@ NextcloudProvisioningApiUserDetails _$NextcloudProvisioningApiUserDetailsFromJso
);
return NextcloudProvisioningApiUserDetails(
enabled: json['enabled'] as bool?,
storageLocation: json['storageLocation'] as String,
storageLocation: json['storageLocation'] as String?,
id: json['id'] as String,
lastLogin: json['lastLogin'] as int,
backend: json['backend'] as String,

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

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Nextcloud",
"version": "25.0.3",
"version": "25.0.4",
"description": "All supported Nextcloud APIs in one",
"license": {
"name": "agpl",
@ -1546,7 +1546,6 @@
"ProvisioningApiUserDetails": {
"type": "object",
"required": [
"storageLocation",
"id",
"lastLogin",
"backend",

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.3'));
expect(status.versionstring, '25.0.3');
expect(status.version, startsWith('25.0.4'));
expect(status.versionstring, '25.0.4');
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.3');
expect(capabilities.ocs.data.version.string, '25.0.4');
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.3",
"version": "25.0.4",
"description": "Core functionality of Nextcloud",
"license": {
"name": "agpl",

1
specs/provisioning_api.json

@ -107,7 +107,6 @@
"UserDetails": {
"type": "object",
"required": [
"storageLocation",
"id",
"lastLogin",
"backend",

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.3</version>
<version>25.0.4</version>
<licence>agpl</licence>
</info>

2
specs/templates/core.json

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

2
tool/Dockerfile.dev

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

Loading…
Cancel
Save