From 9085fe3f984b4ddd46c790a5624cf6f9d9c32deb Mon Sep 17 00:00:00 2001
From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com>
Date: Mon, 22 Sep 2025 15:45:05 +0200
Subject: [PATCH 1/7] feat: added files for simple demo environ... not tested
thoroughly.... read deployment notes for hints...
---
.../customization/custom-formatting.json | 4 +
.gitignore | 15 +
Deployment-notes.md | 26 +
evidence-pod.yml | 34 +
evidence.config.yaml | 84 +
package.json | 40 +
pages/index.md | 37 +
sources/github/commits.json | 8412 +++++++++++++++++
sources/github/commits.sql | 12 +
sources/github/connection.yaml | 3 +
sources/github/project_health.json | 1 +
sources/github/project_health.sql | 7 +
sources/github/query.json | 3 +
sources/needful_things/connection.yaml | 5 +
sources/needful_things/needful_things.duckdb | Bin 0 -> 1323008 bytes
sources/needful_things/orders.sql | 1 +
sources/project_health.sql | 8 +
17 files changed, 8692 insertions(+)
create mode 100644 .evidence/customization/custom-formatting.json
create mode 100644 .gitignore
create mode 100644 Deployment-notes.md
create mode 100644 evidence-pod.yml
create mode 100644 evidence.config.yaml
create mode 100644 package.json
create mode 100644 pages/index.md
create mode 100644 sources/github/commits.json
create mode 100644 sources/github/commits.sql
create mode 100644 sources/github/connection.yaml
create mode 100644 sources/github/project_health.json
create mode 100644 sources/github/project_health.sql
create mode 100644 sources/github/query.json
create mode 100644 sources/needful_things/connection.yaml
create mode 100644 sources/needful_things/needful_things.duckdb
create mode 100644 sources/needful_things/orders.sql
create mode 100644 sources/project_health.sql
diff --git a/.evidence/customization/custom-formatting.json b/.evidence/customization/custom-formatting.json
new file mode 100644
index 0000000..5bde568
--- /dev/null
+++ b/.evidence/customization/custom-formatting.json
@@ -0,0 +1,4 @@
+{
+ "version": "1.0",
+ "customFormats": []
+}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..daff379
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+.evidence/template
+.svelte-kit
+build
+node_modules
+.DS_Store
+static/data
+*.options.yaml
+.vscode/settings.json
+.env
+.evidence/meta
+.npm/
+.npm-cache/
+npm-debug.log*
+.vite/
+.evidence/temp/
\ No newline at end of file
diff --git a/Deployment-notes.md b/Deployment-notes.md
new file mode 100644
index 0000000..21147ee
--- /dev/null
+++ b/Deployment-notes.md
@@ -0,0 +1,26 @@
+# Evidence Template Project
+
+
+The `selinuxRelabel: "shared"` line tells Podman to automatically manage the SELinux context of the host directory, ensuring the container has the necessary permissions to read and write files without manual configuration.
+
+Otherwise just use: `sudo chcon -Rt container_file_t /home/jmk/Repositories/evidence-dev`
+
+
+The `args` field in the manifest contains a series of commands that are run in sequence to prepare and start the development server.
+
+The command is:
+`npm install && npm run sources && npm run dev -- --host`
+
+This single line tells the container to perform three separate actions, one after the other. It's a key part of making this setup simple and reliable.
+
+#### Command Breakdown
+
+- **`npm install`**: This command downloads and installs the project's dependencies from `package.json` into the `node_modules` directory. The first time you run this, it will take some time to download everything. On subsequent runs, it will be much faster as it only installs what's missing or changed. 💡 For a more consistent and faster build, especially in CI/CD, you could use `npm ci` instead, which performs a "clean install" based strictly on the `package-lock.json` file.
+- **`&&`**: This is a logical operator. It tells the shell to run the next command **only if the previous one was successful**. This ensures the dev server doesn't start before the dependencies are installed and the data sources are ready.
+- **`npm run sources`**: This command is specific to the Evidence framework. It processes the raw data files in your `/sources` directory and generates the necessary files for the application to use. This step is required for the application to have data to display.
+- **`npm run dev`**: This starts the Vite development server. It watches for changes in your project files and automatically reloads the application in your browser.
+- **`-- --host`**: This is the most important part for networking. The first `--` is a special syntax that tells `npm` to pass all following arguments directly to the script being run (in this case, `npm run dev`). The `--host` flag then tells the Vite dev server to bind to `0.0.0.0` instead of `localhost`. This makes the server accessible from your host machine's browser, allowing you to view your project at `http://localhost:3000`.
+
+To create a database file from a .json file (resulting data from an API query), use the following command:
+
+`podman run --rm -it --name duckdb-importer -v "$(pwd)":/data docker.io/duckdb/duckdb -c "INSTALL json; LOAD json; CREATE OR REPLACE TABLE project_health AS SELECT * FROM read_json_auto('/data/project_health.json');"`
\ No newline at end of file
diff --git a/evidence-pod.yml b/evidence-pod.yml
new file mode 100644
index 0000000..b247143
--- /dev/null
+++ b/evidence-pod.yml
@@ -0,0 +1,34 @@
+# evidence-pod.yaml
+apiVersion: v1
+kind: Pod
+metadata:
+ name: evidence-pod
+spec:
+ volumes:
+ - name: project-data
+ hostPath:
+ path: /home/jmk/Repositories/evidence-dev
+ type: Directory
+ selinuxRelabel: "shared"
+ - name: sources-data
+ hostPath:
+ path: /home/jmk/Repositories/evidence-dev/sources
+ type: Directory
+ selinuxRelabel: "shared"
+ containers:
+ - name: evidence-app
+ image: evidencedev/devenv:latest
+ securityContext:
+ runAsUser: 0
+ runAsGroup: 0
+ ports:
+ - containerPort: 3000
+ hostPort: 3000
+ volumeMounts:
+ - mountPath: /app
+ name: project-data
+ - mountPath: /app/sources
+ name: sources-data
+ workingDir: /app
+ command: ["/bin/bash"]
+ args: ["-c", "npm install && npm run sources && npm run dev -- --host"]
\ No newline at end of file
diff --git a/evidence.config.yaml b/evidence.config.yaml
new file mode 100644
index 0000000..61c6e62
--- /dev/null
+++ b/evidence.config.yaml
@@ -0,0 +1,84 @@
+appearance:
+ default: system
+ switcher: true
+
+theme:
+ colorPalettes:
+ default:
+ light:
+ - "#236aa4"
+ - "#45a1bf"
+ - "#a5cdee"
+ - "#8dacbf"
+ - "#85c7c6"
+ - "#d2c6ac"
+ - "#f4b548"
+ - "#8f3d56"
+ - "#71b9f4"
+ - "#46a485"
+ dark:
+ - "#236aa4"
+ - "#45a1bf"
+ - "#a5cdee"
+ - "#8dacbf"
+ - "#85c7c6"
+ - "#d2c6ac"
+ - "#f4b548"
+ - "#8f3d56"
+ - "#71b9f4"
+ - "#46a485"
+ colorScales:
+ default:
+ light:
+ - "#ADD8E6"
+ - "#00008B"
+ dark:
+ - "#ADD8E6"
+ - "#00008B"
+ colors:
+ primary:
+ light: "#2563eb"
+ dark: "#3b82f6"
+ accent:
+ light: "#c2410c"
+ dark: "#fdba74"
+ base:
+ light: "#ffffff"
+ dark: "#09090b"
+ info:
+ light: "#0284c7"
+ dark: "#38bdf8"
+ positive:
+ light: "#16a34a"
+ dark: "#4ade80"
+ warning:
+ light: "#f8c900"
+ dark: "#fbbf24"
+ negative:
+ light: "#dc2626"
+ dark: "#f87171"
+
+plugins:
+ components:
+ # This loads all of evidence's core charts and UI components
+ # You probably don't want to edit this dependency unless you know what you are doing
+ "@evidence-dev/core-components": {}
+
+ datasources:
+ # You can add additional datasources here by adding npm packages.
+ # Make to also add them to `package.json`.
+ "@evidence-dev/bigquery": { }
+ "@evidence-dev/csv": { }
+ "@evidence-dev/databricks": { }
+ "@evidence-dev/duckdb": { }
+ "@evidence-dev/mssql": { }
+ "@evidence-dev/mysql": { }
+ "@evidence-dev/postgres": { }
+ "@evidence-dev/source-javascript": { }
+ "@evidence-dev/snowflake": { }
+ "@evidence-dev/sqlite": { }
+ "@evidence-dev/trino": { }
+ "@evidence-dev/motherduck": { }
+
+deployment:
+ basePath: /evidence-dev
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..ed1de3c
--- /dev/null
+++ b/package.json
@@ -0,0 +1,40 @@
+{
+ "name": "my-evidence-project",
+ "version": "0.0.1",
+ "scripts": {
+ "build": "EVIDENCE_BUILD_DIR=./build/evidence-dev evidence build",
+ "build:strict": "evidence build:strict",
+ "dev": "evidence dev --open /",
+ "test": "evidence build",
+ "sources": "evidence sources",
+ "sources:strict": "evidence sources --strict",
+ "preview": "evidence preview"
+ },
+ "engines": {
+ "npm": ">=7.0.0",
+ "node": ">=18.0.0"
+ },
+ "type": "module",
+ "dependencies": {
+ "@evidence-dev/bigquery": "^2.0.10",
+ "@evidence-dev/core-components": "^5.2.2",
+ "@evidence-dev/csv": "^1.0.14",
+ "@evidence-dev/databricks": "^1.0.8",
+ "@evidence-dev/duckdb": "^1.0.13",
+ "@evidence-dev/evidence": "^40.1.2",
+ "@evidence-dev/motherduck": "^1.0.4",
+ "@evidence-dev/mssql": "^1.1.2",
+ "@evidence-dev/mysql": "^1.1.4",
+ "@evidence-dev/postgres": "^1.0.7",
+ "@evidence-dev/snowflake": "^1.2.2",
+ "@evidence-dev/source-javascript": "^0.0.3",
+ "@evidence-dev/sqlite": "^2.0.7",
+ "@evidence-dev/trino": "^1.0.9"
+ },
+ "overrides": {
+ "jsonwebtoken": "9.0.0",
+ "trim@<0.0.3": ">0.0.3",
+ "sqlite3": "5.1.5",
+ "axios": "^1.7.4"
+ }
+}
\ No newline at end of file
diff --git a/pages/index.md b/pages/index.md
new file mode 100644
index 0000000..b60f4e2
--- /dev/null
+++ b/pages/index.md
@@ -0,0 +1,37 @@
+# 📊 DuckDB Project Health
+
+A quick dashboard showing the health metrics for the DuckDB project.
+
+```sql project_health_data
+SELECT * FROM local_duckdb.project_health
+```
+
+
+
+
+
+
+
+
+
diff --git a/sources/github/commits.json b/sources/github/commits.json
new file mode 100644
index 0000000..c369e56
--- /dev/null
+++ b/sources/github/commits.json
@@ -0,0 +1,8412 @@
+HTTP/2 200
+date: Mon, 22 Sep 2025 12:38:51 GMT
+content-type: application/json; charset=utf-8
+content-length: 503905
+cache-control: private, max-age=60, s-maxage=60
+vary: Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With
+etag: "d4731ae267bf5500b2288ea287d83be15533d8ed75d6bea1b7e2d3f47ff7209d"
+last-modified: Sun, 30 Jun 2024 23:01:45 GMT
+x-oauth-scopes: repo
+x-accepted-oauth-scopes:
+github-authentication-token-expiration: 2025-10-21 20:50:06 UTC
+x-github-media-type: github.v3; format=json
+link: ; rel="next", ; rel="last"
+x-github-api-version-selected: 2022-11-28
+x-ratelimit-limit: 5000
+x-ratelimit-remaining: 4993
+x-ratelimit-reset: 1758548094
+x-ratelimit-used: 7
+x-ratelimit-resource: core
+access-control-expose-headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset
+access-control-allow-origin: *
+strict-transport-security: max-age=31536000; includeSubdomains; preload
+x-frame-options: deny
+x-content-type-options: nosniff
+x-xss-protection: 0
+referrer-policy: origin-when-cross-origin, strict-origin-when-cross-origin
+content-security-policy: default-src 'none'
+server: github.com
+x-github-request-id: 996C:E075F:93A7C5C:88012DE:68D1435B
+
+[
+ {
+ "sha": "1716c95c94100ee18b64cb59996dba213792ce48",
+ "node_id": "C_kwDOA5c8_doAKDE3MTZjOTVjOTQxMDBlZTE4YjY0Y2I1OTk5NmRiYTIxMzc5MmNlNDg",
+ "commit": {
+ "author": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-30T23:01:45Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-30T23:01:45Z"
+ },
+ "message": "Merge pull request #46206 from nextcloud/updteIssTempRem27\n\nchore: remove EOL v27 from issue template",
+ "tree": {
+ "sha": "2b52ae09d3d795bb211969d02c500f67748afcb6",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/2b52ae09d3d795bb211969d02c500f67748afcb6"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1716c95c94100ee18b64cb59996dba213792ce48",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgePZCRC1aQ7uu5UhlAAAz+oQAC/m5uTBrhwNnuoyK9dx270v\nD6ocDPg21Q7F4PZVAZviNKPKJ32avl/4iDfmbAsne/KBeK6eM0uDG5w6iNNn1gdC\nkrHt6u6uQB1ddXGlRn+wIX9161OSv8KlXrSx416M6fvgv8hRsMfOBNmsVf9GWHZM\nV4Hhnx5FDl6FG49rzZdu41iWnIJRUzr70ZorXH0fVr5aiTpmhpbEUK1SO7kvAbos\nvsDgLgsyw0M0to6Ihem9y4PcPQ20ZxyFyBTuXj6UWK9dYR7RxXhjNoNASOLvS33u\nPa1YUR3CN/lj9A/WB7YHiGbNoXRZIyywWaV2JO8is5lsvqU9UXxCDTumu4rY4UeZ\nIgZOtL5x4WyeyGrfDWizTevO2LTvccDjF7VtHQueC/vGVxPDi4UuczBOlH2V6YNE\n3ocER01dI63vR9+lScZIkyxACqkD5+tlK+Mn+Kd7pqV2PLcx2jmaYp0JseoP2jzv\nTIGURw0Qlk4NVjcYVmXLRU4f3XoQ1ALZyUmRZ2pDXr88z1FdX0tcrPKm+/5ZZnb3\nT1xubwqTBxCIcA3WNuG6YOQqyoqAK0ThykNBJAEA8/4XyRjl4VSEHHKusvWptcbb\nragQcIhcpJketTGdwps7tlsOccq9Ih8N02gLjnyV8l+4fvBMPzcuw6R6C7lsRi1/\nq4sUHIn8GJuI6pdz44OY\n=2qi4\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 2b52ae09d3d795bb211969d02c500f67748afcb6\nparent b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7\nparent 2787c8f2a79868ff6d537659c3e2a3a1ac4903a6\nauthor Git'Fellow <12234510+solracsf@users.noreply.github.com> 1719788505 +0200\ncommitter GitHub 1719788505 +0200\n\nMerge pull request #46206 from nextcloud/updteIssTempRem27\n\nchore: remove EOL v27 from issue template",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1716c95c94100ee18b64cb59996dba213792ce48",
+ "html_url": "https://github.com/nextcloud/server/commit/1716c95c94100ee18b64cb59996dba213792ce48",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1716c95c94100ee18b64cb59996dba213792ce48/comments",
+ "author": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "html_url": "https://github.com/nextcloud/server/commit/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7"
+ },
+ {
+ "sha": "2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "html_url": "https://github.com/nextcloud/server/commit/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6"
+ }
+ ]
+ },
+ {
+ "sha": "2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "node_id": "C_kwDOA5c8_doAKDI3ODdjOGYyYTc5ODY4ZmY2ZDUzNzY1OWMzZTJhM2ExYWM0OTAzYTY",
+ "commit": {
+ "author": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-30T13:23:32Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-30T13:23:32Z"
+ },
+ "message": "chore: Keep v28 supported PHP 8.0\n\nSigned-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>",
+ "tree": {
+ "sha": "b18a43ada3d544761be215822af70c5d9c10bc78",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b18a43ada3d544761be215822af70c5d9c10bc78"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgVxUCRC1aQ7uu5UhlAAAgd4QAKgb87X4EIfSJkWFr8CWrBfJ\nFWOTT/ehLHS7ece+oT8bs5MLZ1Gp75ndS/z8RKz9dbmJrIfIWsGsZlGGnD2yrIA7\n97aNdjDQ/oz6lbsFs37/Sc/k1jWCIS4Wp4n5JY/teVLeRgbHUUQQJnGiGqg+2F88\nFmFRANVdlpL11FTrFNeqs3LN03RACp9VSuYGsFgc34AsS2eals+dUFEWWT90vGK0\n7UjU0x+hJbZWfWP3O9XE338IwuxdBt8A1qzr+OdWXvN276sx+jSEicArruUkyyoK\nI6XMMWlYV8ruVSEtcR3nvxJRNnBfAQtDY/c8qskRUDV7Q7PP2qz5A+mlGeUEVUFr\n+PGjfi48KjmI+dGJyOeApcDH/rwXHl4bgAHGWhNkLnJ3NBvpIkKCgEARWgqN6CqD\nl7ubK/Bv/wBDk9Xz9H66v62n3mfiFj9EEGVKlbRxGcg2rXNQ9TxWgTASDE///hfN\n2dN93f4YmzaQ7pvDlXJQvPYrUlofOFMNssyflIUgH5+rSvj/6kc1qDwormvaL9ay\nB9voEzud/sQSlYVn0A81UvD2HFzCCoNj7Nr76qYtePQ1ww93zLwrR6B8KoCwtfoI\nG++KvU0eW/SW5gfGa189o9xKj2E6sJSN5VXFt4iUoxBUhNS5hXIPAGwU99f1aLmX\n7SbD43i2mAfougzN//U9\n=5hNb\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree b18a43ada3d544761be215822af70c5d9c10bc78\nparent 9ed96d766a2735acf2b2c130b4373c3684ed0025\nauthor Git'Fellow <12234510+solracsf@users.noreply.github.com> 1719753812 +0200\ncommitter GitHub 1719753812 +0200\n\nchore: Keep v28 supported PHP 8.0\n\nSigned-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "html_url": "https://github.com/nextcloud/server/commit/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/2787c8f2a79868ff6d537659c3e2a3a1ac4903a6/comments",
+ "author": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "html_url": "https://github.com/nextcloud/server/commit/9ed96d766a2735acf2b2c130b4373c3684ed0025"
+ }
+ ]
+ },
+ {
+ "sha": "b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "node_id": "C_kwDOA5c8_doAKGI3N2MxNTFmNWJjMDQxYzA4OWU1ZjA3ZTNkZjVmOWMxZTNjMWYxZDc",
+ "commit": {
+ "author": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-30T06:39:06Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-30T06:39:06Z"
+ },
+ "message": "Merge pull request #46197 from nextcloud/setupPhpUpgrade\n\nci: Use the same `setup-php` version on all tests",
+ "tree": {
+ "sha": "f0d8d6cafb15868a0d2292a82ee1779690a7931c",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/f0d8d6cafb15868a0d2292a82ee1779690a7931c"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgP2KCRC1aQ7uu5UhlAAALNoQAEAYwitg0WEgEFcn+kEYK7W6\nysmLXr1WLX75604O1NkVKuzNzLQAwgeaiuxnlSQcsslqwdVtWdA7Mtm66vKuodPq\nlLg/mHw/OR3rx1RZcapXOhHJPTtuLbj+Z2cIfOEyCT4+anaIY9tC8C5HiKrR2HRa\n7hwd5S0TVlkp13aHc5d04pPKlAiFTfythR299NHdNku+XjadFIcQQvdgatJiZgKR\nQE+i0PizNNIEKSjwovWHGWsyxADgsBO6pQ3Z+p3ZF5/moGmCebW+0xLGLZQKj5zX\nSrxTi6Knr+nQr49wIi6xlqmhtGooca+PJDWSSgqTbORnKYz8Ss+o3sCHyik15TN9\nA/JpyhcmgkF79/sJAF/4AdknKENY3Nk0dcXYihiMqIZftqPcQi/Va9sIz2sHkwQp\nPRsF5OiOa820YjkX6KY/0V9JtDpDSlmCvJn9cFBMhomvEIwfJdWZM5+cNRLyCuV+\noVs7greEp+BjlyNe8AkACISge6mB1LhMLze8CnJUnVkHupsfx1VnH3YmII7YL9vF\nWmIcn9yFfpP6z37E19OGGoHHRO6kzKaT2SYayM7SpP1yL/Kdxomsyy7uDTv4ekSs\nVuNVChSQohiXxWoUP+eUSl5ELuzYxpBkAyJP6w0ulGwHQAoP5Oyrz6OwZN/w4Vg/\nSaLYamXvBCuRJFfvWh1c\n=z2wY\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree f0d8d6cafb15868a0d2292a82ee1779690a7931c\nparent a7fd9c983192117012180e2e46e0be18709f36ac\nparent ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3\nauthor Git'Fellow <12234510+solracsf@users.noreply.github.com> 1719729546 +0200\ncommitter GitHub 1719729546 +0200\n\nMerge pull request #46197 from nextcloud/setupPhpUpgrade\n\nci: Use the same `setup-php` version on all tests",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "html_url": "https://github.com/nextcloud/server/commit/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/b77c151f5bc041c089e5f07e3df5f9c1e3c1f1d7/comments",
+ "author": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "a7fd9c983192117012180e2e46e0be18709f36ac",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/a7fd9c983192117012180e2e46e0be18709f36ac",
+ "html_url": "https://github.com/nextcloud/server/commit/a7fd9c983192117012180e2e46e0be18709f36ac"
+ },
+ {
+ "sha": "ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "html_url": "https://github.com/nextcloud/server/commit/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3"
+ }
+ ]
+ },
+ {
+ "sha": "9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "node_id": "C_kwDOA5c8_doAKDllZDk2ZDc2NmEyNzM1YWNmMmIyYzEzMGI0MzczYzM2ODRlZDAwMjU",
+ "commit": {
+ "author": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-30T06:30:08Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-30T06:30:08Z"
+ },
+ "message": "chore: remove EOL v27 from issue template\n\nSigned-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>",
+ "tree": {
+ "sha": "36f9a8a299a2d1f9e6fec116be6381ecf387bae3",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/36f9a8a299a2d1f9e6fec116be6381ecf387bae3"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgPtxCRC1aQ7uu5UhlAAAdu4QACHKHeEjyjN5K3NwyoJH3s6I\nUfEz5jfhP0cII9RWs+RwmWlf8zCPJ9QLSEqk5fkif+a5byxYy5y795EGEqe7x6uP\nrCduHNEkopblgyr+C8kfuAAnxLUVUQ2WWxVBzkc8lXomfF2UFV6o7r67OuiL8OGa\nErx0KXXPthx3PQHpcdvHjCCvXhWbjyzXQ2xvRphn9YRVYrkmJLQtH5DfiHwaRWIH\nSrVIC5camAHZUlvkkPFdJ8sKVTJEEUFSZY8Fossh2nau5W63t5ArmzjyJhkBww/e\nq507RZ96TKHAs6juQ6KepcEPDLdarCV0hk2C0MJ2tlspmbLpN68oNrHMiJdtz+V2\n5idH9rCQZYfS7biOAKi8vRK4Nt11JPtFi7glg/uEkBABLd6SbOseH1omLMs8vuzl\nx6VTEdt2NY0/kuagIySX/lMwEMSumAZbH4egy+TwuxDycpH6MxwN9Qzz7N1TbMI8\nQ2iGPZ9nQNcQdSYpilYOd/6lgLEMSKFCenqNm6L8bArkxLaam8VhVWHQfPGCK5bb\naGUXc3yOnBYJMGGFkEwlK3dVXms+B3zWgeE0N6XmXTcF3wvBuQJTxLejbhxLQTeP\nypn2rVKCIDwekcd3eGpQ6eLgaJvd9rtM2kALvZppm+g7/i5E0PHfmXy594XxgC/6\nUrwkiUq+rPWmF+4RGOY7\n=VNGF\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 36f9a8a299a2d1f9e6fec116be6381ecf387bae3\nparent a7fd9c983192117012180e2e46e0be18709f36ac\nauthor Git'Fellow <12234510+solracsf@users.noreply.github.com> 1719729008 +0200\ncommitter GitHub 1719729008 +0200\n\nchore: remove EOL v27 from issue template\n\nSigned-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "html_url": "https://github.com/nextcloud/server/commit/9ed96d766a2735acf2b2c130b4373c3684ed0025",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9ed96d766a2735acf2b2c130b4373c3684ed0025/comments",
+ "author": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "a7fd9c983192117012180e2e46e0be18709f36ac",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/a7fd9c983192117012180e2e46e0be18709f36ac",
+ "html_url": "https://github.com/nextcloud/server/commit/a7fd9c983192117012180e2e46e0be18709f36ac"
+ }
+ ]
+ },
+ {
+ "sha": "ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "node_id": "C_kwDOA5c8_doAKGFkMTcyMGI2ZTJmNjE2MTFmNmRiYjlhMDkyZTE2YjhhNDhiMDVjYjM",
+ "commit": {
+ "author": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-28T16:13:56Z"
+ },
+ "committer": {
+ "name": "Git'Fellow",
+ "email": "12234510+solracsf@users.noreply.github.com",
+ "date": "2024-06-30T06:11:14Z"
+ },
+ "message": "ci: Use the same setup-php version on all tests",
+ "tree": {
+ "sha": "55839ecf6e0a2520e8a63a40491d5301da63bb81",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/55839ecf6e0a2520e8a63a40491d5301da63bb81"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "html_url": "https://github.com/nextcloud/server/commit/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ad1720b6e2f61611f6dbb9a092e16b8a48b05cb3/comments",
+ "author": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "solracsf",
+ "id": 12234510,
+ "node_id": "MDQ6VXNlcjEyMjM0NTEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12234510?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/solracsf",
+ "html_url": "https://github.com/solracsf",
+ "followers_url": "https://api.github.com/users/solracsf/followers",
+ "following_url": "https://api.github.com/users/solracsf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/solracsf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/solracsf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/solracsf/subscriptions",
+ "organizations_url": "https://api.github.com/users/solracsf/orgs",
+ "repos_url": "https://api.github.com/users/solracsf/repos",
+ "events_url": "https://api.github.com/users/solracsf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/solracsf/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc"
+ }
+ ]
+ },
+ {
+ "sha": "a7fd9c983192117012180e2e46e0be18709f36ac",
+ "node_id": "C_kwDOA5c8_doAKGE3ZmQ5Yzk4MzE5MjExNzAxMjE4MGUyZTQ2ZTBiZTE4NzA5ZjM2YWM",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-30T00:19:22Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-30T00:19:22Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "893db66057fd4dd5947c00ad0667c68489d8568f",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/893db66057fd4dd5947c00ad0667c68489d8568f"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/a7fd9c983192117012180e2e46e0be18709f36ac",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmaApIoACgkQEw2rhtP7\nNWwhOQ//Qbx+bzx4K4188IPPfzB7zD0YAHR4zIHguMmZF+dePPbRimXC8McXgNkh\nPTCVi8iDRrY5rHFPjiZKWX9yu4vIWLtsyL6A6zw9E/69WBfAKatPi+EV2s4kdAQx\nTcFjTgoneyY8s5SncgIgpgly98pcswQVU2Y/XyvX41sLyV9XLhn6m8twdxvaho+l\nbTs+HICjHfqIshxBbhvGPgJZb4a3u4/Lyi8Zpx+eF4pqs8Oli8JZ0833WaP4rn/D\nu8BpyeoQlB6gOrpp8xlRQqTAWJGsQRj7lkp7oke7N/9H24IeaqUJLXWR+2S6has/\nu8p/WzbtWo6sWTEciBx1KnU9euh8ZrPQVssXQOwqORq4tVNgKT+HZK/Fk9DS+S3N\n0a9XVDWslPc7kQczctUfDAP5c7oPDm3HfkGaDUDkZ4JMYxrtOuCqyZV4TW1fEwJH\nHZ2MuCtoX//7Q/KDArwvyFOYdb8/ZLJDYOlO2FIWBu5ZFlpHY12vs4+p+aQNGgtk\nvTGjM+cCOLa79tHgFqzfDzFS0NDFugb8YHK0Cgom1wgXmI+juVLCDuGLeH/JexPa\nGa0zOTHMMJz3sO87X0zcGqOlPzG2zWO9tvuCjYbhIfJEXk1jaRwNwvyqCD4cL0vw\nLM7ULF8q+3W4SsqhEZSy2p0/oDpeyc5DwG9FVAPSpZv5QI4fAbc=\n=n9DR\n-----END PGP SIGNATURE-----",
+ "payload": "tree 893db66057fd4dd5947c00ad0667c68489d8568f\nparent f58963982231eada3fe98721ac7006213e3da881\nauthor Nextcloud bot 1719706762 +0000\ncommitter Nextcloud bot 1719706762 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/a7fd9c983192117012180e2e46e0be18709f36ac",
+ "html_url": "https://github.com/nextcloud/server/commit/a7fd9c983192117012180e2e46e0be18709f36ac",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/a7fd9c983192117012180e2e46e0be18709f36ac/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "f58963982231eada3fe98721ac7006213e3da881",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f58963982231eada3fe98721ac7006213e3da881",
+ "html_url": "https://github.com/nextcloud/server/commit/f58963982231eada3fe98721ac7006213e3da881"
+ }
+ ]
+ },
+ {
+ "sha": "f58963982231eada3fe98721ac7006213e3da881",
+ "node_id": "C_kwDOA5c8_doAKGY1ODk2Mzk4MjIzMWVhZGEzZmU5ODcyMWFjNzAwNjIxM2UzZGE4ODE",
+ "commit": {
+ "author": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-29T16:47:30Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-29T16:47:30Z"
+ },
+ "message": "Merge pull request #46199 from nextcloud/debt/noid/spdx-migrations-template\n\nchore: use spdx for migrations generator",
+ "tree": {
+ "sha": "c99c87e3d071d0cf1a9735d723a1f2c9e81dadaa",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/c99c87e3d071d0cf1a9735d723a1f2c9e81dadaa"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f58963982231eada3fe98721ac7006213e3da881",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgDqiCRC1aQ7uu5UhlAAA9VsQAJuelpeswJVS6GpISs+jC7Tz\nFWlPpmceEDdkPpD07UiFtzosP7wLgcNh8GetwlmR8ZZv3k6eFYBHl7ppxjxmxOpI\naoybuo5oAKrbDTFe/fyEkrINKVFI4mzknEezli5CT3HnN5/u62aGFxBTJhJJZQTP\nWz1P2uNv6B596H8MzG+pvb5U8TrgYNnFBl78LvDJnTO4Qtz1JfUtYIpZfqNcqMNe\nOy1H1N4K4DzzkTpw0m+y94br4VJmIjdPBnVw29WhATuL18Y4FWxwCjLWR9XYT+aE\npK0q2xMDgrULz0VmQcGItnit+rQ8iWAVwb/+0rCzGM9bz94qPIJkLzjl+hXhcJHd\nsOwXlObl1H7UL2rRkfxOVVpkBUPTq1gBvzatah83vsjnnzRswGb1U4CkQ3MYdusF\nGHllUmRYucyICinGYyrAQvRP7ZT3wkfjjegLc80oOT39BHPfNEJsFcGVZGAaFg25\ne5lB9caY+MPSrQaGjRnKWKgQvtAuOvnkDva8yKkeXjDakF26iZa6epIrX9558vlF\nZL4gsgnWl2Y5R4KwebTTtWATAFqwBVjW6mfQlsnbKduLjJX47fuohy9HX4Jec+TH\n7LKeFc0OnGDTvKC7H4PjmbRBpXOdUQOgVQLSPkxcD2iX7SdMOaStXoxIvBV9gquG\nIMpp7Op4CkEyEPTf4M9x\n=/pU1\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree c99c87e3d071d0cf1a9735d723a1f2c9e81dadaa\nparent 682faad0b35efe2ab6d19d1531abe54231d778bf\nparent d00b8ed1f56a10d56f46705432ed7d43356b6258\nauthor Daniel 1719679650 +0200\ncommitter GitHub 1719679650 +0200\n\nMerge pull request #46199 from nextcloud/debt/noid/spdx-migrations-template\n\nchore: use spdx for migrations generator",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f58963982231eada3fe98721ac7006213e3da881",
+ "html_url": "https://github.com/nextcloud/server/commit/f58963982231eada3fe98721ac7006213e3da881",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f58963982231eada3fe98721ac7006213e3da881/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "html_url": "https://github.com/nextcloud/server/commit/682faad0b35efe2ab6d19d1531abe54231d778bf"
+ },
+ {
+ "sha": "d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "html_url": "https://github.com/nextcloud/server/commit/d00b8ed1f56a10d56f46705432ed7d43356b6258"
+ }
+ ]
+ },
+ {
+ "sha": "682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "node_id": "C_kwDOA5c8_doAKDY4MmZhYWQwYjM1ZWZlMmFiNmQxOWQxNTMxYWJlNTQyMzFkNzc4YmY",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-29T14:29:34Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-29T14:29:34Z"
+ },
+ "message": "Merge pull request #46009 from nextcloud/refactor/ajax-cron\n\nrefactor(cron): Use `IAppConfig` for cron settings and migrate ajax cron away from jQuery",
+ "tree": {
+ "sha": "164a89a29f9ec227a9dacbbdc66754e3d5e0c841",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/164a89a29f9ec227a9dacbbdc66754e3d5e0c841"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgBpOCRC1aQ7uu5UhlAAATOoQABkGIYUaAdRAjBZPFIt4mRbB\nu2d5Q/mb/miy9YlJ7/6XDQ5JmkDQAEBJd8ceES8jBOKQ+8AWUM1vyil7oAvjY2PJ\nXpa/xuff5pK85lNGcN6jAX6oE9zSgW3mIlDBuvff4u+GaCpTPb7/wY7lm08m7eTo\nlChXkJu+jXGcI8f01IyGTegeVOEKFBsJsUfiDkK4X2UMS3LPaNXMgBkZ4+IfcV2D\nUSMcj63cB+2jBtE/zHdfMtK0nmvqm+vwx047fcfE9dt1X2yltG97kNykd6PzNpJ7\n7lmXgBguNubGYFFiOxEzOzOlq1JcC6x74moxbNKzNAzrDi2qMY9G8QIGUL+HBHZn\nGimUoujlH46X1gP4tIBVQgmtF5KAEel803/3ffLtx9/whORYgaRbm1fLS976Xga3\n+9cWJ7iIwolUBpxT+TzK2T/Yj3tBKdMKJtvn738Et3/bgnIIxPO6jEYj3zZmI0ti\nYHOBKermtUkuIB5ohsQza9WbFuTeQsaOZr4DMqbMMDr3M4eDPRxra5r9CY4WkNKD\nNJGdlVhFcDvoq5Whvz4AUN4fbLQZzfxFIYwX0MXFlvUAclRyNKafrqyTuOKfSA/b\ngv/QVLM+Jy30nEf5RMVW7ihfM3lveBIgOE4U7h2bCd+/S/prz6khUF5Ps3/lQaSW\n3DsCdS2s44bWh0GsJepq\n=X7o8\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 164a89a29f9ec227a9dacbbdc66754e3d5e0c841\nparent 02983f331743542594ce51f57c419205a13a378a\nparent 4f7907612c858cdfdfcc50580b9e48a1058dfb6b\nauthor Ferdinand Thiessen 1719671374 +0200\ncommitter GitHub 1719671374 +0200\n\nMerge pull request #46009 from nextcloud/refactor/ajax-cron\n\nrefactor(cron): Use `IAppConfig` for cron settings and migrate ajax cron away from jQuery",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "html_url": "https://github.com/nextcloud/server/commit/682faad0b35efe2ab6d19d1531abe54231d778bf",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/682faad0b35efe2ab6d19d1531abe54231d778bf/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "02983f331743542594ce51f57c419205a13a378a",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/02983f331743542594ce51f57c419205a13a378a",
+ "html_url": "https://github.com/nextcloud/server/commit/02983f331743542594ce51f57c419205a13a378a"
+ },
+ {
+ "sha": "4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "html_url": "https://github.com/nextcloud/server/commit/4f7907612c858cdfdfcc50580b9e48a1058dfb6b"
+ }
+ ]
+ },
+ {
+ "sha": "02983f331743542594ce51f57c419205a13a378a",
+ "node_id": "C_kwDOA5c8_doAKDAyOTgzZjMzMTc0MzU0MjU5NGNlNTFmNTdjNDE5MjA1YTEzYTM3OGE",
+ "commit": {
+ "author": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-29T13:59:17Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-29T13:59:17Z"
+ },
+ "message": "Merge pull request #46190 from nextcloud/bug/45047/skip-check-when-disk-free-space-disabled\n\nfix(setupchecks): skip check when disk_free_space is disabled",
+ "tree": {
+ "sha": "ef1461c9510f0b1a292c93fd55a9db74b28ff9cb",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/ef1461c9510f0b1a292c93fd55a9db74b28ff9cb"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/02983f331743542594ce51f57c419205a13a378a",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmgBM1CRC1aQ7uu5UhlAAAziMQAFnyszmu2fCn0UkGomLCaU8Q\n4KD9IJk0B1VYk8Wu3nQXeRBMXe2nynieQjSS1VXqNM17mKeSSoIKXdQOtNqMUdyy\n5ndErlxKitUdGuTIZ4UORgpEcQ1Qtj6hEMRCvsJn7r7IyNRtqs6xz6CMFVwRkW8j\narsUUm2nc+I4SXT1Q6eAewXSTjvMGek5gCIcvxEkCcylPUWaEUCZUgwSZ/kgHEgI\nPcWW4N0hROGOVDh8yfPfVPS4IVd9HR6ewh3wzyV+QRzHhEABqBqMnbMe6TEQuLyZ\nug4S67KI3wUbl3nJPLIq7WR8ktTFdVjy/2lC/45LPfPl4GuQJSNmDWlLH5gVWp2J\nb3Q4iNm4PJR9SfgdaJKiWft9shtEgLALsUEJLXs+LxBFRRDiN664QtuPVbfR0zEt\n4RpGv+wBgEzgjAiw2dPY9SFgAtLHEXDHILEBhCyXLVfhYDTOirrzW5AC7I1jCRzf\n9pUag17s4xvA7CuF88wSSXPircHw0EAP1VFwUtX4BSBM4vTfh/ZwFzsgmRwPkngw\nDSMzpJuUgwJ9tCJL0d2KV0BBsKclxKU+WZkA9B7J72hgZAeN/VoYbtiAyUtTTsfZ\nCC/8JOpo0Ibd/ShFcqMDm7kBLgn9r/rY6VbAtT9AVWv3RWoCa7i74cRNC3RKxgO3\nW89LnRFrGMhKWCtyp4xf\n=Kw0M\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree ef1461c9510f0b1a292c93fd55a9db74b28ff9cb\nparent 700372578259e1cb384bd6f3910720db026f6a92\nparent fd9fd1b6fb09c4a99de96f88068b81ced74e13ff\nauthor Daniel 1719669557 +0200\ncommitter GitHub 1719669557 +0200\n\nMerge pull request #46190 from nextcloud/bug/45047/skip-check-when-disk-free-space-disabled\n\nfix(setupchecks): skip check when disk_free_space is disabled",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/02983f331743542594ce51f57c419205a13a378a",
+ "html_url": "https://github.com/nextcloud/server/commit/02983f331743542594ce51f57c419205a13a378a",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/02983f331743542594ce51f57c419205a13a378a/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "700372578259e1cb384bd6f3910720db026f6a92",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/700372578259e1cb384bd6f3910720db026f6a92",
+ "html_url": "https://github.com/nextcloud/server/commit/700372578259e1cb384bd6f3910720db026f6a92"
+ },
+ {
+ "sha": "fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "html_url": "https://github.com/nextcloud/server/commit/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff"
+ }
+ ]
+ },
+ {
+ "sha": "700372578259e1cb384bd6f3910720db026f6a92",
+ "node_id": "C_kwDOA5c8_doAKDcwMDM3MjU3ODI1OWUxY2IzODRiZDZmMzkxMDcyMGRiMDI2ZjZhOTI",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-29T00:19:43Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-29T00:19:43Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "0a6337b1204c6a1d109dbad8bce1cb9af5be41b2",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/0a6337b1204c6a1d109dbad8bce1cb9af5be41b2"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/700372578259e1cb384bd6f3910720db026f6a92",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmZ/Ux8ACgkQEw2rhtP7\nNWy3VxAAk0O665ubY57agXJzzBt6zRf/vewDxB7CogT74NRJ5GtJ0wmXNFiSDl2S\noceTskhOdfi3lemkqq+7TZsaDqQD+vXzppGEnnEaLRe7vuEx7S6Fh2bsn3XvW5jc\nv4LOC+Yg/5TM9e1WEyTUBPvGy62ruesWdXMlF/BoVZqgkxpz8Q4LTLfOR2L5qSB4\nWrRMYS6bQkFfBkZj0/RKNRWU7vaq8HC8mM4l/p/I054SJtinqk6hc51QsJaUGl9Q\nRYONDqdN3cR7u1iGwyNi0DcGQIgq91OWbNYO5v6g9Dnell3odQLB0QdI8MLjmLJ0\n2XkNHs0vvI0Jasv6tGNPIiHLpp6xpns8K0OqCD6y8oCxjhDgQnBDKFbOWZAIrWEt\nzfQQp62eiMawp+JbXS+glL+TcErFVWnXdBSUe4q7VS7B9SBLWJjtOw09Akw+ldRV\nx20pouG7jbPHp4g+mWnGh3NTllPXd0a4Ip6P03X/Y0fL5b2mOSwgyHrA+5Q1yMoS\nv71t1cvMkJYClXjlfXL7mRw0pD3bTdVi5b6rHbbysYTldY3FmqazfRjshIfIW/Wo\nLVx6R9x/M3VTejsmRpuR203Ngq0wddwHfdtlTPa8DooZMqqZwrk535bCFD33mB5d\n3ELtURiPaBOvsUGlU7MgEkShjFL8EysdDjkgHyMuJn4ZCK1/M6o=\n=CTnO\n-----END PGP SIGNATURE-----",
+ "payload": "tree 0a6337b1204c6a1d109dbad8bce1cb9af5be41b2\nparent b901a629574c3afa87793a356404a24f5ac5b0ea\nauthor Nextcloud bot 1719620383 +0000\ncommitter Nextcloud bot 1719620383 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/700372578259e1cb384bd6f3910720db026f6a92",
+ "html_url": "https://github.com/nextcloud/server/commit/700372578259e1cb384bd6f3910720db026f6a92",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/700372578259e1cb384bd6f3910720db026f6a92/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "html_url": "https://github.com/nextcloud/server/commit/b901a629574c3afa87793a356404a24f5ac5b0ea"
+ }
+ ]
+ },
+ {
+ "sha": "d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "node_id": "C_kwDOA5c8_doAKGQwMGI4ZWQxZjU2YTEwZDU2ZjQ2NzA1NDMyZWQ3ZDQzMzU2YjYyNTg",
+ "commit": {
+ "author": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-28T16:51:55Z"
+ },
+ "committer": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-28T16:54:50Z"
+ },
+ "message": "chore: use spdx for migrations generator\n\nSigned-off-by: Daniel Kesselberg ",
+ "tree": {
+ "sha": "99158354016111707fbce93558e6a7581d18549b",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/99158354016111707fbce93558e6a7581d18549b"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEY6mCxff8zo8zN2zpNuNmTgmdBhQFAmZ+6toACgkQNuNmTgmd\nBhT0Ew//XRuuRr8PEnyKa+mAkxQpsWdend8VzISs1+aCy8lybELjoJN2L7A4//WT\nJFNHIsaZj/rP6fwT+4RT9LULaVx9f+AuWLlwiJJ7F/e/bKTVaKlvoKvDOOBU+9nL\nJwOgvWX/FG2vnrDF4Exd3dC4mNePMmrRIhHQ+WzP2cQaL70csyAYG+r//v4aC03R\n8w0LablN1CQv+rwekNEURgsNd4xLxZ6hZG51ZBhKGvQGvz3iQZq/PL4/rdugUqz0\nHrfCqJISkS7P51f7xNx/IxQOA8BAW7MH19Zjxwuz313/F0orpupqPSxXuny+W3jM\nEhfGDTJqw8/Ks2wvL1h/1Vc2DHpTaqgInVvzGnklTxn9/Pz/FXQ9IHnKh6Wenc1B\nZ8WhSgxSgHzIDWXl5lDRLcG6qWZjOuniaBQIZ/98KCbX4CPTLOr2faXXoctxF+/f\nnKJBD1r2H8yllU7slddAv1sREx74qq55gCp8g+jq28bqj6mVmhj8y4Qcc2qPY2lz\nKGZ9euxIHGlmhuF1B7OINI1Ao87MWmQywZwnbKWrHrJA3dQ25SXQuUiSFiAP0OGv\nDAriGC0OrwqqHWsRz7YlzKY2/7loikHWd8AgPvtUnIWvzA9HPFjA6Mt7R4X6yGeF\nNWODbAcz0XtkCwL+hJZ/fEVmI3org0ro05Oh67uVIzAHHh5NXNo=\n=Cina\n-----END PGP SIGNATURE-----",
+ "payload": "tree 99158354016111707fbce93558e6a7581d18549b\nparent b901a629574c3afa87793a356404a24f5ac5b0ea\nauthor Daniel Kesselberg 1719593515 +0200\ncommitter Daniel Kesselberg 1719593690 +0200\n\nchore: use spdx for migrations generator\n\nSigned-off-by: Daniel Kesselberg \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "html_url": "https://github.com/nextcloud/server/commit/d00b8ed1f56a10d56f46705432ed7d43356b6258",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d00b8ed1f56a10d56f46705432ed7d43356b6258/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "html_url": "https://github.com/nextcloud/server/commit/b901a629574c3afa87793a356404a24f5ac5b0ea"
+ }
+ ]
+ },
+ {
+ "sha": "b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "node_id": "C_kwDOA5c8_doAKGI5MDFhNjI5NTc0YzNhZmE4Nzc5M2EzNTY0MDRhMjRmNWFjNWIwZWE",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-28T16:26:31Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-28T16:26:31Z"
+ },
+ "message": "Merge pull request #46121 from nextcloud/fix/database-versions\n\nci: Adjust database versions to current LTS / supported versions",
+ "tree": {
+ "sha": "5ba3b5e112b06cc86df439b343fb90700896cbb4",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/5ba3b5e112b06cc86df439b343fb90700896cbb4"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfuQ3CRC1aQ7uu5UhlAAAXt8QAILIAVAHkPQAlcVdGUida+3d\nFBNH2bbNO+UqvM7AtLZX7WRqSMtfoZb5WorNcIABTKx2uq6+wQs8Ku0tnRVRiCYt\nfzLnrFPe7NgJ9ibbM/RokCeJ81SHQu3RV9KiatQziabfRsdO5kkxoUtrew9uXtlk\n7cpnKRGc9aGUX8pjnQWzLQzdBdih/eJ0bKdnVVXQSt28M0wTrwI1zPiNCVEd3oDd\nHR7paz5DnztmyFkpqVpaVs/ThpTvIE3sNYR124lHiPMTDIVpSLe5deS9LnCY3f3F\nmlkTvl44osYuq/ok1pM9KF6EqWp7fdZNQ+Fy0XvfEYpBtw4/4x3ig0bBe1N1ojsP\nmS6JDDBQY7qHQw1pss24gWUkNwc6b4e34/9qVX3BURi2LU79OMsf0SeqGlKplj1R\nbVjHipE0As7AKV4gfffDrTYXufSEnf2YgTozEU94/eWa62cf3P4mKVVsDa5/AYr4\njlzEvw4v2mwtHh+8aQBXh9AUjIZpZKFUeO6htWdkVjWSBVZxPVJBb9Ap23CPM7YW\nMznDnlH2MCPi9sLShG0Ih2n4EofxjfxsVyVe7mozYh6OscfB4IWNaHZdVyTyfOyB\npspNLa+OAmxQWo+w4Ct8OFIqqI/++QZYXQcEj+01nfPmCfW62pvDRBRs+hJTSULl\nabXENlgokpYxnY3TQiye\n=5XwL\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 5ba3b5e112b06cc86df439b343fb90700896cbb4\nparent 8ec53608b0b1f6fad1569933bc05b723bd2bd2fc\nparent 6601adcd6da33e3f8745156264ceb75b1958eff5\nauthor Ferdinand Thiessen 1719591991 +0200\ncommitter GitHub 1719591991 +0200\n\nMerge pull request #46121 from nextcloud/fix/database-versions\n\nci: Adjust database versions to current LTS / supported versions",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "html_url": "https://github.com/nextcloud/server/commit/b901a629574c3afa87793a356404a24f5ac5b0ea",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/b901a629574c3afa87793a356404a24f5ac5b0ea/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc"
+ },
+ {
+ "sha": "6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "html_url": "https://github.com/nextcloud/server/commit/6601adcd6da33e3f8745156264ceb75b1958eff5"
+ }
+ ]
+ },
+ {
+ "sha": "4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "node_id": "C_kwDOA5c8_doAKDRmNzkwNzYxMmM4NThjZGZkZmNjNTA1ODBiOWU0OGExMDU4ZGZiNmI",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T14:30:49Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-28T16:00:45Z"
+ },
+ "message": "chore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "5f02405e0b7162265c6d85ca78dd0778c74f87ef",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/5f02405e0b7162265c6d85ca78dd0778c74f87ef"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn7eLQAKCRBF+ucmh2K0\nAJkKAPwMqlXQeKtRXMyQYKxuY25eB2V11Jgq3n9prR8VflzjmAEA3rZ/f4joElE4\nJaJZCceQ8kPw3rSb34AjN7Er8t9vEAA=\n=NLCT\n-----END PGP SIGNATURE-----",
+ "payload": "tree 5f02405e0b7162265c6d85ca78dd0778c74f87ef\nparent 14778811b4c019cfdc090a64e3baf0ab4bef9f8e\nauthor Ferdinand Thiessen 1719498649 +0200\ncommitter Ferdinand Thiessen 1719590445 +0200\n\nchore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "html_url": "https://github.com/nextcloud/server/commit/4f7907612c858cdfdfcc50580b9e48a1058dfb6b",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/4f7907612c858cdfdfcc50580b9e48a1058dfb6b/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "html_url": "https://github.com/nextcloud/server/commit/14778811b4c019cfdc090a64e3baf0ab4bef9f8e"
+ }
+ ]
+ },
+ {
+ "sha": "14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "node_id": "C_kwDOA5c8_doAKDE0Nzc4ODExYjRjMDE5Y2ZkYzA5MGE2NGUzYmFmMGFiNGJlZjlmOGU",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-20T12:44:02Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-28T16:00:39Z"
+ },
+ "message": "refactor: Use `IAppConfig` for setting cron type\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "f0394c2ec98ba3cde38f081f8496cc4b853136c6",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/f0394c2ec98ba3cde38f081f8496cc4b853136c6"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn7eLQAKCRBF+ucmh2K0\nAGskAP93F/AM3MLEPAN37rfMkQ6C7x/Pcx7w3LZYO63p0mKBtgD+MGd4I0C90gFK\nIriIWOUUbryXV2sL0OgkO7SH8rUqFwo=\n=Wlz4\n-----END PGP SIGNATURE-----",
+ "payload": "tree f0394c2ec98ba3cde38f081f8496cc4b853136c6\nparent 4d6a21a3795355a4e94d60dcc468db81fdc4a47e\nauthor Ferdinand Thiessen 1718887442 +0200\ncommitter Ferdinand Thiessen 1719590439 +0200\n\nrefactor: Use `IAppConfig` for setting cron type\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "html_url": "https://github.com/nextcloud/server/commit/14778811b4c019cfdc090a64e3baf0ab4bef9f8e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/14778811b4c019cfdc090a64e3baf0ab4bef9f8e/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "html_url": "https://github.com/nextcloud/server/commit/4d6a21a3795355a4e94d60dcc468db81fdc4a47e"
+ }
+ ]
+ },
+ {
+ "sha": "4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "node_id": "C_kwDOA5c8_doAKDRkNmEyMWEzNzk1MzU1YTRlOTRkNjBkY2M0NjhkYjgxZmRjNGE0N2U",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-19T22:34:43Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-28T15:28:10Z"
+ },
+ "message": "refactor(core): Make AJAX cron script work without jQuery\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "b7aaade242066a8527732b9f1fa9627f20fb89fa",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b7aaade242066a8527732b9f1fa9627f20fb89fa"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn7WigAKCRBF+ucmh2K0\nABycAQDoGUJWSliyR8l8abpzdenrap+gYU0pO8oyU1mvEKvPuAEArrZ7p2ts3L6X\nJIorSo2jey9MmWCsyz2zmYo5z7jijgI=\n=Stt7\n-----END PGP SIGNATURE-----",
+ "payload": "tree b7aaade242066a8527732b9f1fa9627f20fb89fa\nparent 8ec53608b0b1f6fad1569933bc05b723bd2bd2fc\nauthor Ferdinand Thiessen 1718836483 +0200\ncommitter Ferdinand Thiessen 1719588490 +0200\n\nrefactor(core): Make AJAX cron script work without jQuery\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "html_url": "https://github.com/nextcloud/server/commit/4d6a21a3795355a4e94d60dcc468db81fdc4a47e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/4d6a21a3795355a4e94d60dcc468db81fdc4a47e/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc"
+ }
+ ]
+ },
+ {
+ "sha": "4d6b4b71c7af6aa00cdc9291e64491486d74f41e",
+ "node_id": "C_kwDOA5c8_doAKDRkNmI0YjcxYzdhZjZhYTAwY2RjOTI5MWU2NDQ5MTQ4NmQ3NGY0MWU",
+ "commit": {
+ "author": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-27T18:24:35Z"
+ },
+ "committer": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-28T12:42:36Z"
+ },
+ "message": "fix: Authorization header can be an empty string\n\nSigned-off-by: Julius Härtl ",
+ "tree": {
+ "sha": "76363ca1b083a7241406a235a57acac577be5472",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/76363ca1b083a7241406a235a57acac577be5472"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/4d6b4b71c7af6aa00cdc9291e64491486d74f41e",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4d6b4b71c7af6aa00cdc9291e64491486d74f41e",
+ "html_url": "https://github.com/nextcloud/server/commit/4d6b4b71c7af6aa00cdc9291e64491486d74f41e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/4d6b4b71c7af6aa00cdc9291e64491486d74f41e/comments",
+ "author": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc"
+ }
+ ]
+ },
+ {
+ "sha": "fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "node_id": "C_kwDOA5c8_doAKGZkOWZkMWI2ZmIwOWM0YTk5ZGU5NmY4ODA2OGI4MWNlZDc0ZTEzZmY",
+ "commit": {
+ "author": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-28T11:06:49Z"
+ },
+ "committer": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-28T11:06:49Z"
+ },
+ "message": "fix(setupchecks): skip check when disk_free_space is disabled\n\nMake it easier to discover that the check failed because disk_free_space is disabled.\n\nSigned-off-by: Daniel Kesselberg ",
+ "tree": {
+ "sha": "eab654b3a7ce1b0d1465c4807c3bd6db9a014bc0",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/eab654b3a7ce1b0d1465c4807c3bd6db9a014bc0"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEY6mCxff8zo8zN2zpNuNmTgmdBhQFAmZ+ma0ACgkQNuNmTgmd\nBhQ2mA//WDl44ysaT+2W2yT2JuLNM3rjmXmGEtK1hvGJuWCTPAKQdKanBqE4C04d\ngzByTaT6EJFz2XH74wKYtHy54UTmQc8zzE1pN1N6hFjuNjN5Vh3o5V41CPpjSFYA\nqTZpCbAniaYJ8dRoGS+WYPbN0eglrR7+U/ZA8Inc3dCtIy6YNkruigDClB8NEi+7\n9rNWu6BDep3OyKSfxkoBqoT6VQRpnRYjs5czMr3hh7h8wIwYqc3q+IXkovdeoMjY\nLd5wWHB7XFVPbXr2UYVWjiu8UuYZNMDDm20bPYyAWrviyNFrYyD9S15SgeAUrqBj\nknS5hXiKAz6epiX7UNqLSpzu32Noa2ClSsCOey7PP8KoOw1AD81L6DlhSb8oXnmz\nweJlytGbDkBq4oqadGjKCOKPaXhKdh8oQs+w9Wk8rXipcB3SA+UBkITXCW94Ttss\nAMVE1f4KtwjuAR/+TNH9ldvWCF9Hbk4wDe7gn097KY8Z9HyJtlC/gEm2kakYifv9\nhnRdpt1WXBGq9xXJ2I9aElKFMox5drzHB3YzO7CyzNClgM5+so1uVeu61mLJajkw\nD7NboC1Nf1AHhWE+fm/Eaqbw5abvmX9NWwlXsZSQTZO9Ie8wVH52on5aKnDkGFVO\nG0VdLguxgzjH4ASWWKyJf8x140DT+VZESSB97lVXZjl0h5ix1fA=\n=dX98\n-----END PGP SIGNATURE-----",
+ "payload": "tree eab654b3a7ce1b0d1465c4807c3bd6db9a014bc0\nparent 8ec53608b0b1f6fad1569933bc05b723bd2bd2fc\nauthor Daniel Kesselberg 1719572809 +0200\ncommitter Daniel Kesselberg 1719572809 +0200\n\nfix(setupchecks): skip check when disk_free_space is disabled\n\nMake it easier to discover that the check failed because disk_free_space is disabled.\n\nSigned-off-by: Daniel Kesselberg \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "html_url": "https://github.com/nextcloud/server/commit/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/fd9fd1b6fb09c4a99de96f88068b81ced74e13ff/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc"
+ }
+ ]
+ },
+ {
+ "sha": "8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "node_id": "C_kwDOA5c8_doAKDhlYzUzNjA4YjBiMWY2ZmFkMTU2OTkzM2JjMDViNzIzYmQyYmQyZmM",
+ "commit": {
+ "author": {
+ "name": "Andy Scherzinger",
+ "email": "info@andy-scherzinger.de",
+ "date": "2024-06-28T05:13:16Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-28T05:13:16Z"
+ },
+ "message": "Merge pull request #46112 from nextcloud/chore/noid/copyingReadmeHousekeeping\n\nReference 3rd party licenses via SPDX",
+ "tree": {
+ "sha": "b32cc4f485d8acbd72e5fc5706a358dd48af9bbc",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b32cc4f485d8acbd72e5fc5706a358dd48af9bbc"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfkZsCRC1aQ7uu5UhlAAAcpAQADCKeAVfA5vD8ygV+y+qlgwU\n3+B5Dzw9Ct+le3YhpA+cMBVhjnq/JWKYyXNJpT1CrBGQfdkagLqF3wEW/5MFPYaX\nGrFYv1Un9wMY3f+IvdjT1nwqiN1PrAbWkUrtiRN+2mZM+RDI+C5ZMYLckOdXgRsS\nRWmodHjrCHbuiVEmeS4v9aBCQOpM8W58q68U/9zxEi2qHS+/FacxuRoWh4cCPjr6\nOfNDf2eVdbMOnyB9DsNgUAIJ9GcBsMK6ToWD2wGv0w1TA0tZgnv+qRWA6hMKb2Se\nLwoCFKsA9ljg45srqatbRKQIVwML2Vj5Xw76TW5/gHsNmWQ1ZTNLaRpGT+LQJNHs\nCe9SWfIQH1H9E3S0fQ4VGzbtlhoXEgaQj0Xakgn3At1b0PgC4cPZriqyiyXhiQxY\n8gQ9vAMTAefu0o5Ygkgqf+3ZK08gjt4aZ0sOgO3pYSl+tKzCowHc7cAUbenF4KuC\nOXj2mp3dS3xsO2TIZW1oZFpq9tOXNyc4P2M3WSAuDrIsoVgU8oY0TAi+au6O0E/X\nT9yu5whx2NZd/fDSRPtC/s68WliypLz5IhEwhyDqFXvuv8cwul9n6mdc5ifFMNXO\nSM0GDMp9Mt26rlebT9Kc9L2gflnapnms+CvDEHLXwAcyjV7Jo0TrLfpEbF0pQn8g\n0DBbqXR1+Q9mesG7CR+V\n=YdeJ\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree b32cc4f485d8acbd72e5fc5706a358dd48af9bbc\nparent e3f6959c60d015a2e643492c0aac4d33d22c6409\nparent 0a6735c6bad7c266e37642c412793611e09b5194\nauthor Andy Scherzinger 1719551596 +0200\ncommitter GitHub 1719551596 +0200\n\nMerge pull request #46112 from nextcloud/chore/noid/copyingReadmeHousekeeping\n\nReference 3rd party licenses via SPDX",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "html_url": "https://github.com/nextcloud/server/commit/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/8ec53608b0b1f6fad1569933bc05b723bd2bd2fc/comments",
+ "author": {
+ "login": "AndyScherzinger",
+ "id": 1315170,
+ "node_id": "MDQ6VXNlcjEzMTUxNzA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1315170?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/AndyScherzinger",
+ "html_url": "https://github.com/AndyScherzinger",
+ "followers_url": "https://api.github.com/users/AndyScherzinger/followers",
+ "following_url": "https://api.github.com/users/AndyScherzinger/following{/other_user}",
+ "gists_url": "https://api.github.com/users/AndyScherzinger/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/AndyScherzinger/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/AndyScherzinger/subscriptions",
+ "organizations_url": "https://api.github.com/users/AndyScherzinger/orgs",
+ "repos_url": "https://api.github.com/users/AndyScherzinger/repos",
+ "events_url": "https://api.github.com/users/AndyScherzinger/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/AndyScherzinger/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "html_url": "https://github.com/nextcloud/server/commit/e3f6959c60d015a2e643492c0aac4d33d22c6409"
+ },
+ {
+ "sha": "0a6735c6bad7c266e37642c412793611e09b5194",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0a6735c6bad7c266e37642c412793611e09b5194",
+ "html_url": "https://github.com/nextcloud/server/commit/0a6735c6bad7c266e37642c412793611e09b5194"
+ }
+ ]
+ },
+ {
+ "sha": "e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "node_id": "C_kwDOA5c8_doAKGUzZjY5NTljNjBkMDE1YTJlNjQzNDkyYzBhYWM0ZDMzZDIyYzY0MDk",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-28T00:20:40Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-28T00:20:40Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "b42957ba79e7709d8d521f3154f3cc87d27a6b72",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b42957ba79e7709d8d521f3154f3cc87d27a6b72"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmZ+AdgACgkQEw2rhtP7\nNWxVFw/5AYvjsmdmMk5FrC78T18lXUuJadrSivfvPfAkdpRKWOwusJjqQsmPESOM\nma99JpHNCugJsDBTcLHiNGI/eznI4hckC/F0qFxXTWQHfrwVE7UEOVOgEXrJqwKk\niYiw1AZIBfQ+7GS57j61ChIlR34MVq1CZfsbrHdFhsCtlKLJ4A3pOZcuPi3du3zl\nvWzlAtM5kJYtzEY+T1pLEKUXHglas8YN6OJQg8kvJwnIh0WTa6hilqSLfc+w4SZM\nOj3h8j42e6SdLfO24pcn3pISGagVgoghnILvkfmalgHZjq5TOgCsQLXKRyQnngmn\nXechGOCeTHFh7VBIAK2WmpWDw4rf7CnOCCvS99CtQfe/vIfH31YAZzt7inszxzQq\nPzujEgIP1K8Kd5p8H8HDVGy0+ayQWvAL559tYjovZNhz1Xk4RH/ErifFPL5l1o/V\n4IbV5aiiStKx8t7tpuLh5ncqhjSE8fqToPc43uszE5xx4LMNr50hcXh6PHYZ3mFt\nd1xkWYKsSqYAZACYM/qqbXsgnv+KKFaiG7bemNytQV387tOdB2DntUa7tzFttO62\n1m7CELsm+PLIHVhZFgXmXhqS2csGzhxIVARTol6DynOxl1IyH6jniUWUQzcf5bTh\n6mK2C0GJDPHpLD/03jBiq2ELns/uN6KlQ1I9MrBB8tVZ4igqW0w=\n=N4r3\n-----END PGP SIGNATURE-----",
+ "payload": "tree b42957ba79e7709d8d521f3154f3cc87d27a6b72\nparent 00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae\nauthor Nextcloud bot 1719534040 +0000\ncommitter Nextcloud bot 1719534040 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "html_url": "https://github.com/nextcloud/server/commit/e3f6959c60d015a2e643492c0aac4d33d22c6409",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/e3f6959c60d015a2e643492c0aac4d33d22c6409/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "html_url": "https://github.com/nextcloud/server/commit/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae"
+ }
+ ]
+ },
+ {
+ "sha": "6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "node_id": "C_kwDOA5c8_doAKDY2MDFhZGNkNmRhMzNlM2Y4NzQ1MTU2MjY0Y2ViNzViMTk1OGVmZjU",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T14:22:42Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T14:22:42Z"
+ },
+ "message": "refactor(SetupCheck): Make mariadb and mysql version variables\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "da223943fcd97466e163b3bf518adea5940c7024",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/da223943fcd97466e163b3bf518adea5940c7024"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn11zAAKCRBF+ucmh2K0\nANrtAP4uQT/lSbmXcxD1bxDvPUFUYO8C8xzL9/DLpg/aXynWnQEAy/T5IMvPMXWi\nvDyi36NWejSYVrCH62eGks2ZEn3EoAA=\n=nMGk\n-----END PGP SIGNATURE-----",
+ "payload": "tree da223943fcd97466e163b3bf518adea5940c7024\nparent 6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd\nauthor Ferdinand Thiessen 1719498162 +0200\ncommitter Ferdinand Thiessen 1719498162 +0200\n\nrefactor(SetupCheck): Make mariadb and mysql version variables\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "html_url": "https://github.com/nextcloud/server/commit/6601adcd6da33e3f8745156264ceb75b1958eff5",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/6601adcd6da33e3f8745156264ceb75b1958eff5/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "html_url": "https://github.com/nextcloud/server/commit/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd"
+ }
+ ]
+ },
+ {
+ "sha": "6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "node_id": "C_kwDOA5c8_doAKDZlNDhjYTFjZjgxMWEzYTg0MTZhYTM3ZTlmYjRkYWFhYzgwMjhlY2Q",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-25T21:52:11Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T14:15:16Z"
+ },
+ "message": "fix(settings): Adjust SetupCheck for supported database versions\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "7b7b447f69f02a4377c1dd2e74d6ee8970fd3d86",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7b7b447f69f02a4377c1dd2e74d6ee8970fd3d86"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn1z9AAKCRBF+ucmh2K0\nANR/AQD+/c8Ehq6QTMpyJW59QIlYBm6yatGJk28lPiho44q+2AD/Q5tRHkFXnE/m\nffaRh8VVlwMnHHkVzMd0RGh3y6iXGAg=\n=m0bu\n-----END PGP SIGNATURE-----",
+ "payload": "tree 7b7b447f69f02a4377c1dd2e74d6ee8970fd3d86\nparent d5d180daf633a085b1e27f7ff3fe0f038fa321de\nauthor Ferdinand Thiessen 1719352331 +0200\ncommitter Ferdinand Thiessen 1719497716 +0200\n\nfix(settings): Adjust SetupCheck for supported database versions\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "html_url": "https://github.com/nextcloud/server/commit/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/6e48ca1cf811a3a8416aa37e9fb4daaac8028ecd/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "html_url": "https://github.com/nextcloud/server/commit/d5d180daf633a085b1e27f7ff3fe0f038fa321de"
+ }
+ ]
+ },
+ {
+ "sha": "d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "node_id": "C_kwDOA5c8_doAKGQ1ZDE4MGRhZjYzM2EwODViMWUyN2Y3ZmYzZmUwZjAzOGZhMzIxZGU",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-25T20:37:21Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T14:15:16Z"
+ },
+ "message": "ci: Adjust database versions to current LTS / supported versions\n\n* MySQL tests\n * Minimum 8.0 (LTS)\n * Maximum 8.4 (LTS)\n * Drop 8.3 as we now test 8.4 and 8.3 was never LTS\n* MariaDB tests\n * still supported version 10.3 (no LTS but for Ubuntu 20.04 support)\n * LTS 10.6\n * LTS 10.11\n * LTS 11.4\n * Drop 10.5 is was never LTS and we test 10.3 and 10.6\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "b7aa52749e71251f1a6f371d3bb1716c9881403b",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b7aa52749e71251f1a6f371d3bb1716c9881403b"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn1z9AAKCRBF+ucmh2K0\nAGF/AQCYVGgo0Gggc3yCt2gZt61wQOeNzuYLMX3dW4/nhM/rMAEAgaLFzhpt3P9m\nYga2OD4dDzTRdVj6u2rJi81jSj4COwo=\n=RRrl\n-----END PGP SIGNATURE-----",
+ "payload": "tree b7aa52749e71251f1a6f371d3bb1716c9881403b\nparent 00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae\nauthor Ferdinand Thiessen 1719347841 +0200\ncommitter Ferdinand Thiessen 1719497716 +0200\n\nci: Adjust database versions to current LTS / supported versions\n\n* MySQL tests\n * Minimum 8.0 (LTS)\n * Maximum 8.4 (LTS)\n * Drop 8.3 as we now test 8.4 and 8.3 was never LTS\n* MariaDB tests\n * still supported version 10.3 (no LTS but for Ubuntu 20.04 support)\n * LTS 10.6\n * LTS 10.11\n * LTS 11.4\n * Drop 10.5 is was never LTS and we test 10.3 and 10.6\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "html_url": "https://github.com/nextcloud/server/commit/d5d180daf633a085b1e27f7ff3fe0f038fa321de",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d5d180daf633a085b1e27f7ff3fe0f038fa321de/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "html_url": "https://github.com/nextcloud/server/commit/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae"
+ }
+ ]
+ },
+ {
+ "sha": "00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "node_id": "C_kwDOA5c8_doAKDAwYWE4ZjU0Mzg0MWM2YmZkODUzYTNhYzVjYjRmZjNhYjBhMDU4YWU",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "213943+nickvergessen@users.noreply.github.com",
+ "date": "2024-06-27T12:59:19Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T12:59:19Z"
+ },
+ "message": "Merge pull request #46133 from nextcloud/bugfix/noid/fix-missing-protocol-on-remotes\n\nfix(federation): Fix missing protocol on CloudID remote",
+ "tree": {
+ "sha": "b47151ce86cfd6c5ea2ea3313c6775406e4ad1ca",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b47151ce86cfd6c5ea2ea3313c6775406e4ad1ca"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfWInCRC1aQ7uu5UhlAAAPvQQAB/rnVBxKuKFm7/5Z/mthdhx\nQnQ281rFdepo2srBeTPj7dcHTZA+Ffd1gTB9i1eWhqTbK99wWZmUgFGrq9LTUpmT\n181jltNHH4D9J2h5+chGBRYp/vlpKO+Rlj8L6VHxFI9gmJIJTi1v4OVEG6dbc1rh\niqNgBA+DSGHEiUO55DTgFWcWqRR0+8i74IQpbcU+wd6HeA4QSjg1I7BctE8nU4P3\nP0H42Ow9hxOPiHBAm2Gd3Ut1N4ZnQQ1QGNfpkl0gtBW5PbCpKGnGvZhh1gad1bNt\n6WjMRL+CDvJatljI9WQhcF7hlruK0fA6xDWnCN8Y1frb2RSoFbrDsDxUV40ttnz/\ni6zx4rpp6ZHL3N3UIrpUaqz/hsVs4oorMRTP/+uuBi5ShI4SoehgFyU9siOQsiV1\nrta35WmnAbytK0G4dBe4Ljf+XRrKd2Va5qbZg/6RuBgN0t4tUhRHmSStPtRqWHQe\nCn+Gtzi2S4yC8kTB9sX4U0FY2+0XcPyfNpIaFh3LeJbZJvD03InTU8Ov/eh1POpI\nPI51HBUM9Oyq6arQYpq+0CcO5HOruVJai0H7xu8Ii6Bzpqk9PAVqTdgih+M28dxI\nQLuLUQ0M9U8qBdAZCUZHvJwRPKO4iJHA5t4FlRHQ1O6kxo9DeJ3nNZA6CziTgQK4\n1Ah+c6iE8CpJch5qFzDo\n=5C5c\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree b47151ce86cfd6c5ea2ea3313c6775406e4ad1ca\nparent 1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8\nparent 280d70a5f42309b28df0baf675893abed2a391a2\nauthor Joas Schilling <213943+nickvergessen@users.noreply.github.com> 1719493159 +0200\ncommitter GitHub 1719493159 +0200\n\nMerge pull request #46133 from nextcloud/bugfix/noid/fix-missing-protocol-on-remotes\n\nfix(federation): Fix missing protocol on CloudID remote",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "html_url": "https://github.com/nextcloud/server/commit/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/00aa8f543841c6bfd853a3ac5cb4ff3ab0a058ae/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "html_url": "https://github.com/nextcloud/server/commit/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8"
+ },
+ {
+ "sha": "280d70a5f42309b28df0baf675893abed2a391a2",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/280d70a5f42309b28df0baf675893abed2a391a2",
+ "html_url": "https://github.com/nextcloud/server/commit/280d70a5f42309b28df0baf675893abed2a391a2"
+ }
+ ]
+ },
+ {
+ "sha": "1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "node_id": "C_kwDOA5c8_doAKDFiNDljODY0ODA4ZGQ5NWQwNjljZjRmZmU0YzNmYjE3OTRhYThjYTg",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "213943+nickvergessen@users.noreply.github.com",
+ "date": "2024-06-27T12:48:26Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T12:48:26Z"
+ },
+ "message": "Merge pull request #45947 from nextcloud/feat/qbmapper-yield-entities\n\nfeat: Add yieldEntities wrapper for entity mapping in QBMapper",
+ "tree": {
+ "sha": "86fbee0f1a7c40056cb76e275dd07de3260807c2",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/86fbee0f1a7c40056cb76e275dd07de3260807c2"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfV+aCRC1aQ7uu5UhlAAAJj4QAKvda910Cpn8j8x4F0i1JWHT\nIZTq44wjCBRsOFo3ta+3tNe7/N350i+9Cbw3TEkSdjo9a9MjUyapwCAd/KYa1YsO\nn8L/K97DxYT0mSfInKXBlHvhDq67MR8nBU9H/8SUl5p3yxSxmUMu9qWq7qaxxb4Z\n8mLQHOlB2XLm7aTZxfXOwZowMtWs2GYAqYekgImCPmbjO8KoyCBA2G1sRSHv3yDM\nMdsUFcWJviPs9+cNWdJgcdrsaPDkeTUbFESrFLp5mWyzo++gtZEFxhRt60yLxhz7\nYfSn6RU+xRbQU6UENUkG2M3lOZHfnDC0ue3Xduq/R/219io1ApLFKso90q9SYrF7\n1OPLO6vZhh6Jti2FEiUmm79PSpsrXu8YTV52HtZSCDs85nCa0MxIL1LTbbksyJgC\nUx2HfyzBtFWum1Wvlmn3oAj1jb56GUszVfs9W+dxJfldLuI357XGcBDpXPaPCqS7\nmo/9ftRxq/GWE55cOpN7BhJX6EL0oJgI1HrZrv7ufmDfCWHBbQFmlCnHzE8eD08N\n7SxqIA3nLA3xCNzKHx4ifriiRBaWXw4DehU4Okef/OC1fustZD8BXbefGpjd7mAX\nMuYUjF7q44WPYq5Mf4X/0rtDUcgaUVwAhWN07mDMgzNYHnIWDCN5SqQJRiS+KjSt\na36w0817gVm2PdjJ000B\n=97x6\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 86fbee0f1a7c40056cb76e275dd07de3260807c2\nparent a1841619786aced457ce67a5e4b657a06c40199c\nparent 2fb0ca9cf7929b3527f2068e19a690c371191b72\nauthor Joas Schilling <213943+nickvergessen@users.noreply.github.com> 1719492506 +0200\ncommitter GitHub 1719492506 +0200\n\nMerge pull request #45947 from nextcloud/feat/qbmapper-yield-entities\n\nfeat: Add yieldEntities wrapper for entity mapping in QBMapper",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "html_url": "https://github.com/nextcloud/server/commit/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1b49c864808dd95d069cf4ffe4c3fb1794aa8ca8/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "a1841619786aced457ce67a5e4b657a06c40199c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/a1841619786aced457ce67a5e4b657a06c40199c",
+ "html_url": "https://github.com/nextcloud/server/commit/a1841619786aced457ce67a5e4b657a06c40199c"
+ },
+ {
+ "sha": "2fb0ca9cf7929b3527f2068e19a690c371191b72",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2fb0ca9cf7929b3527f2068e19a690c371191b72",
+ "html_url": "https://github.com/nextcloud/server/commit/2fb0ca9cf7929b3527f2068e19a690c371191b72"
+ }
+ ]
+ },
+ {
+ "sha": "a1841619786aced457ce67a5e4b657a06c40199c",
+ "node_id": "C_kwDOA5c8_doAKGExODQxNjE5Nzg2YWNlZDQ1N2NlNjdhNWU0YjY1N2EwNmM0MDE5OWM",
+ "commit": {
+ "author": {
+ "name": "Simon L",
+ "email": "szaimen@e.mail.de",
+ "date": "2024-06-27T11:34:05Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T11:34:05Z"
+ },
+ "message": "Merge pull request #41609 from nextcloud/enh/in-app-search\n\nfeat: In app search",
+ "tree": {
+ "sha": "c87436ccad2115fdb2552c348fc62e98179f579e",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/c87436ccad2115fdb2552c348fc62e98179f579e"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/a1841619786aced457ce67a5e4b657a06c40199c",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfU4tCRC1aQ7uu5UhlAAAg5QQAIEgpUG3YOTfRPdj6o1UWHVA\nmSeLyD+2gWdWiECfNz4z/537ZjbFOIWAfGjW6g1A/VF/IsNt691m8b4T4fGSDD1o\namEMVc3eMKGQ/XnzgWgU+9YUKMRS7K1ieyaf3FG3GHiznor1ztqLzW3yU2rlRBdh\nQxwAm9UCGW9VsYhG6RBiXZJgounNr928aHySPRlGbHW4yALLRcWJOuxpMxUyWHZd\nel7s9IPcTFfBTLIMZ+4m2rDo84JdCSV2RKScPkxiQMhukvcNqqn2rcEbuSEfglxK\noHfuR8WDyRzcpXzI+Kj5tFXg9NnQTsmFcIrpxdzCnxkfJ+j7NXRim3AAp05V7L0f\nYGbvJvFbo1d6QUDEodHTDpFXJQCACrCqi38jfZXolNyjweuEA/R4bwzpuL3DhbQd\nepJ2/GrUDICcO/2MKRPUZ6oiOCmgug4K5tYwadf+L66wJgpQcKQowTAEGgYaAoX3\n25f3wRcOa/mJbx/gd2cGrTBP5MKy/VA7H6eIowwg/lfLAswXQrJ5rVYoq8D2W5WI\nFpANaRO8wiD7Zn20gYmJ8Kdh06I9dv9gxVzwy4ekGk3sdxa7EmsdW1Jz0uSxDuQw\nqKYRIWr9go7IaMYuuww4F7YwESma4koNYPVfEJPtRnEEgf2kXeKKuKrgkPLctvso\nqa5uSLf32wubGqa9BIP9\n=7pMC\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree c87436ccad2115fdb2552c348fc62e98179f579e\nparent ff499a6baa49916898f01d1cb8573883a87dca3f\nparent 32940375dad4237a603b725c7d56522d7f881134\nauthor Simon L 1719488045 +0200\ncommitter GitHub 1719488045 +0200\n\nMerge pull request #41609 from nextcloud/enh/in-app-search\n\nfeat: In app search",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/a1841619786aced457ce67a5e4b657a06c40199c",
+ "html_url": "https://github.com/nextcloud/server/commit/a1841619786aced457ce67a5e4b657a06c40199c",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/a1841619786aced457ce67a5e4b657a06c40199c/comments",
+ "author": {
+ "login": "szaimen",
+ "id": 42591237,
+ "node_id": "MDQ6VXNlcjQyNTkxMjM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/42591237?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/szaimen",
+ "html_url": "https://github.com/szaimen",
+ "followers_url": "https://api.github.com/users/szaimen/followers",
+ "following_url": "https://api.github.com/users/szaimen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/szaimen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/szaimen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/szaimen/subscriptions",
+ "organizations_url": "https://api.github.com/users/szaimen/orgs",
+ "repos_url": "https://api.github.com/users/szaimen/repos",
+ "events_url": "https://api.github.com/users/szaimen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/szaimen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "html_url": "https://github.com/nextcloud/server/commit/ff499a6baa49916898f01d1cb8573883a87dca3f"
+ },
+ {
+ "sha": "32940375dad4237a603b725c7d56522d7f881134",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/32940375dad4237a603b725c7d56522d7f881134",
+ "html_url": "https://github.com/nextcloud/server/commit/32940375dad4237a603b725c7d56522d7f881134"
+ }
+ ]
+ },
+ {
+ "sha": "ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "node_id": "C_kwDOA5c8_doAKGZmNDk5YTZiYWE0OTkxNjg5OGYwMWQxY2I4NTczODgzYTg3ZGNhM2Y",
+ "commit": {
+ "author": {
+ "name": "Arthur Schiwon",
+ "email": "blizzz@arthur-schiwon.de",
+ "date": "2024-06-27T10:40:06Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T10:40:06Z"
+ },
+ "message": "Merge pull request #45951 from nextcloud/chore/comments-event-legacy\n\nchore: Move comments event handler to use proper event dispatcher",
+ "tree": {
+ "sha": "1ea884c74bfa7c1c0c55528594e2c377877e1873",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/1ea884c74bfa7c1c0c55528594e2c377877e1873"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfUGGCRC1aQ7uu5UhlAAAC0gQAEYeS1BuTvloKR5lLtBlWfIk\n1z7IPnmDZhXMkdT4Z7F263aGRR4cU1m+Su2fkLH28h66zp6/4jBUADCn3cXi5xKa\neDtYXoDOyIfxZ8WWV29H1s3i2oaS1Yr0ZEl0HSGe36fEX+CSM2K2T9K7GCaQ6Xje\nWgZ48IZC8Ciy62GpKXWtZSQv1TrUM6vVOnq/Bki4OvIeaX8wPbkRj/+hN62aVmVi\nmrurhbr8QU8FPiJtpE5WvuOeIOJBlkj6Ak95e8urxkDgE6+6AwGCXFBmvcna5AOQ\nIJtJyCcPD3uQdKw+ue6JmoVJo1Qc6NFAcLbLyQv1pVTjEozAFrjtjEPCSakXIyqG\naVSNmXMvPHIYWAeN2iDVxhJFTzUCi/H+h+VgOEMp3XLlCBo9gnmmJ5WDcHbbqEGP\ndVuMryXkakWtLpnponZ7EpcTsg0QEZbC68dVkHCByUhNakpor0eWWHlC2QC/6cpV\nIo9zG9oW35n4HCfGrwJdHkGW719sNDKIB9pK2K1rQo04vN2PS5X521Eh8uF/Iw45\n3hEEp75NSmlIKBT86FNB8HkPLJgkwkiovHgbvP9lgweRt2PVUNohBZUYhFc+DPgI\n6HEYown95CVlEY4prXaAvpnlFPq4BkDaQdNQH4kJs9qDRKdzGZQzun9+HIzR7ayt\n468IfKWXFV2BSM8hYCB+\n=H3g/\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 1ea884c74bfa7c1c0c55528594e2c377877e1873\nparent 2482688fa09d7dc477ad0d23049d55b62d5b3d6c\nparent 9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27\nauthor Arthur Schiwon 1719484806 +0200\ncommitter GitHub 1719484806 +0200\n\nMerge pull request #45951 from nextcloud/chore/comments-event-legacy\n\nchore: Move comments event handler to use proper event dispatcher",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "html_url": "https://github.com/nextcloud/server/commit/ff499a6baa49916898f01d1cb8573883a87dca3f",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ff499a6baa49916898f01d1cb8573883a87dca3f/comments",
+ "author": {
+ "login": "blizzz",
+ "id": 2184312,
+ "node_id": "MDQ6VXNlcjIxODQzMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2184312?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/blizzz",
+ "html_url": "https://github.com/blizzz",
+ "followers_url": "https://api.github.com/users/blizzz/followers",
+ "following_url": "https://api.github.com/users/blizzz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blizzz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blizzz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blizzz/subscriptions",
+ "organizations_url": "https://api.github.com/users/blizzz/orgs",
+ "repos_url": "https://api.github.com/users/blizzz/repos",
+ "events_url": "https://api.github.com/users/blizzz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blizzz/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "html_url": "https://github.com/nextcloud/server/commit/2482688fa09d7dc477ad0d23049d55b62d5b3d6c"
+ },
+ {
+ "sha": "9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "html_url": "https://github.com/nextcloud/server/commit/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27"
+ }
+ ]
+ },
+ {
+ "sha": "9a5ab7330a5c83f84f596690e8b22693686ebdd8",
+ "node_id": "C_kwDOA5c8_doAKDlhNWFiNzMzMGE1YzgzZjg0ZjU5NjY5MGU4YjIyNjkzNjg2ZWJkZDg",
+ "commit": {
+ "author": {
+ "name": "Côme Chilliet",
+ "email": "come.chilliet@nextcloud.com",
+ "date": "2024-06-27T10:26:53Z"
+ },
+ "committer": {
+ "name": "Côme Chilliet",
+ "email": "come.chilliet@nextcloud.com",
+ "date": "2024-06-27T10:26:53Z"
+ },
+ "message": "feat(profiler): Add support for profiler in occ commands\n\nCommands will appear in available profiles after the command ran.\nMethod is set to \"occ\" and URL to the command line with parameters.\n\nSigned-off-by: Côme Chilliet ",
+ "tree": {
+ "sha": "02c6888783063c0e5604cb8fbaf6f8d072afb181",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/02c6888783063c0e5604cb8fbaf6f8d072afb181"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9a5ab7330a5c83f84f596690e8b22693686ebdd8",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEE639JSH6d6mxZhJ+ko+L2WLKMdgoFAmZ9PqEACgkQo+L2WLKM\ndgpc1wgAqLIeKDTHrtHN5jdOh7pnJXFqYIA4vMsAtZf9kVm5m3XG8yIFoF3ZMe7t\nLHXM8IoP05EOK3/ONr+NL/KXQXkMCUhZNPi3855AihWOoCq9I340fa/omoFEkjyr\nldNqZ0pLDW01GgxzzL2lfgtmIEWSyGwdDtisv+a0mf2bT4xXrOTxJrbuEoNXhN7F\nkViI/Od4UkWFW+RD7LHbO65Nd6TrK1LZ8vNM5oHP3p5iTNVNG6It9L/JbK5for75\nGOD8XM+zvnatr+S4eTpIhtbLgPhY7oG+to7cD9PO4JXWDtI5QSa2ifdDC6Aeu6a+\n/9Yp1hkzRJKmREyeu9qc65FdKs9HIg==\n=QJzw\n-----END PGP SIGNATURE-----",
+ "payload": "tree 02c6888783063c0e5604cb8fbaf6f8d072afb181\nparent 01dbb8fca2d6e0af48847e39048a529cc2e9fcb0\nauthor Côme Chilliet 1719484013 +0200\ncommitter Côme Chilliet 1719484013 +0200\n\nfeat(profiler): Add support for profiler in occ commands\n\nCommands will appear in available profiles after the command ran.\nMethod is set to \"occ\" and URL to the command line with parameters.\n\nSigned-off-by: Côme Chilliet \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9a5ab7330a5c83f84f596690e8b22693686ebdd8",
+ "html_url": "https://github.com/nextcloud/server/commit/9a5ab7330a5c83f84f596690e8b22693686ebdd8",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9a5ab7330a5c83f84f596690e8b22693686ebdd8/comments",
+ "author": {
+ "login": "come-nc",
+ "id": 91878298,
+ "node_id": "U_kgDOBXnzmg",
+ "avatar_url": "https://avatars.githubusercontent.com/u/91878298?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/come-nc",
+ "html_url": "https://github.com/come-nc",
+ "followers_url": "https://api.github.com/users/come-nc/followers",
+ "following_url": "https://api.github.com/users/come-nc/following{/other_user}",
+ "gists_url": "https://api.github.com/users/come-nc/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/come-nc/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/come-nc/subscriptions",
+ "organizations_url": "https://api.github.com/users/come-nc/orgs",
+ "repos_url": "https://api.github.com/users/come-nc/repos",
+ "events_url": "https://api.github.com/users/come-nc/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/come-nc/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "come-nc",
+ "id": 91878298,
+ "node_id": "U_kgDOBXnzmg",
+ "avatar_url": "https://avatars.githubusercontent.com/u/91878298?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/come-nc",
+ "html_url": "https://github.com/come-nc",
+ "followers_url": "https://api.github.com/users/come-nc/followers",
+ "following_url": "https://api.github.com/users/come-nc/following{/other_user}",
+ "gists_url": "https://api.github.com/users/come-nc/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/come-nc/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/come-nc/subscriptions",
+ "organizations_url": "https://api.github.com/users/come-nc/orgs",
+ "repos_url": "https://api.github.com/users/come-nc/repos",
+ "events_url": "https://api.github.com/users/come-nc/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/come-nc/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "html_url": "https://github.com/nextcloud/server/commit/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0"
+ }
+ ]
+ },
+ {
+ "sha": "01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "node_id": "C_kwDOA5c8_doAKDAxZGJiOGZjYTJkNmUwYWY0ODg0N2UzOTA0OGE1MjljYzJlOWZjYjA",
+ "commit": {
+ "author": {
+ "name": "Côme Chilliet",
+ "email": "come.chilliet@nextcloud.com",
+ "date": "2024-06-27T10:25:20Z"
+ },
+ "committer": {
+ "name": "Côme Chilliet",
+ "email": "come.chilliet@nextcloud.com",
+ "date": "2024-06-27T10:25:20Z"
+ },
+ "message": "fix(profiler): Remove bogus profiler event start\n\nThis fixes profiler event graph by removing an event start which had no\n matching end() call.\n\nSigned-off-by: Côme Chilliet ",
+ "tree": {
+ "sha": "5f3f34a664c3e96fda0f47b13618378c9127d44e",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/5f3f34a664c3e96fda0f47b13618378c9127d44e"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEE639JSH6d6mxZhJ+ko+L2WLKMdgoFAmZ9Pj4ACgkQo+L2WLKM\ndgobggf/fK6FdUA8cAkhU6fDmhSsiNlCryNsgg0owOV2zfJl7QOXtxZxQWdUoC+U\nXaWJL0GsuHOmzaRdR+FQx2k8tHHsIYnnHAtjvqH5SwKCTcxLoep9JBLuT7xibRw6\nfAPHvJNgOIBg4lngUhgkYu61y2jcwhucA98rYn4n9475MhFGDF3Tb7dHMiapwz1j\nePL772bCbM8jfK6jo58VMlOF9scPoKbhQwqNyDjeC2PCjBVorO91FjvGEHZPU4Q9\nBe9dDpIqjqw0CJTQnd6S/bn7bnC8BHCzBw5vxKtMSpGyde4rTBn8fU+7yeD3muQB\nBWe/2nS5zRVq/EnuAqLbD+dKiMPSSA==\n=N0ph\n-----END PGP SIGNATURE-----",
+ "payload": "tree 5f3f34a664c3e96fda0f47b13618378c9127d44e\nparent 02452712a20b9be2c638e9bea80102b9926d482b\nauthor Côme Chilliet 1719483920 +0200\ncommitter Côme Chilliet 1719483920 +0200\n\nfix(profiler): Remove bogus profiler event start\n\nThis fixes profiler event graph by removing an event start which had no\n matching end() call.\n\nSigned-off-by: Côme Chilliet \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "html_url": "https://github.com/nextcloud/server/commit/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/01dbb8fca2d6e0af48847e39048a529cc2e9fcb0/comments",
+ "author": {
+ "login": "come-nc",
+ "id": 91878298,
+ "node_id": "U_kgDOBXnzmg",
+ "avatar_url": "https://avatars.githubusercontent.com/u/91878298?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/come-nc",
+ "html_url": "https://github.com/come-nc",
+ "followers_url": "https://api.github.com/users/come-nc/followers",
+ "following_url": "https://api.github.com/users/come-nc/following{/other_user}",
+ "gists_url": "https://api.github.com/users/come-nc/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/come-nc/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/come-nc/subscriptions",
+ "organizations_url": "https://api.github.com/users/come-nc/orgs",
+ "repos_url": "https://api.github.com/users/come-nc/repos",
+ "events_url": "https://api.github.com/users/come-nc/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/come-nc/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "come-nc",
+ "id": 91878298,
+ "node_id": "U_kgDOBXnzmg",
+ "avatar_url": "https://avatars.githubusercontent.com/u/91878298?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/come-nc",
+ "html_url": "https://github.com/come-nc",
+ "followers_url": "https://api.github.com/users/come-nc/followers",
+ "following_url": "https://api.github.com/users/come-nc/following{/other_user}",
+ "gists_url": "https://api.github.com/users/come-nc/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/come-nc/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/come-nc/subscriptions",
+ "organizations_url": "https://api.github.com/users/come-nc/orgs",
+ "repos_url": "https://api.github.com/users/come-nc/repos",
+ "events_url": "https://api.github.com/users/come-nc/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/come-nc/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "02452712a20b9be2c638e9bea80102b9926d482b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/02452712a20b9be2c638e9bea80102b9926d482b",
+ "html_url": "https://github.com/nextcloud/server/commit/02452712a20b9be2c638e9bea80102b9926d482b"
+ }
+ ]
+ },
+ {
+ "sha": "32940375dad4237a603b725c7d56522d7f881134",
+ "node_id": "C_kwDOA5c8_doAKDMyOTQwMzc1ZGFkNDIzN2E2MDNiNzI1YzdkNTY1MjJkN2Y4ODExMzQ",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-26T18:42:34Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:18Z"
+ },
+ "message": "chore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "538e3aebd531111d4df300fb952f1754b95316fe",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/538e3aebd531111d4df300fb952f1754b95316fe"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/32940375dad4237a603b725c7d56522d7f881134",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07PgAKCRBF+ucmh2K0\nAIn8AQCY6yMk0CeIwtbkreoRSh2wpazV3RU6VM4KspxbBmnTggD+MBwklUq33YbP\nXybQxWhL0BGg/t1827MzejuPjkl0pAE=\n=VA7E\n-----END PGP SIGNATURE-----",
+ "payload": "tree 538e3aebd531111d4df300fb952f1754b95316fe\nparent 362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5\nauthor Ferdinand Thiessen 1719427354 +0200\ncommitter Ferdinand Thiessen 1719483198 +0200\n\nchore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/32940375dad4237a603b725c7d56522d7f881134",
+ "html_url": "https://github.com/nextcloud/server/commit/32940375dad4237a603b725c7d56522d7f881134",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/32940375dad4237a603b725c7d56522d7f881134/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "html_url": "https://github.com/nextcloud/server/commit/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5"
+ }
+ ]
+ },
+ {
+ "sha": "362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "node_id": "C_kwDOA5c8_doAKDM2MmM2MjM4ZmNhZGI3NGM1NGMyYThjN2IyYzEyYzVhMTAxMWMwYjU",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-26T22:00:53Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "fix: Allow to reset unified search using the `nextcloud:unified-search:reset` event\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "788796ae091291c2753905616f6a6db3aaa02464",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/788796ae091291c2753905616f6a6db3aaa02464"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07PgAKCRBF+ucmh2K0\nALdZAP9460v0feeEe0c13g6VcVO6JMGeqeCWIpyYytK6PmQNqAEA2y7fdnPKXJhZ\n48WiuHraXiOPVp9r1BXnMcEyf7W1ugk=\n=WRKW\n-----END PGP SIGNATURE-----",
+ "payload": "tree 788796ae091291c2753905616f6a6db3aaa02464\nparent dd3dcf37039ed969b1a2f6b89941a65ccf73b696\nauthor Ferdinand Thiessen 1719439253 +0200\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nfix: Allow to reset unified search using the `nextcloud:unified-search:reset` event\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "html_url": "https://github.com/nextcloud/server/commit/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/362c6238fcadb74c54c2a8c7b2c12c5a1011c0b5/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "html_url": "https://github.com/nextcloud/server/commit/dd3dcf37039ed969b1a2f6b89941a65ccf73b696"
+ }
+ ]
+ },
+ {
+ "sha": "dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "node_id": "C_kwDOA5c8_doAKGRkM2RjZjM3MDM5ZWQ5NjliMWEyZjZiODk5NDFhNjVjY2Y3M2I2OTY",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-26T17:16:59Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "fix(unified-search): Also show local search on apps management\n\nCo-authored-by: Simon L. \nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "0a5705f3c902a10a0acfb7b9f2cafd67551cf638",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/0a5705f3c902a10a0acfb7b9f2cafd67551cf638"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07OgAKCRBF+ucmh2K0\nABpbAQDSZ8JwsiK2TZH74v4Bwzr1XEx4LwOBjzSH1eIYicLgHQD9FglCGhYAv9YD\n6g+iv8XNnI8ryrv/kDEweGfg6KZQLgk=\n=I4mt\n-----END PGP SIGNATURE-----",
+ "payload": "tree 0a5705f3c902a10a0acfb7b9f2cafd67551cf638\nparent e9dccef474318cfe80dea49852a2dadbad06d60b\nauthor Ferdinand Thiessen 1719422219 +0200\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nfix(unified-search): Also show local search on apps management\n\nCo-authored-by: Simon L. \nSigned-off-by: Ferdinand Thiessen ",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "html_url": "https://github.com/nextcloud/server/commit/dd3dcf37039ed969b1a2f6b89941a65ccf73b696",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/dd3dcf37039ed969b1a2f6b89941a65ccf73b696/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "html_url": "https://github.com/nextcloud/server/commit/e9dccef474318cfe80dea49852a2dadbad06d60b"
+ }
+ ]
+ },
+ {
+ "sha": "e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "node_id": "C_kwDOA5c8_doAKGU5ZGNjZWY0NzQzMThjZmU4MGRlYTQ5ODUyYTJkYWRiYWQwNmQ2MGI",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-25T22:36:59Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "fix: Open unified search by pressing `ctrl + F`\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "7278f15dec1e3b7a82521d7916b4f7843054e5e7",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7278f15dec1e3b7a82521d7916b4f7843054e5e7"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07OgAKCRBF+ucmh2K0\nAGTGAQDS4aQT03Dxg2VfKa1FHi8KogTXz2lTj1/rQzGUwKr/7QEA4JwNDzH3HhEA\n3bzoOqPTniRUQTViOUX3dvPW6hGmdgY=\n=pwQ5\n-----END PGP SIGNATURE-----",
+ "payload": "tree 7278f15dec1e3b7a82521d7916b4f7843054e5e7\nparent 0885245235da5cdc77072980cb71475cbfb15e37\nauthor Ferdinand Thiessen 1719355019 +0200\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nfix: Open unified search by pressing `ctrl + F`\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "html_url": "https://github.com/nextcloud/server/commit/e9dccef474318cfe80dea49852a2dadbad06d60b",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/e9dccef474318cfe80dea49852a2dadbad06d60b/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "0885245235da5cdc77072980cb71475cbfb15e37",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0885245235da5cdc77072980cb71475cbfb15e37",
+ "html_url": "https://github.com/nextcloud/server/commit/0885245235da5cdc77072980cb71475cbfb15e37"
+ }
+ ]
+ },
+ {
+ "sha": "0885245235da5cdc77072980cb71475cbfb15e37",
+ "node_id": "C_kwDOA5c8_doAKDA4ODUyNDUyMzVkYTVjZGM3NzA3Mjk4MGNiNzE0NzVjYmZiMTVlMzc",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-25T19:14:50Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "refactor(styles): Make padding not a magic value\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "5aa04e99779d339bb899de305d4439312e002c81",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/5aa04e99779d339bb899de305d4439312e002c81"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0885245235da5cdc77072980cb71475cbfb15e37",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07OgAKCRBF+ucmh2K0\nAOMJAQDVNMwXzn3br+prJumNE/JFVjefjjIrulb1ZiR3JhTchwD+MVQ1CqYO+DO8\nzG3K3GbbKJ/tAL+iYq2aD4tjmEX6pwY=\n=I1eW\n-----END PGP SIGNATURE-----",
+ "payload": "tree 5aa04e99779d339bb899de305d4439312e002c81\nparent 0ff17b857b22dbd296471b5b3d6580742a437553\nauthor Ferdinand Thiessen 1719342890 +0200\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nrefactor(styles): Make padding not a magic value\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0885245235da5cdc77072980cb71475cbfb15e37",
+ "html_url": "https://github.com/nextcloud/server/commit/0885245235da5cdc77072980cb71475cbfb15e37",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0885245235da5cdc77072980cb71475cbfb15e37/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "0ff17b857b22dbd296471b5b3d6580742a437553",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0ff17b857b22dbd296471b5b3d6580742a437553",
+ "html_url": "https://github.com/nextcloud/server/commit/0ff17b857b22dbd296471b5b3d6580742a437553"
+ }
+ ]
+ },
+ {
+ "sha": "0ff17b857b22dbd296471b5b3d6580742a437553",
+ "node_id": "C_kwDOA5c8_doAKDBmZjE3Yjg1N2IyMmRiZDI5NjQ3MWI1YjNkNjU4MDc0MmE0Mzc1NTM",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-26T09:22:27Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "fix(UnifiedSearch): Implement design comments and focus input on open\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "65bec1ca99d7e4b3936edc6ad3185b0356a4ee91",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/65bec1ca99d7e4b3936edc6ad3185b0356a4ee91"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0ff17b857b22dbd296471b5b3d6580742a437553",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07OgAKCRBF+ucmh2K0\nAF97AQD3ClEcbrVTzG0No30H7Wi86iLxFv3XJjroOWYlaNGDNwD+I5ae2JMDs/S4\nt1/qYaqyMdtqBmOJsrMVHWM+UzJJLgU=\n=41ea\n-----END PGP SIGNATURE-----",
+ "payload": "tree 65bec1ca99d7e4b3936edc6ad3185b0356a4ee91\nparent 6ee965f0d92f3538ae5b44249d929fe741a371c0\nauthor Ferdinand Thiessen 1719393747 +0200\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nfix(UnifiedSearch): Implement design comments and focus input on open\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0ff17b857b22dbd296471b5b3d6580742a437553",
+ "html_url": "https://github.com/nextcloud/server/commit/0ff17b857b22dbd296471b5b3d6580742a437553",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0ff17b857b22dbd296471b5b3d6580742a437553/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "html_url": "https://github.com/nextcloud/server/commit/6ee965f0d92f3538ae5b44249d929fe741a371c0"
+ }
+ ]
+ },
+ {
+ "sha": "6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "node_id": "C_kwDOA5c8_doAKDZlZTk2NWYwZDkyZjM1MzhhZTViNDQyNDlkOTI5ZmU3NDFhMzcxYzA",
+ "commit": {
+ "author": {
+ "name": "Marco Ambrosini",
+ "email": "marcoambrosini@icloud.com",
+ "date": "2023-11-20T06:45:45Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T10:13:14Z"
+ },
+ "message": "feat: Add in-app search\n\nCo-authored-by: Ferdinand Thiessen \nSigned-off-by: Marco Ambrosini ",
+ "tree": {
+ "sha": "cad7006d17922618f07a33ff1d920a8843135957",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/cad7006d17922618f07a33ff1d920a8843135957"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZn07OgAKCRBF+ucmh2K0\nANGIAP91xzyl9xeGBKuY4O9HzPd2wgtpKzMZbw9IXlU5I50qTwEA8pv/A0jn5Awl\nz6zoKON3jfAHSHbHKlTns1cEYWEx/Ao=\n=apTF\n-----END PGP SIGNATURE-----",
+ "payload": "tree cad7006d17922618f07a33ff1d920a8843135957\nparent 2482688fa09d7dc477ad0d23049d55b62d5b3d6c\nauthor Marco Ambrosini 1700462745 +0900\ncommitter Ferdinand Thiessen 1719483194 +0200\n\nfeat: Add in-app search\n\nCo-authored-by: Ferdinand Thiessen \nSigned-off-by: Marco Ambrosini \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "html_url": "https://github.com/nextcloud/server/commit/6ee965f0d92f3538ae5b44249d929fe741a371c0",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/6ee965f0d92f3538ae5b44249d929fe741a371c0/comments",
+ "author": {
+ "login": "marcoambrosini",
+ "id": 26852655,
+ "node_id": "MDQ6VXNlcjI2ODUyNjU1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/26852655?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/marcoambrosini",
+ "html_url": "https://github.com/marcoambrosini",
+ "followers_url": "https://api.github.com/users/marcoambrosini/followers",
+ "following_url": "https://api.github.com/users/marcoambrosini/following{/other_user}",
+ "gists_url": "https://api.github.com/users/marcoambrosini/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/marcoambrosini/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/marcoambrosini/subscriptions",
+ "organizations_url": "https://api.github.com/users/marcoambrosini/orgs",
+ "repos_url": "https://api.github.com/users/marcoambrosini/repos",
+ "events_url": "https://api.github.com/users/marcoambrosini/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/marcoambrosini/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "html_url": "https://github.com/nextcloud/server/commit/2482688fa09d7dc477ad0d23049d55b62d5b3d6c"
+ }
+ ]
+ },
+ {
+ "sha": "280d70a5f42309b28df0baf675893abed2a391a2",
+ "node_id": "C_kwDOA5c8_doAKDI4MGQ3MGE1ZjQyMzA5YjI4ZGYwYmFmNjc1ODkzYWJlZDJhMzkxYTI",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-26T08:40:31Z"
+ },
+ "committer": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-27T09:26:08Z"
+ },
+ "message": "fix(federation): Fix missing protocol on CloudID remote\n\nSigned-off-by: Joas Schilling ",
+ "tree": {
+ "sha": "d13cfa72cc6958f85eea11322cfa9c89d164b7d2",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/d13cfa72cc6958f85eea11322cfa9c89d164b7d2"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/280d70a5f42309b28df0baf675893abed2a391a2",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEhhI8M8Le0SUBV/hKxACq8gwbtvwFAmZ9MDMACgkQxACq8gwb\ntvz+4A/+Iclbmq88IGw96DMMgr6VvpJ7u6agLigG2Gqg5YI9CcQ1bW6iX/p9pdUG\nE749fACROJLGNNHQ0gbbx6Do14oiX3D7xw5AP4N+kaFKP32awvDGIcBdjN1gTy90\nWuinoZj6uZmOePjT1Qc2IAVfal6/ROEM3n8D4OntWsA9PGdP5AjZXDCFxY0LS/NP\n1yLouQSGCcC3wxe3DLDIPRzvUAVQ/hCpeUAPy/6UQZ2cjiMZDkk0Rr7kNmTWx6j1\n8+daao8yNjx09ySR41rhyurkW3o/awLzJfbYYPg24mVsGzQDqtKXHqj2lfhLxeuT\n1Ol0qYj2L4ixntO3PGeMJNgE31dnnKUunmpEE25BpqMoqX5C5iqaCdhs+Z8cnUq7\njjVus8EKMrb1kvINQlP0YpHR1vK9IHIfuoCwKRcY3eM2VWEpUWxeLNZHN3G8V2W1\nKet8Cddv9px7rHHGAlNBYgisLPVOG0QDG2mSvVMJerTqbApmcwvsUJYtRb1WNbfV\nE8n1sYwbJe6f190UxqJ+VQ82FJHQo9g/qh7ppH0cGGrS7IWp4465/ZHP/itzH9K/\ndoNQ5pdNwG8eGh1903g7MsCZYCguwaamZL0QrsbbjmpUpUuiqGi8UtjgkmK41gPv\nCOFx3Kk61XFRGhqTH/LXLpIq9lKpuAP04FZRWpO34+UMS67K+n0=\n=OYza\n-----END PGP SIGNATURE-----",
+ "payload": "tree d13cfa72cc6958f85eea11322cfa9c89d164b7d2\nparent 5dcb807a98a9863f7d730c3f190e85311eda512b\nauthor Joas Schilling 1719391231 +0200\ncommitter Joas Schilling 1719480368 +0200\n\nfix(federation): Fix missing protocol on CloudID remote\n\nSigned-off-by: Joas Schilling \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/280d70a5f42309b28df0baf675893abed2a391a2",
+ "html_url": "https://github.com/nextcloud/server/commit/280d70a5f42309b28df0baf675893abed2a391a2",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/280d70a5f42309b28df0baf675893abed2a391a2/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "html_url": "https://github.com/nextcloud/server/commit/5dcb807a98a9863f7d730c3f190e85311eda512b"
+ }
+ ]
+ },
+ {
+ "sha": "2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "node_id": "C_kwDOA5c8_doAKDI0ODI2ODhmYTA5ZDdkYzQ3N2FkMGQyMzA0OWQ1NWI2MmQ1YjNkNmM",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-27T09:19:12Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T09:19:12Z"
+ },
+ "message": "Merge pull request #45655 from nextcloud/feat/mysql_ignore_conflics",
+ "tree": {
+ "sha": "6068af538f743ef4ae560e9508ac144c0806bd19",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/6068af538f743ef4ae560e9508ac144c0806bd19"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfS6QCRC1aQ7uu5UhlAAAQxQQABIvkcSCHEUYk9Ns4aH1U36W\nbb03ymoUXru4MMGmT4wobCI2MfsX5nms83IoBtmXY58RNNFWjpDPXOtRIe/FRjH+\npub6FOqne8IKti1K4DwLKQ2nce5lTmWLquM9bICpxpQphC276lX/bcTW2xAixLBc\nlNtU58oQEtLRPQ+m2tnmJLjP0SspTg5lK8rGLe0H1OhMEcXa3nPOSI3WxfSgNqZD\nphtJFu84jHHO3NzKaLZJUX1hkaWu6tQgMkT1CqQFYR1UTpKEquVv8Gsx6I2z+DlS\n5SQLX2wcbxD41MGZtojrfyaM3uemxAgH4dc81u0qyIWmOwU09uFC17RNM0xZc2ss\n1xzwYiJWDrkuWq2v6nB1y3rZuxEtruUbLpKbNbwdC1bsN/pwUKB78ZWQgY2+2Lsz\nISoBG0h9IzGdNKUZDjJOyRbAfwWec2sMGh6vKLyS/nMIreoLj5mEWC8P2c/b5trQ\nRQGPJ5T4OnLzLUnfUP+wjhr2oJX5ebwQXbQDMueP44XQrpxaH6xvNh6jOUb8oH3z\n/RkpAkcOnNWLW2tB5Rx0QjArD6G8qHqyWs75zRQxTSO9Cu1BNy33mx04DdB0KGCA\nZT9GxmYNvcbHg+NZ79ao3iP8PYELAJpibmzEXZhNtHjjDZ+mLzkqK7XKjwrV7TdG\npC/LWN8B8Mcsog9FNEs8\n=mVgC\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 6068af538f743ef4ae560e9508ac144c0806bd19\nparent ec39228b89363e378fc4f851c9182985aa174878\nparent b7243681dd70b25fdefc9fe62c63bab840691c94\nauthor Benjamin Gaussorgues 1719479952 +0200\ncommitter GitHub 1719479952 +0200\n\nMerge pull request #45655 from nextcloud/feat/mysql_ignore_conflics\n\n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "html_url": "https://github.com/nextcloud/server/commit/2482688fa09d7dc477ad0d23049d55b62d5b3d6c",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/2482688fa09d7dc477ad0d23049d55b62d5b3d6c/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ec39228b89363e378fc4f851c9182985aa174878",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ec39228b89363e378fc4f851c9182985aa174878",
+ "html_url": "https://github.com/nextcloud/server/commit/ec39228b89363e378fc4f851c9182985aa174878"
+ },
+ {
+ "sha": "b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "html_url": "https://github.com/nextcloud/server/commit/b7243681dd70b25fdefc9fe62c63bab840691c94"
+ }
+ ]
+ },
+ {
+ "sha": "ec39228b89363e378fc4f851c9182985aa174878",
+ "node_id": "C_kwDOA5c8_doAKGVjMzkyMjhiODkzNjNlMzc4ZmM0Zjg1MWM5MTgyOTg1YWExNzQ4Nzg",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-27T09:15:50Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T09:15:50Z"
+ },
+ "message": "Merge pull request #46059 from nextcloud/perf/remove_useless_session",
+ "tree": {
+ "sha": "d6e863fb11b2f7132d41857e093866c42808c9c8",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/d6e863fb11b2f7132d41857e093866c42808c9c8"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ec39228b89363e378fc4f851c9182985aa174878",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfS3GCRC1aQ7uu5UhlAAAwy4QAG7KjjTEzgDUXSv9axLn8IMX\nd4RSeaXXyU6cxaSobP9C3T8/2v+OMhyOL00fpzlCWd1h2EzW8R4ngad5CQoiiVGK\n8PxtKRUM+syHDwaT50w43TFnIQNFSxfKDs9nXJV1fcSn2sh08L9e8LBjeVg5k/ji\nt1faQtsnqzmM89jI8LFgcdeu3DY6qgpxDMjW6dh9lvrVRUo+A4Fx7ESioeGq/nWw\nKwHwyQ5pL0AuQlNv3UwdBJoGHloKCCSQ42yM0ot5KEsBao15lpFEPf+meki0T6Lg\nSsizzgnLr2QQzy3h+P08iGTTfxj/7SNhwg3OE+u5L66StdNbZFwuooQvk8/BbJSx\nW4gF3Co9Rr8oVvwx2Uk1YDhaW1427x0TdcNImiS5Nj1vZf96JREgC2MMM8qv0mgy\nYLItf80aAe5jRLk1sKPKDthK9nR6HAKdQGkss/3V6326F/S4evvG6vyfoURbTRZm\ndNbWtAEV0v2n9Yz27voyKDmJzoq2L09WzeNxjMh+8Sltg3FqWOwwKJoAnuqXKuhD\nbY2WW1VnfT3R1QLCj4uBpSipGMXdW13tDXoE71g8fGvMiApGA7DX0LQm/NeWjpGz\nK8MsWPHIUAc9u5HMPf0/B8rGoBZEeWG0GOE84n8kNSp9lK0onId3IC5EmNudGj7w\nZc9ZViN0oT458EXE1Fii\n=AL0W\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree d6e863fb11b2f7132d41857e093866c42808c9c8\nparent 21740fef456bda2e008a4c4dd3cfdda64b3d79c5\nparent 71dffd9b7016d3628256ce42db29d1221052a4f4\nauthor Benjamin Gaussorgues 1719479750 +0200\ncommitter GitHub 1719479750 +0200\n\nMerge pull request #46059 from nextcloud/perf/remove_useless_session\n\n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ec39228b89363e378fc4f851c9182985aa174878",
+ "html_url": "https://github.com/nextcloud/server/commit/ec39228b89363e378fc4f851c9182985aa174878",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ec39228b89363e378fc4f851c9182985aa174878/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "html_url": "https://github.com/nextcloud/server/commit/21740fef456bda2e008a4c4dd3cfdda64b3d79c5"
+ },
+ {
+ "sha": "71dffd9b7016d3628256ce42db29d1221052a4f4",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/71dffd9b7016d3628256ce42db29d1221052a4f4",
+ "html_url": "https://github.com/nextcloud/server/commit/71dffd9b7016d3628256ce42db29d1221052a4f4"
+ }
+ ]
+ },
+ {
+ "sha": "21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "node_id": "C_kwDOA5c8_doAKDIxNzQwZmVmNDU2YmRhMmUwMDhhNGM0ZGQzY2ZkZGE2NGIzZDc5YzU",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "213943+nickvergessen@users.noreply.github.com",
+ "date": "2024-06-27T08:01:46Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T08:01:46Z"
+ },
+ "message": "Merge pull request #46158 from nextcloud/automated/noid/master-update-code-signing-crl\n\n[master] fix(security): Update code signing revocation list",
+ "tree": {
+ "sha": "7881b98ff3ae0019302088c87068dde6af0da9af",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7881b98ff3ae0019302088c87068dde6af0da9af"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfRxqCRC1aQ7uu5UhlAAAi28QAC3MxHiOG2dn80vVZsV4cPUH\nyj/TW1x48S+laD/Kx4weJBaym69MYJYqDnwSXfZqoXv60C85LppnOFh2AQHw3GVe\nLdZ2Rmwe5DA64tr+n50zCaKtVfJ+AL5iv59zHlsb/FlrGNBlZY40Nwj2xi9EQjtx\ng7GOpnmgJnT6bfnXho8JMFpVlmKd5SlZDwDwMjxIC3thxkUCSegcHORWy75oWiBH\nw5l7Oyv4PXG7pqHitSlR7kjsfjliJF/xe0nm/3sqqV2uAxauI9GrLDNAZYy0SxVk\n/rsfQGfAohGs2X6fyu7/Njrj8tzkz1Z8tO3dhwHuSoRwr3Rx7IiFE8wdjP+40aFJ\nFUpcCHqklU1Ld2wt+WW1pCjxpEPrS3rl03tANtjfvZOELHRlM4Wvt+1MMaBDMxI7\nPXLHfvz2tMSkChkbk+fotuNC44pz1Wp94NUnpegL5wOdCsKoj41wTUPdleO0WNxm\nG+e6yYDqq1+6kWGH5ld3tkTFS2pLhc6iak2HRkStyQ6KYn2mwO0t9IICHnhiOxiS\nb+mzWJbGyqnFxe4PHvr6sOLC3VJrWmzSC+UMDS1dAXG/SZKQpRsxJCt9h7rrZ9GU\nvzFU9WVmeK+GWAxfhviYMEdEhh3Msj8+nrnK/4lTrNWI1kNcK7n7jPJO4ZdoYM5h\nf8Ph0ge4Hq9nzUTwrqHE\n=tZ+9\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 7881b98ff3ae0019302088c87068dde6af0da9af\nparent 07180e425fec135a0b1e3994c6a71cc452e2d51c\nparent ef709786d0b5b71c83aca43691f6180632c21a8f\nauthor Joas Schilling <213943+nickvergessen@users.noreply.github.com> 1719475306 +0200\ncommitter GitHub 1719475306 +0200\n\nMerge pull request #46158 from nextcloud/automated/noid/master-update-code-signing-crl\n\n[master] fix(security): Update code signing revocation list",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "html_url": "https://github.com/nextcloud/server/commit/21740fef456bda2e008a4c4dd3cfdda64b3d79c5",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/21740fef456bda2e008a4c4dd3cfdda64b3d79c5/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "html_url": "https://github.com/nextcloud/server/commit/07180e425fec135a0b1e3994c6a71cc452e2d51c"
+ },
+ {
+ "sha": "ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "html_url": "https://github.com/nextcloud/server/commit/ef709786d0b5b71c83aca43691f6180632c21a8f"
+ }
+ ]
+ },
+ {
+ "sha": "3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e",
+ "node_id": "C_kwDOA5c8_doAKDNlMDY5MzE0MDhhZDRmMDNkYmRiNzBkMzRmNGZmNmI2ZWRhZWNjOGU",
+ "commit": {
+ "author": {
+ "name": "John Molakvoæ",
+ "email": "skjnldsv@users.noreply.github.com",
+ "date": "2024-06-13T08:35:50Z"
+ },
+ "committer": {
+ "name": "Anna",
+ "email": "anna@nextcloud.com",
+ "date": "2024-06-27T07:46:40Z"
+ },
+ "message": "fix(dav): WebcalCaching-Plugin lint\n\nSigned-off-by: John Molakvoæ ",
+ "tree": {
+ "sha": "d9d585317cff6d0e791b88531cf55c9d2b91a448",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/d9d585317cff6d0e791b88531cf55c9d2b91a448"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e",
+ "html_url": "https://github.com/nextcloud/server/commit/3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e/comments",
+ "author": {
+ "login": "skjnldsv",
+ "id": 14975046,
+ "node_id": "MDQ6VXNlcjE0OTc1MDQ2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14975046?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/skjnldsv",
+ "html_url": "https://github.com/skjnldsv",
+ "followers_url": "https://api.github.com/users/skjnldsv/followers",
+ "following_url": "https://api.github.com/users/skjnldsv/following{/other_user}",
+ "gists_url": "https://api.github.com/users/skjnldsv/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/skjnldsv/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/skjnldsv/subscriptions",
+ "organizations_url": "https://api.github.com/users/skjnldsv/orgs",
+ "repos_url": "https://api.github.com/users/skjnldsv/repos",
+ "events_url": "https://api.github.com/users/skjnldsv/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/skjnldsv/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "miaulalala",
+ "id": 7427347,
+ "node_id": "MDQ6VXNlcjc0MjczNDc=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7427347?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/miaulalala",
+ "html_url": "https://github.com/miaulalala",
+ "followers_url": "https://api.github.com/users/miaulalala/followers",
+ "following_url": "https://api.github.com/users/miaulalala/following{/other_user}",
+ "gists_url": "https://api.github.com/users/miaulalala/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/miaulalala/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/miaulalala/subscriptions",
+ "organizations_url": "https://api.github.com/users/miaulalala/orgs",
+ "repos_url": "https://api.github.com/users/miaulalala/repos",
+ "events_url": "https://api.github.com/users/miaulalala/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/miaulalala/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "html_url": "https://github.com/nextcloud/server/commit/58cf14da87b6dbe8dc3c13d62505697806edeb7d"
+ }
+ ]
+ },
+ {
+ "sha": "58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "node_id": "C_kwDOA5c8_doAKDU4Y2YxNGRhODdiNmRiZThkYzNjMTNkNjI1MDU2OTc4MDZlZGViN2Q",
+ "commit": {
+ "author": {
+ "name": "Vivida",
+ "email": "57828684+Vivida1@users.noreply.github.com",
+ "date": "2024-06-12T22:02:15Z"
+ },
+ "committer": {
+ "name": "Anna",
+ "email": "anna@nextcloud.com",
+ "date": "2024-06-27T07:46:40Z"
+ },
+ "message": "feat(dav): add regex to match Gnome and KDE calendar user-agents\n\nSigned-off-by: Vivida <57828684+Vivida1@users.noreply.github.com>",
+ "tree": {
+ "sha": "a36034aa9a90361cc3bb414ddba526c287d5c035",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a36034aa9a90361cc3bb414ddba526c287d5c035"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "html_url": "https://github.com/nextcloud/server/commit/58cf14da87b6dbe8dc3c13d62505697806edeb7d",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/58cf14da87b6dbe8dc3c13d62505697806edeb7d/comments",
+ "author": {
+ "login": "Vivida1",
+ "id": 57828684,
+ "node_id": "MDQ6VXNlcjU3ODI4Njg0",
+ "avatar_url": "https://avatars.githubusercontent.com/u/57828684?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Vivida1",
+ "html_url": "https://github.com/Vivida1",
+ "followers_url": "https://api.github.com/users/Vivida1/followers",
+ "following_url": "https://api.github.com/users/Vivida1/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Vivida1/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Vivida1/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Vivida1/subscriptions",
+ "organizations_url": "https://api.github.com/users/Vivida1/orgs",
+ "repos_url": "https://api.github.com/users/Vivida1/repos",
+ "events_url": "https://api.github.com/users/Vivida1/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Vivida1/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "miaulalala",
+ "id": 7427347,
+ "node_id": "MDQ6VXNlcjc0MjczNDc=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7427347?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/miaulalala",
+ "html_url": "https://github.com/miaulalala",
+ "followers_url": "https://api.github.com/users/miaulalala/followers",
+ "following_url": "https://api.github.com/users/miaulalala/following{/other_user}",
+ "gists_url": "https://api.github.com/users/miaulalala/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/miaulalala/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/miaulalala/subscriptions",
+ "organizations_url": "https://api.github.com/users/miaulalala/orgs",
+ "repos_url": "https://api.github.com/users/miaulalala/repos",
+ "events_url": "https://api.github.com/users/miaulalala/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/miaulalala/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "html_url": "https://github.com/nextcloud/server/commit/07180e425fec135a0b1e3994c6a71cc452e2d51c"
+ }
+ ]
+ },
+ {
+ "sha": "07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "node_id": "C_kwDOA5c8_doAKDA3MTgwZTQyNWZlYzEzNWEwYjFlMzk5NGM2YTcxY2M0NTJlMmQ1MWM",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T06:36:27Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T06:36:27Z"
+ },
+ "message": "Merge pull request #46143 from nextcloud/fix/45941/share-pass-label\n\nfix(SharingEntryLink): Show enforced password input label",
+ "tree": {
+ "sha": "2804c48980e143b27b665b064dc7ab578656091f",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/2804c48980e143b27b665b064dc7ab578656091f"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfQhrCRC1aQ7uu5UhlAAA6g0QAHjikoz0BTQSAx8JnBZnEWFW\neAdVlFnH+JiEppY639hU5ReMjTCHUymHtoTK2DqytcUJqy9m/0WVRPTb1EQQb0/3\nQtrAIFJMLQUzZ/GHRiMatuk5u883i3KkIkDCuoesyZI2RoUCs7PQmp20KYAmZEiF\nFzk/VIe5Nvq7/1jXaV+LJL+1dCYOYIvJd+nhkkxGE5ttfXQviRxyc/aZxlwF54qL\ngpYhwriE+UxWWC6l7g1dbmzP91Wy2o1HQ3HjQKvNosX4Qz3Cl3kGBinMjucQl1q0\nCJazaj5KS9EuzLVVRhxUZBjW2b2cj9oPI0jqzvhzKm+7U0xxrM/uJGx4/qarZ8CT\nU9PiGzEhK6s5x6ixV1JWFxhgOu9vSj/MRm/7vaOHsxok9pCLzKkDzcputbVMn3qS\nI5tuh4tS2j/S+OBIdxHN51OZ2H4WFJ8NjYTl5EkpDLoFZy9Efmf+VEib0PGRvSp4\njE54c60RtA7Wlv0FQ0IJssshN3NCAN24p/YL4UyKgTY8UsWAjr6HzFxfadkKDuNQ\nUaLeivbP5l1UKz6Ng3oViVX6YO3saIyavQW1qlcN0wr2lwu7e3l81G/EzTvv5pG3\nIBJaqeYD6cdyCKGtI7usYp2FiZRfjgqFpboyNPKd0yz/xZw9Ntw7BWS+R+1Zjm+Z\nMeggnQt+JfdUCBehbStT\n=8NTB\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 2804c48980e143b27b665b064dc7ab578656091f\nparent 7eecfd6d895e6dc7e9b0018d44afa01babe2cb41\nparent f72ffa4851955a32f93e0fd044cf44d1a045849e\nauthor Ferdinand Thiessen 1719470187 +0200\ncommitter GitHub 1719470187 +0200\n\nMerge pull request #46143 from nextcloud/fix/45941/share-pass-label\n\nfix(SharingEntryLink): Show enforced password input label",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "html_url": "https://github.com/nextcloud/server/commit/07180e425fec135a0b1e3994c6a71cc452e2d51c",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/07180e425fec135a0b1e3994c6a71cc452e2d51c/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "html_url": "https://github.com/nextcloud/server/commit/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41"
+ },
+ {
+ "sha": "f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "html_url": "https://github.com/nextcloud/server/commit/f72ffa4851955a32f93e0fd044cf44d1a045849e"
+ }
+ ]
+ },
+ {
+ "sha": "f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "node_id": "C_kwDOA5c8_doAKGY3MmZmYTQ4NTE5NTVhMzJmOTNlMGZkMDQ0Y2Y0NGQxYTA0NTg0OWU",
+ "commit": {
+ "author": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-27T06:18:21Z"
+ },
+ "committer": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-27T06:18:21Z"
+ },
+ "message": "chore(assets): Recompile assets\n\nSigned-off-by: nextcloud-command ",
+ "tree": {
+ "sha": "2804c48980e143b27b665b064dc7ab578656091f",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/2804c48980e143b27b665b064dc7ab578656091f"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "html_url": "https://github.com/nextcloud/server/commit/f72ffa4851955a32f93e0fd044cf44d1a045849e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f72ffa4851955a32f93e0fd044cf44d1a045849e/comments",
+ "author": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "html_url": "https://github.com/nextcloud/server/commit/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc"
+ }
+ ]
+ },
+ {
+ "sha": "0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "node_id": "C_kwDOA5c8_doAKDBjOGZlNDA2ZjE0Njg2ZGVlZThiMDM0ZTMxYmJmZTdmNzBjNmYwZGM",
+ "commit": {
+ "author": {
+ "name": "fenn-cs",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-26T15:13:37Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-27T06:11:41Z"
+ },
+ "message": "fix(SharingEntryLink): Show enforced password input label\n\nWhile upgrading icons in b3ec461fe86258a0a3831dff28e394018d0044c9 enforced password label\nicon was not correctly wrapped.\n\nResolves : https://github.com/nextcloud/server/issues/45941\n\nSigned-off-by: fenn-cs ",
+ "tree": {
+ "sha": "70716e22b6cf8a08fba1fd99e74be2f5ae59835c",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/70716e22b6cf8a08fba1fd99e74be2f5ae59835c"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "html_url": "https://github.com/nextcloud/server/commit/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0c8fe406f14686deee8b034e31bbfe7f70c6f0dc/comments",
+ "author": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "html_url": "https://github.com/nextcloud/server/commit/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41"
+ }
+ ]
+ },
+ {
+ "sha": "ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "node_id": "C_kwDOA5c8_doAKGVmNzA5Nzg2ZDBiNWI3MWM4M2FjYTQzNjkxZjYxODA2MzJjMjFhOGY",
+ "commit": {
+ "author": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-27T02:21:39Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-27T02:21:39Z"
+ },
+ "message": "fix(security): Update code signing revocation list\n\nSigned-off-by: GitHub ",
+ "tree": {
+ "sha": "bd9f0302ecf486abe408440bc784cf7179ca99f5",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/bd9f0302ecf486abe408440bc784cf7179ca99f5"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "html_url": "https://github.com/nextcloud/server/commit/ef709786d0b5b71c83aca43691f6180632c21a8f",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ef709786d0b5b71c83aca43691f6180632c21a8f/comments",
+ "author": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "html_url": "https://github.com/nextcloud/server/commit/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41"
+ }
+ ]
+ },
+ {
+ "sha": "7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "node_id": "C_kwDOA5c8_doAKDdlZWNmZDZkODk1ZTZkYzdlOWIwMDE4ZDQ0YWZhMDFiYWJlMmNiNDE",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-27T00:19:56Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-27T00:19:56Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "fae167c0cb50319d21e92a4ba5e315dbe92d4adf",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/fae167c0cb50319d21e92a4ba5e315dbe92d4adf"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmZ8sC0ACgkQEw2rhtP7\nNWzxphAAvaW9M8gro5kjDXMXv4dBU+DSELFGU/Z1JTAmvZoM2Kfc6bGIA6SwCQRV\nou6oxYbXiDk6BZn0lnF8F68rmT7s7Qn61rQKNmwxHVvyyKLMzKt6clBIGlI7QNIj\nBbPwynRb661CmxFYDM8QuMkABWuHHYpKenFyLeD0S+ZJlIzN+b+CmJwuu4hwPjse\n6J5wg8tSzid5GyRIHmaCw2oAEHw3guH1E4pefipCJk/YbAS2mZMD0RgYyYg7f1s7\nt4X159MRCZYRK+JCjuv39RRHzSIjp+aa7RHXezIg3QurRKG8Qp1WRobLNh2AXcMo\nh/liP92wDGfenFxorfqxcLX5aLCNj3pQVBaWx//7hxL+S5ld/MERPnwmFpC+Ft3G\nFg7W4wHWKM5MaQq40jfiL248taAz5d44wrnT3HLPYI4o5TwPAsBzpNG6LxNd+gA6\ns2xLCxxjwM5EytJ3JxTOl9VoGxVOjva7+YAwqnj2So1EK+t2r/R2gtAIRHLrCgXJ\nQ2VJ1RwejYYwZ0VvTmudySt1ONy4C7ikOF/2dvAKJ0vFQ8CMhj3ISX9xu1dvhnKr\nNEjACbwRmtq6GuPM3PBLDux1Srb6PB1NWWRCgqcXpBUthGeM+TJRF1GPZKKnJ32U\nEJfvtnCSkecBXi/HfgWWNlXpcgLqZlae4Xv8zsN4Ew7Av3CJUHo=\n=/w5K\n-----END PGP SIGNATURE-----",
+ "payload": "tree fae167c0cb50319d21e92a4ba5e315dbe92d4adf\nparent 380a253aabecc7f4927ed924383cbe0c74bea553\nauthor Nextcloud bot 1719447596 +0000\ncommitter Nextcloud bot 1719447596 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "html_url": "https://github.com/nextcloud/server/commit/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/7eecfd6d895e6dc7e9b0018d44afa01babe2cb41/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "380a253aabecc7f4927ed924383cbe0c74bea553",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/380a253aabecc7f4927ed924383cbe0c74bea553",
+ "html_url": "https://github.com/nextcloud/server/commit/380a253aabecc7f4927ed924383cbe0c74bea553"
+ }
+ ]
+ },
+ {
+ "sha": "0a6735c6bad7c266e37642c412793611e09b5194",
+ "node_id": "C_kwDOA5c8_doAKDBhNjczNWM2YmFkN2MyNjZlMzc2NDJjNDEyNzkzNjExZTA5YjUxOTQ",
+ "commit": {
+ "author": {
+ "name": "Andy Scherzinger",
+ "email": "info@andy-scherzinger.de",
+ "date": "2024-06-25T14:35:05Z"
+ },
+ "committer": {
+ "name": "Andy Scherzinger",
+ "email": "info@andy-scherzinger.de",
+ "date": "2024-06-26T21:55:19Z"
+ },
+ "message": "docs: Reference 3rd party licenses via SPDX\n\nSigned-off-by: Andy Scherzinger ",
+ "tree": {
+ "sha": "65bf621f4f4817c23d8e02f8ab6cb28440e584cc",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/65bf621f4f4817c23d8e02f8ab6cb28440e584cc"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0a6735c6bad7c266e37642c412793611e09b5194",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0a6735c6bad7c266e37642c412793611e09b5194",
+ "html_url": "https://github.com/nextcloud/server/commit/0a6735c6bad7c266e37642c412793611e09b5194",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0a6735c6bad7c266e37642c412793611e09b5194/comments",
+ "author": {
+ "login": "AndyScherzinger",
+ "id": 1315170,
+ "node_id": "MDQ6VXNlcjEzMTUxNzA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1315170?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/AndyScherzinger",
+ "html_url": "https://github.com/AndyScherzinger",
+ "followers_url": "https://api.github.com/users/AndyScherzinger/followers",
+ "following_url": "https://api.github.com/users/AndyScherzinger/following{/other_user}",
+ "gists_url": "https://api.github.com/users/AndyScherzinger/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/AndyScherzinger/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/AndyScherzinger/subscriptions",
+ "organizations_url": "https://api.github.com/users/AndyScherzinger/orgs",
+ "repos_url": "https://api.github.com/users/AndyScherzinger/repos",
+ "events_url": "https://api.github.com/users/AndyScherzinger/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/AndyScherzinger/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "AndyScherzinger",
+ "id": 1315170,
+ "node_id": "MDQ6VXNlcjEzMTUxNzA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1315170?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/AndyScherzinger",
+ "html_url": "https://github.com/AndyScherzinger",
+ "followers_url": "https://api.github.com/users/AndyScherzinger/followers",
+ "following_url": "https://api.github.com/users/AndyScherzinger/following{/other_user}",
+ "gists_url": "https://api.github.com/users/AndyScherzinger/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/AndyScherzinger/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/AndyScherzinger/subscriptions",
+ "organizations_url": "https://api.github.com/users/AndyScherzinger/orgs",
+ "repos_url": "https://api.github.com/users/AndyScherzinger/repos",
+ "events_url": "https://api.github.com/users/AndyScherzinger/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/AndyScherzinger/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "380a253aabecc7f4927ed924383cbe0c74bea553",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/380a253aabecc7f4927ed924383cbe0c74bea553",
+ "html_url": "https://github.com/nextcloud/server/commit/380a253aabecc7f4927ed924383cbe0c74bea553"
+ }
+ ]
+ },
+ {
+ "sha": "380a253aabecc7f4927ed924383cbe0c74bea553",
+ "node_id": "C_kwDOA5c8_doAKDM4MGEyNTNhYWJlY2M3ZjQ5MjdlZDkyNDM4M2NiZTBjNzRiZWE1NTM",
+ "commit": {
+ "author": {
+ "name": "Sebastian Krupinski",
+ "email": "165827823+SebastianKrupinski@users.noreply.github.com",
+ "date": "2024-06-26T19:03:02Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T19:03:02Z"
+ },
+ "message": "Merge pull request #46036 from nextcloud/fix/issue-46015\n\nfix(dav): add missing database index for dav_shares",
+ "tree": {
+ "sha": "e109942114d55f935bc14c864253e77b0ed1cbe8",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e109942114d55f935bc14c864253e77b0ed1cbe8"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/380a253aabecc7f4927ed924383cbe0c74bea553",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfGXmCRC1aQ7uu5UhlAAABH4QAF8S+S63Eh42nFGJv9Mz4cH1\n/7/YH7zvHstSAdA4+/RF/HPyKjDLCsOkE2Iq6312yl/4NQzGi/7L82JdDRm11fnE\nCU/vmVJYgbkyFsh6nC5JZg50IIY2umzz6emVsAvGjam7cII2H10GpRviWf13jNd+\nfbJmIOlY8VJLGcZAksPzwcsZ20iZ2SNKiHIG2RiCudEmOnl+wPZeiWQOLd3Ev4ne\nW2sPlr3cJ5RJtN2rx+5XvsEu6z0GFhGLsaGAHL4gCfmrMUV1MZXxNCq9Bs6nEHh+\nxayOUFYH6flyv1DBeqR8naBvpeam/YisnSRjdV+HJG53PPbSMmrZALiMGRJmapmh\n4wMNHR+8MCY15Bc01CjYrxafAvFS668x430JEQ9EDfwCufDVHBQPOFXWhUgcplZQ\nRrTBKGlSXwnHVJeiwIRexu97cnkmCLRq5bLIvQiyhhYse6qpOmZq7DRqGza2bi9C\nRvcsveIJ8r6iUrsHV+r1myHl2DbrNqSClJPMSMnHqyss44jLrUNKDIwNm3sw5FYX\nKchkLPWEo8XQiWUeUaINjqesklPbRAum7RgVg/Y1KtnwNKVkizcI3wkWYUYDt7xR\nbA6MixA8nyq9aXCEqzexU8MdtTPQh7LjWPxNKyVsBHvx/P9bpZDFBWwOgf43320J\nGzmH7Gpspyv2rR80Brjs\n=jpOw\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree e109942114d55f935bc14c864253e77b0ed1cbe8\nparent aa0bbd27741067462f2354d6053e1c9564d98964\nparent ff7e2c1837aa2e72bddcd1107d843c97867104e9\nauthor Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com> 1719428582 -0400\ncommitter GitHub 1719428582 -0400\n\nMerge pull request #46036 from nextcloud/fix/issue-46015\n\nfix(dav): add missing database index for dav_shares",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/380a253aabecc7f4927ed924383cbe0c74bea553",
+ "html_url": "https://github.com/nextcloud/server/commit/380a253aabecc7f4927ed924383cbe0c74bea553",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/380a253aabecc7f4927ed924383cbe0c74bea553/comments",
+ "author": {
+ "login": "SebastianKrupinski",
+ "id": 165827823,
+ "node_id": "U_kgDOCeJU7w",
+ "avatar_url": "https://avatars.githubusercontent.com/u/165827823?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SebastianKrupinski",
+ "html_url": "https://github.com/SebastianKrupinski",
+ "followers_url": "https://api.github.com/users/SebastianKrupinski/followers",
+ "following_url": "https://api.github.com/users/SebastianKrupinski/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SebastianKrupinski/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SebastianKrupinski/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SebastianKrupinski/subscriptions",
+ "organizations_url": "https://api.github.com/users/SebastianKrupinski/orgs",
+ "repos_url": "https://api.github.com/users/SebastianKrupinski/repos",
+ "events_url": "https://api.github.com/users/SebastianKrupinski/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SebastianKrupinski/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "aa0bbd27741067462f2354d6053e1c9564d98964",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/aa0bbd27741067462f2354d6053e1c9564d98964",
+ "html_url": "https://github.com/nextcloud/server/commit/aa0bbd27741067462f2354d6053e1c9564d98964"
+ },
+ {
+ "sha": "ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "html_url": "https://github.com/nextcloud/server/commit/ff7e2c1837aa2e72bddcd1107d843c97867104e9"
+ }
+ ]
+ },
+ {
+ "sha": "ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "node_id": "C_kwDOA5c8_doAKGZmN2UyYzE4MzdhYTJlNzJiZGRjZDExMDdkODQzYzk3ODY3MTA0ZTk",
+ "commit": {
+ "author": {
+ "name": "SebastianKrupinski",
+ "email": "krupinskis05@gmail.com",
+ "date": "2024-06-21T13:20:21Z"
+ },
+ "committer": {
+ "name": "SebastianKrupinski",
+ "email": "krupinskis05@gmail.com",
+ "date": "2024-06-26T18:20:36Z"
+ },
+ "message": "fix(dav): add missing database index for dav_shares resourceid, type and access\n\nSigned-off-by: SebastianKrupinski \n\nCo-authored-by: Richard Steinmetz \nSigned-off-by: Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com>\n\nSigned-off-by: SebastianKrupinski \n\nCo-authored-by: Richard Steinmetz \nSigned-off-by: Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com>\n\nCo-authored-by: Richard Steinmetz \nSigned-off-by: Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com>\n\nCo-authored-by: Richard Steinmetz \nSigned-off-by: Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com>\n\nCo-authored-by: Daniel \nSigned-off-by: Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com>\n\nSigned-off-by: SebastianKrupinski ",
+ "tree": {
+ "sha": "a7c3d94dba33a9f5030f293cc7600ef4bd75252c",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a7c3d94dba33a9f5030f293cc7600ef4bd75252c"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "html_url": "https://github.com/nextcloud/server/commit/ff7e2c1837aa2e72bddcd1107d843c97867104e9",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ff7e2c1837aa2e72bddcd1107d843c97867104e9/comments",
+ "author": {
+ "login": "SebastianKrupinski",
+ "id": 165827823,
+ "node_id": "U_kgDOCeJU7w",
+ "avatar_url": "https://avatars.githubusercontent.com/u/165827823?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SebastianKrupinski",
+ "html_url": "https://github.com/SebastianKrupinski",
+ "followers_url": "https://api.github.com/users/SebastianKrupinski/followers",
+ "following_url": "https://api.github.com/users/SebastianKrupinski/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SebastianKrupinski/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SebastianKrupinski/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SebastianKrupinski/subscriptions",
+ "organizations_url": "https://api.github.com/users/SebastianKrupinski/orgs",
+ "repos_url": "https://api.github.com/users/SebastianKrupinski/repos",
+ "events_url": "https://api.github.com/users/SebastianKrupinski/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SebastianKrupinski/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "SebastianKrupinski",
+ "id": 165827823,
+ "node_id": "U_kgDOCeJU7w",
+ "avatar_url": "https://avatars.githubusercontent.com/u/165827823?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SebastianKrupinski",
+ "html_url": "https://github.com/SebastianKrupinski",
+ "followers_url": "https://api.github.com/users/SebastianKrupinski/followers",
+ "following_url": "https://api.github.com/users/SebastianKrupinski/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SebastianKrupinski/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SebastianKrupinski/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SebastianKrupinski/subscriptions",
+ "organizations_url": "https://api.github.com/users/SebastianKrupinski/orgs",
+ "repos_url": "https://api.github.com/users/SebastianKrupinski/repos",
+ "events_url": "https://api.github.com/users/SebastianKrupinski/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SebastianKrupinski/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ba306950e606d15b3a4f76145787f94e22c6f990",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ba306950e606d15b3a4f76145787f94e22c6f990",
+ "html_url": "https://github.com/nextcloud/server/commit/ba306950e606d15b3a4f76145787f94e22c6f990"
+ }
+ ]
+ },
+ {
+ "sha": "aa0bbd27741067462f2354d6053e1c9564d98964",
+ "node_id": "C_kwDOA5c8_doAKGFhMGJiZDI3NzQxMDY3NDYyZjIzNTRkNjA1M2UxYzk1NjRkOTg5NjQ",
+ "commit": {
+ "author": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-26T16:58:27Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T16:58:27Z"
+ },
+ "message": "Merge pull request #44893 from nextcloud/fix/issue-43115\n\nfix(caldav): When message is a reply compare the message sender not the recipient",
+ "tree": {
+ "sha": "d0285d71e204ee389e0b89982419d4c07b581205",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/d0285d71e204ee389e0b89982419d4c07b581205"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/aa0bbd27741067462f2354d6053e1c9564d98964",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfEizCRC1aQ7uu5UhlAAAOSkQAI9wwPyoX12DSf62agsbVtYd\nJgqc3KLSmolL3xDr3riPHKpNcmlvRflTTJfWk79eF5UPfMD29HaNt201MdnUxt1A\n/0IybmEztCkWrK/y4dSX/RtFeaKgH9w+NvCFS1yA6f7MtacGrAVkVG3Sm1ULT/UJ\ng1DXYRAYNDYOozRYjLBSIp7YLMUGwkVJ9Ofut5uKzb0FQAonZp/FjEwGe0QvZ3f3\nwnFLX8MnIorVb/mCg6SFoQ3O98W8Kt3G+L+uIF3mvvczueT9zXZThtiWclMGLmqH\nATZ6K/1CiO5g8Hn1b+1dCUnk6aDcjOhMLG+k1LY1k/fRtyyr1VAqwxSCu4lsH+iF\nUcE48uNjlp/cJA3QBLn0RrLXDhfZleg5/vtK5GcKQW3wvjiRXKvSX6KvbPzfsMbJ\nPXxKAeg6Z3j45763eYFF2ZJecWKmYBudnlOImgzeoYA4kGR1pPJ8ntCo6TXT0csA\nKV6Hpudqu6/UPtDZf/ZsgOekwoMUxVmVClwm38B6WOy5eorL+p4JBxR1FD7DvJYU\ns7UABzRILHibBcFSwOB9KNBNrkzf3+YzinhLRhSfjBSSbpMR0lrxZOUUGhccA+o4\n2BvVEbIvw9Ejg8EfRE/o0KBIJnSTizmzTDps9Vk2J2+oG8QrR4CCaQUqTJduEUwt\n77BSjwCR6jJEQ3KxclKJ\n=yN0o\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree d0285d71e204ee389e0b89982419d4c07b581205\nparent ba306950e606d15b3a4f76145787f94e22c6f990\nparent d7eb509b267944f18ade6e2d57467539718a5027\nauthor Daniel 1719421107 +0200\ncommitter GitHub 1719421107 +0200\n\nMerge pull request #44893 from nextcloud/fix/issue-43115\n\nfix(caldav): When message is a reply compare the message sender not the recipient",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/aa0bbd27741067462f2354d6053e1c9564d98964",
+ "html_url": "https://github.com/nextcloud/server/commit/aa0bbd27741067462f2354d6053e1c9564d98964",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/aa0bbd27741067462f2354d6053e1c9564d98964/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ba306950e606d15b3a4f76145787f94e22c6f990",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ba306950e606d15b3a4f76145787f94e22c6f990",
+ "html_url": "https://github.com/nextcloud/server/commit/ba306950e606d15b3a4f76145787f94e22c6f990"
+ },
+ {
+ "sha": "d7eb509b267944f18ade6e2d57467539718a5027",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d7eb509b267944f18ade6e2d57467539718a5027",
+ "html_url": "https://github.com/nextcloud/server/commit/d7eb509b267944f18ade6e2d57467539718a5027"
+ }
+ ]
+ },
+ {
+ "sha": "9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "node_id": "C_kwDOA5c8_doAKDk3MTNkZDNmYTk5MGM1ZGFiZmEwN2IxMDQ5YWMxYThhMGYxZWRiMjc",
+ "commit": {
+ "author": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-18T12:11:32Z"
+ },
+ "committer": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-26T16:13:07Z"
+ },
+ "message": "chore: Move comments event handler to use proper event dispatcher\n\nSigned-off-by: Julius Härtl ",
+ "tree": {
+ "sha": "a03f5b678a4670c8d49f62e852c1e3a4c3a36bfe",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a03f5b678a4670c8d49f62e852c1e3a4c3a36bfe"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCAAdFiEEjjW+hGTEOeZmxRnbTGFMbtLN5t8FAmZ8PhQACgkQTGFMbtLN\n5t/27w//eU0RMQDOPlOKSGRbNDLHfcg/q2Pa+SA7iEPRp1n0fRFd3+kNYAZmUNEw\nO/AFsQi4ANdBMgXsvy//e9gDUxkp7Kj/l/JPXLmEgCZNYCr4xoIvlMJemz5dFc7B\nwX3jhD+Mo2CcMBMzVpTh6uGq9uFll3oFhdwcAI8ep1777nln9ew/10NiDhtdmrx6\ny/yBqwHR3F27EAF/B1+KE3YvwcRhvUZ6/atImtdFJ0FVPudLUb6gdMJOvyhEpu4c\nFcGt8OFRcaUnLqExyHzpXDMh6tBpvyselxncZvi82A0M1w5etfUrvcJCqXp6euuc\nRfFq1gh9hks+VOOXix+HHQvVSQpazdbe5qyrVhivNIvZMKRQ9FrO03gcTX/l6l6P\nlAtvSTM46pLAlvJWkNd/FMZd18Pi4oX5aSDBNFxzEBNYo52yuROQGRU/oosi2A34\nOs3dA1gUac4AclOhC/tpIXyYfLGdF+NsotePpKIos4NBRehjOkd1xdmqNRxheLxT\nfEWUrY3IsrF5JX1p5eTK/aMYAU2KEUtfDos9TpXzKnEGZ2PsW2Gq8CvBnLtDh7N2\nOWA59G0tVh5G4+iwhAUElhhcXmnLX3VO5uF8PNSMeV32pxo+WalddCe5HKAZfhvs\nKwFu+jy98MVuymkBWDfMRZJRM32ORscLXzcbngkWRQzbp+RtfsA=\n=S39K\n-----END PGP SIGNATURE-----",
+ "payload": "tree a03f5b678a4670c8d49f62e852c1e3a4c3a36bfe\nparent 9b05759c03f304a518b37cabfcc2fd7cc4fa4fef\nauthor Julius Härtl 1718712692 +0200\ncommitter Julius Härtl 1719418387 +0200\n\nchore: Move comments event handler to use proper event dispatcher\n\nSigned-off-by: Julius Härtl \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "html_url": "https://github.com/nextcloud/server/commit/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9713dd3fa990c5dabfa07b1049ac1a8a0f1edb27/comments",
+ "author": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "html_url": "https://github.com/nextcloud/server/commit/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef"
+ }
+ ]
+ },
+ {
+ "sha": "ba306950e606d15b3a4f76145787f94e22c6f990",
+ "node_id": "C_kwDOA5c8_doAKGJhMzA2OTUwZTYwNmQxNWIzYTRmNzYxNDU3ODdmOTRlMjJjNmY5OTA",
+ "commit": {
+ "author": {
+ "name": "Louis",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T14:40:02Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T14:40:02Z"
+ },
+ "message": "Merge pull request #46097 from nextcloud/artonge/fix/dont_override_expiration_date\n\nfix(files_sharing): Also set the expiration date timezone during validation",
+ "tree": {
+ "sha": "63ed3ffc599db3663533b3762164f7bfe6297bb0",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/63ed3ffc599db3663533b3762164f7bfe6297bb0"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ba306950e606d15b3a4f76145787f94e22c6f990",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfChCCRC1aQ7uu5UhlAAAFAwQAB9Ta7gspJl+f1bYNzFsII1c\naW92bqKBKeVAD0BHHgdxT+gj8s2ZcC/0uY7g7itCjA2gnnUE7Ok8D5kzXDzU4ZPV\nPLIyUImF51TgS7c7fjENZ1qiyJpowQ2BTryb5fwKq6yFilJBKTVfI4eoaY9/IDTI\ngTUqatda3qsWyNLxc0so6X3IPyJC2OGE1yfJKibOa4cEZzOkVF0uAGBMRFwFT/Vn\nSEaifE2MHuNWJB89ZyjqXsQe1/AG7f8OIJvlarCJJ/yUwXbg33hhCyo7Z+gR2IxW\nsK88TV/wNlLmZKMsRm0z/UeRBE8JWREpGMV0v9Ems2fDrJL9TunDu85+Gflp+evu\nV0+L+ceUO95wcNPN6dnXRscFCQeRz44FmGpRjBfgiWeC1y0MPFe0ScuCM0wRmk6s\nQ990BVfqMXYXjo/x8Jwnl0HSYy/Tf7p7Zq+l+jqGPvTR/z52qzVsM8rmOiBVeXIS\noKz6RWn6qOljcJljvQenTUwJxQWB/q2Yj48gPgF+HJMhP1B/8ir+YjgHl3toTWa9\ngxyju8TApPWFfNDskVgfTkPjoCXsp+xmGUBZyVpHTb66Z00AiLaKWcAPHpBlcqbG\n179yDY1ik301UCL7QRgfzt/9s++f3d2nwV3mjZbTyv85MWWAGVQ80FM8cqLOWDoE\nd26amdCj/CZtcStjwvaR\n=2E7E\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 63ed3ffc599db3663533b3762164f7bfe6297bb0\nparent 9b05759c03f304a518b37cabfcc2fd7cc4fa4fef\nparent f5fd6c8f08d0caceac67f5dd00cca58c6174a474\nauthor Louis 1719412802 +0200\ncommitter GitHub 1719412802 +0200\n\nMerge pull request #46097 from nextcloud/artonge/fix/dont_override_expiration_date\n\nfix(files_sharing): Also set the expiration date timezone during validation",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ba306950e606d15b3a4f76145787f94e22c6f990",
+ "html_url": "https://github.com/nextcloud/server/commit/ba306950e606d15b3a4f76145787f94e22c6f990",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ba306950e606d15b3a4f76145787f94e22c6f990/comments",
+ "author": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "html_url": "https://github.com/nextcloud/server/commit/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef"
+ },
+ {
+ "sha": "f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "html_url": "https://github.com/nextcloud/server/commit/f5fd6c8f08d0caceac67f5dd00cca58c6174a474"
+ }
+ ]
+ },
+ {
+ "sha": "9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "node_id": "C_kwDOA5c8_doAKDliMDU3NTljMDNmMzA0YTUxOGIzN2NhYmZjYzJmZDdjYzRmYTRmZWY",
+ "commit": {
+ "author": {
+ "name": "Louis",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T12:20:30Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T12:20:30Z"
+ },
+ "message": "Merge pull request #45977 from nextcloud/artonge/fix/update_favorite_navigation\n\nUpdate favorites navigation list on folder renames",
+ "tree": {
+ "sha": "a3f738243230f336f0f59e1c5da751b83e24796b",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a3f738243230f336f0f59e1c5da751b83e24796b"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfAeOCRC1aQ7uu5UhlAAAwXIQAFgJqTUY3W0/iQekGTZncmel\nJL4BIQt+UcTqqQniDQ+ynLeQKTcsQHf+3KG8KqYP0iLbV7zT/8/xY6wiBNrmXfpf\nvYac6f25Ovk7CmGv5MJyii9X38IdPn94VCHPnH4jthVqxBlAEFoXJzUmRn4bQ3dK\nN/kTgFa4bDvOvJGHVhN544qPbb5ygyeJ0ar1RCzVMQw2+gbpXiT9KLc25Uv1WF0S\nwpnlDGsBHdDgxREPYl9rGa4Ea1rsE5kPtsmFW2td1tTmijPdO9IKNkvVIwSFrF3f\nUaGOOIn6Mn+sh0GD+uHSq/64B8Vs8pgiYuq0LXjAGjnvgAdqXIUFK+VAyPbkf6NO\ncmf+CNZLPEHe54JjJDatmMnC3MWZHU5HHcxOmXkfZJpbxlhyeYQd2pGjFVs6YCFX\nxzIr85y8D9nVEkV8HmQyyywInA+FADEDtg2y14fgUrcx4ikNtpOKARCGawL6WxcL\ntStizuKrjGZL4K+Q9wEtKbMENaoFD1C2FKesgpQUY4kQw8pgQyX8BHyPWBattw+s\nA1DvcyjZQMRCa4vdUfKQ1SN/67ThXYNtzfwu4S/xF0UwgxkarHc28YiGEX8KU/Al\nsn9pXCHZOZP8oTFqzBFnZsVpINaJtyluRvnj5jf0IPxy80nslWYKO98qxVeP2Am0\nrnT65rBMj09y9BNQCvWw\n=1SVf\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree a3f738243230f336f0f59e1c5da751b83e24796b\nparent 1748bc50745e9c9ff01fb376a1792fd86cb92ecb\nparent fc359e3097f6405c81097028363b43eb7aeb6b9e\nauthor Louis 1719404430 +0200\ncommitter GitHub 1719404430 +0200\n\nMerge pull request #45977 from nextcloud/artonge/fix/update_favorite_navigation\n\nUpdate favorites navigation list on folder renames",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "html_url": "https://github.com/nextcloud/server/commit/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9b05759c03f304a518b37cabfcc2fd7cc4fa4fef/comments",
+ "author": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "html_url": "https://github.com/nextcloud/server/commit/1748bc50745e9c9ff01fb376a1792fd86cb92ecb"
+ },
+ {
+ "sha": "fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "html_url": "https://github.com/nextcloud/server/commit/fc359e3097f6405c81097028363b43eb7aeb6b9e"
+ }
+ ]
+ },
+ {
+ "sha": "1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "node_id": "C_kwDOA5c8_doAKDE3NDhiYzUwNzQ1ZTljOWZmMDFmYjM3NmExNzkyZmQ4NmNiOTJlY2I",
+ "commit": {
+ "author": {
+ "name": "Marcel Klehr",
+ "email": "mklehr@gmx.net",
+ "date": "2024-06-26T12:15:54Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T12:15:54Z"
+ },
+ "message": "Merge pull request #46107 from nextcloud/feat/webhook_listeners/index-endpoint-by-uri\n\nfeat(WebhooksController): Allow querying listeners by URI",
+ "tree": {
+ "sha": "a5316658b4f820f311d999abfecf87463c30344f",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a5316658b4f820f311d999abfecf87463c30344f"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmfAZ6CRC1aQ7uu5UhlAAAv2cQAGeChO4Irfh3nz4SV3voPCo4\nddeFcxovW7iufP1c4Ddln5GCWrtWQwcWIhup+n7sos7yHPwz0HC/bo+gSwxWHb+o\ni6J/LiUJCRMvKmKqyBbV2nUzVvDGXNkIE+tI2G0bPUrbTauda4hfSIO+bXqIFjl9\nsXNqu0AvjsFp+tU37mxrANRv49BNvOYmnMPyCb9dSeuwZnITFwWBdr1wwIuNUAZc\nlhMSICd+BJi+TEvN2H1OEbGJtTlUpakrMwjCI4y5HUPlgGnQApW2DZluGN4ZKN5R\nrKjOAlSpuWRAWqwDwp0R43Tmie4q48qXBeGgnZyXbAo8Myc7521oTXipeyPtxw8g\njAUxU9bGJhwQdPcb0/1ENCqX428TSzDjk++o6E4XoVGov8zQc8eZTv6F8g3C7Ooi\nWfqqSGFNAY5wIO1ukT/f5D7WRgLLBOnntjXhuH2V1sVEhqfn6IcEaHS8s1egZe9E\nuPHuV8HMhKdRlYF9+4sFuG02aI8SKvGp7PgbzxaDTu3667Ck/PxmY1lmw/EsU30o\nzYrcyl0KDbKig6WjaVM75qF2G+iBeWR9uJRnlpprJ+njjIaf9cgxi9vHr8VMm4IK\nm5VM/6YwsaiUbgwIasuEtSSH8Js8QWBj5yiGDoGAXueQp1Ff+93JttE4jDSBbT5e\nBhO952hy6Ad0TfjexZKT\n=EOOH\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree a5316658b4f820f311d999abfecf87463c30344f\nparent 5dcb807a98a9863f7d730c3f190e85311eda512b\nparent 0bdecb96f3ab822339b838563b979b09bb19c0dd\nauthor Marcel Klehr 1719404154 +0200\ncommitter GitHub 1719404154 +0200\n\nMerge pull request #46107 from nextcloud/feat/webhook_listeners/index-endpoint-by-uri\n\nfeat(WebhooksController): Allow querying listeners by URI",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "html_url": "https://github.com/nextcloud/server/commit/1748bc50745e9c9ff01fb376a1792fd86cb92ecb",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1748bc50745e9c9ff01fb376a1792fd86cb92ecb/comments",
+ "author": {
+ "login": "marcelklehr",
+ "id": 986878,
+ "node_id": "MDQ6VXNlcjk4Njg3OA==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/986878?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/marcelklehr",
+ "html_url": "https://github.com/marcelklehr",
+ "followers_url": "https://api.github.com/users/marcelklehr/followers",
+ "following_url": "https://api.github.com/users/marcelklehr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/marcelklehr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/marcelklehr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/marcelklehr/subscriptions",
+ "organizations_url": "https://api.github.com/users/marcelklehr/orgs",
+ "repos_url": "https://api.github.com/users/marcelklehr/repos",
+ "events_url": "https://api.github.com/users/marcelklehr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/marcelklehr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "html_url": "https://github.com/nextcloud/server/commit/5dcb807a98a9863f7d730c3f190e85311eda512b"
+ },
+ {
+ "sha": "0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "html_url": "https://github.com/nextcloud/server/commit/0bdecb96f3ab822339b838563b979b09bb19c0dd"
+ }
+ ]
+ },
+ {
+ "sha": "fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "node_id": "C_kwDOA5c8_doAKGZjMzU5ZTMwOTdmNjQwNWM4MTA5NzAyODM2M2I0M2ViN2FlYjZiOWU",
+ "commit": {
+ "author": {
+ "name": "Louis Chemineau",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T10:30:50Z"
+ },
+ "committer": {
+ "name": "Louis Chemineau",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T11:59:43Z"
+ },
+ "message": "fix(files): Update favorites navigation list on folder renames\n\nSigned-off-by: Louis Chemineau ",
+ "tree": {
+ "sha": "7f15af215405f3e432a62e15956512206b17cef4",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7f15af215405f3e432a62e15956512206b17cef4"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN SSH SIGNATURE-----\nU1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAghA64AW3yts9SSc/Z5pmw/JeObl\n2XeCD9ahN++2fMlVoAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5\nAAAAQOppZPyadDYRCjhAzLLbqltdiSH9DRkAfrz3p68tZ4ke5gYk6NT2LAnEoVfPNzKnfO\nCPKHkGw6a9d8FWvZ66wAE=\n-----END SSH SIGNATURE-----",
+ "payload": "tree 7f15af215405f3e432a62e15956512206b17cef4\nparent 5dcb807a98a9863f7d730c3f190e85311eda512b\nauthor Louis Chemineau 1719397850 +0200\ncommitter Louis Chemineau 1719403183 +0200\n\nfix(files): Update favorites navigation list on folder renames\n\nSigned-off-by: Louis Chemineau \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "html_url": "https://github.com/nextcloud/server/commit/fc359e3097f6405c81097028363b43eb7aeb6b9e",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/fc359e3097f6405c81097028363b43eb7aeb6b9e/comments",
+ "author": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "html_url": "https://github.com/nextcloud/server/commit/5dcb807a98a9863f7d730c3f190e85311eda512b"
+ }
+ ]
+ },
+ {
+ "sha": "f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "node_id": "C_kwDOA5c8_doAKGY1ZmQ2YzhmMDhkMGNhY2VhYzY3ZjVkZDAwY2NhNThjNjE3NGE0NzQ",
+ "commit": {
+ "author": {
+ "name": "Louis Chemineau",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T10:45:23Z"
+ },
+ "committer": {
+ "name": "Louis Chemineau",
+ "email": "louis@chmn.me",
+ "date": "2024-06-26T10:49:42Z"
+ },
+ "message": "fix(files_sharing): Store the expiration date relative to the server's timezone\n\nThis is needed as we want to store the difference between the server's and the user's timezones.\n\nSigned-off-by: Louis Chemineau ",
+ "tree": {
+ "sha": "895d3add95d2dc3ed6b97d48f7232ed9198a78c0",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/895d3add95d2dc3ed6b97d48f7232ed9198a78c0"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN SSH SIGNATURE-----\nU1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAghA64AW3yts9SSc/Z5pmw/JeObl\n2XeCD9ahN++2fMlVoAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5\nAAAAQMDHJrmGDXdqgSz2VYtFbMDa5MemcfvuIiH3pYRLQuJqJTM7RDQMwRlyiL2uJIf98z\nwFUwQebcMfSSBrULxoqQE=\n-----END SSH SIGNATURE-----",
+ "payload": "tree 895d3add95d2dc3ed6b97d48f7232ed9198a78c0\nparent 5dcb807a98a9863f7d730c3f190e85311eda512b\nauthor Louis Chemineau 1719398723 +0200\ncommitter Louis Chemineau 1719398982 +0200\n\nfix(files_sharing): Store the expiration date relative to the server's timezone\n\nThis is needed as we want to store the difference between the server's and the user's timezones.\n\nSigned-off-by: Louis Chemineau \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "html_url": "https://github.com/nextcloud/server/commit/f5fd6c8f08d0caceac67f5dd00cca58c6174a474",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f5fd6c8f08d0caceac67f5dd00cca58c6174a474/comments",
+ "author": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "artonge",
+ "id": 6653109,
+ "node_id": "MDQ6VXNlcjY2NTMxMDk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/6653109?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/artonge",
+ "html_url": "https://github.com/artonge",
+ "followers_url": "https://api.github.com/users/artonge/followers",
+ "following_url": "https://api.github.com/users/artonge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/artonge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/artonge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/artonge/subscriptions",
+ "organizations_url": "https://api.github.com/users/artonge/orgs",
+ "repos_url": "https://api.github.com/users/artonge/repos",
+ "events_url": "https://api.github.com/users/artonge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/artonge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "html_url": "https://github.com/nextcloud/server/commit/5dcb807a98a9863f7d730c3f190e85311eda512b"
+ }
+ ]
+ },
+ {
+ "sha": "5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "node_id": "C_kwDOA5c8_doAKDVkY2I4MDdhOThhOTg2M2Y3ZDczMGMzZjE5MGU4NTMxMWVkYTUxMmI",
+ "commit": {
+ "author": {
+ "name": "John Molakvoæ",
+ "email": "skjnldsv@users.noreply.github.com",
+ "date": "2024-06-26T07:30:27Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T07:30:27Z"
+ },
+ "message": "Merge pull request #46127 from nextcloud/feat/increase-max-copy-move-concurrency-to-5",
+ "tree": {
+ "sha": "e7110f9d08b0ec8f9a2afc7f69020c0ff2107604",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e7110f9d08b0ec8f9a2afc7f69020c0ff2107604"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJme8OTCRC1aQ7uu5UhlAAAlukQAK0T4TGA81jAK07XNX9AN47O\nmClWf2dj8PJp2PQUuussRDm0wsJb0imhcev2/Wp5n1aEi1I0TGIU0/UbUfHUulTx\nIjkcKD8EmdqcgmPEcvKQz+hVdfT11kkwdw3wNkFPP/X5PmoXAXYbu86lwum4a9lV\n1D+tZONApG88wMPtADGQb6jUSNKahAgcZUacVr9qZpV5g/QQCRmdlJ0vYOUKGBjJ\nRPBMwkowvz1fYodUuNj2PyOW71CncPKtFWA9qMxmIXe4UELblB3Gvcl7LZEY4NKi\nvXlnlRhuQ1hJadsmvEEGNVKZJH0nYQ/QlUEbseb0ZNXfGovWOOR0uiDmwq331cUX\nyqOcnntc3zVFpI3HXnBJopRJXiccVphiRNrXsJeWnKAWH0zRqauBD8XouPO8EVZj\nvVGtgPMm8OvefUhLyBnc0thXOI+q/mquEY8dPsllQc76VJhhlKtK26Z5EsPqaEy6\ngIRZva3dWYfe8qH9dS8W3aNEo+PiN1XmJeexST9A3YsYD1RT0CmJDskkriHrLpbZ\nULORQbXL8FOZazI1snY7Rk2ad17E0NeG5ZxTaWZc7Ni2Q2/56tft3qU9Bvf4kRyw\ndFmJroZQFkqy1FR8GGqUGtHkb1ngX48JAiHyzJKy0FcTGn9WsrdnKnkZvsoqOOfr\nY1xyKZ/AQvKpD6+g2B63\n=dkS1\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree e7110f9d08b0ec8f9a2afc7f69020c0ff2107604\nparent d0d589c66152853712b5a56d25c0491acfab0a19\nparent 5a33202bcbefe77762813d69714f1be201420284\nauthor John Molakvoæ 1719387027 +0200\ncommitter GitHub 1719387027 +0200\n\nMerge pull request #46127 from nextcloud/feat/increase-max-copy-move-concurrency-to-5\n\n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "html_url": "https://github.com/nextcloud/server/commit/5dcb807a98a9863f7d730c3f190e85311eda512b",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/5dcb807a98a9863f7d730c3f190e85311eda512b/comments",
+ "author": {
+ "login": "skjnldsv",
+ "id": 14975046,
+ "node_id": "MDQ6VXNlcjE0OTc1MDQ2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14975046?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/skjnldsv",
+ "html_url": "https://github.com/skjnldsv",
+ "followers_url": "https://api.github.com/users/skjnldsv/followers",
+ "following_url": "https://api.github.com/users/skjnldsv/following{/other_user}",
+ "gists_url": "https://api.github.com/users/skjnldsv/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/skjnldsv/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/skjnldsv/subscriptions",
+ "organizations_url": "https://api.github.com/users/skjnldsv/orgs",
+ "repos_url": "https://api.github.com/users/skjnldsv/repos",
+ "events_url": "https://api.github.com/users/skjnldsv/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/skjnldsv/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d0d589c66152853712b5a56d25c0491acfab0a19",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d0d589c66152853712b5a56d25c0491acfab0a19",
+ "html_url": "https://github.com/nextcloud/server/commit/d0d589c66152853712b5a56d25c0491acfab0a19"
+ },
+ {
+ "sha": "5a33202bcbefe77762813d69714f1be201420284",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5a33202bcbefe77762813d69714f1be201420284",
+ "html_url": "https://github.com/nextcloud/server/commit/5a33202bcbefe77762813d69714f1be201420284"
+ }
+ ]
+ },
+ {
+ "sha": "5a33202bcbefe77762813d69714f1be201420284",
+ "node_id": "C_kwDOA5c8_doAKDVhMzMyMDJiY2JlZmU3Nzc2MjgxM2Q2OTcxNGYxYmUyMDE0MjAyODQ",
+ "commit": {
+ "author": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-26T07:13:00Z"
+ },
+ "committer": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-26T07:13:00Z"
+ },
+ "message": "chore(assets): Recompile assets\n\nSigned-off-by: nextcloud-command ",
+ "tree": {
+ "sha": "e7110f9d08b0ec8f9a2afc7f69020c0ff2107604",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e7110f9d08b0ec8f9a2afc7f69020c0ff2107604"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/5a33202bcbefe77762813d69714f1be201420284",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/5a33202bcbefe77762813d69714f1be201420284",
+ "html_url": "https://github.com/nextcloud/server/commit/5a33202bcbefe77762813d69714f1be201420284",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/5a33202bcbefe77762813d69714f1be201420284/comments",
+ "author": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "html_url": "https://github.com/nextcloud/server/commit/d5b286c9d208a48e15143f090fc52bd167a2ded3"
+ }
+ ]
+ },
+ {
+ "sha": "d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "node_id": "C_kwDOA5c8_doAKGQ1YjI4NmM5ZDIwOGE0OGUxNTE0M2YwOTBmYzUyYmQxNjdhMmRlZDM",
+ "commit": {
+ "author": {
+ "name": "John Molakvoæ",
+ "email": "skjnldsv@users.noreply.github.com",
+ "date": "2024-06-26T06:32:02Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-26T06:32:02Z"
+ },
+ "message": "feat(files): increase max copy-move concurrency to 5 \n\nSigned-off-by: John Molakvoæ ",
+ "tree": {
+ "sha": "a77a66d0d6ee37f393ee6c0d133f4fa7d11f90ba",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a77a66d0d6ee37f393ee6c0d133f4fa7d11f90ba"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJme7XiCRC1aQ7uu5UhlAAARGEQAKoyV34MXEkQYJ9SY+bdVkPU\nlR77jsEFCUsojmgxhVc8fP4Wlx/E6CjFmbH0bIEhuiHb3DnGbU5L8itfPFFK/vmq\nbdtuns1Ep/edtXUT9pH9gmiWHSgdrcAnjYKJkqhgHNy3F+lnUeCQDKPzAbrDqkzH\ndACejJtd9gxxzfFm4S7UbUxMMjjc/lsbk33n0whGCogFjSOg3ZC2p9qIgV3DiI+Z\nYVLxWJbXpgwag5JPNoNtPSCCM83Hts9GoFiBiE7PVLtzI0CSAUqTP1UGNpcfTC32\nZ675jpQ6RXyJm+qidyXboqCbXSaOme5/lTK9A5ADoJIpA/wfDOr3bhUhjIpLSx2M\nEIaj+BhKPTPDXp3Gv++wvZsgJklLOyirjxpkN/R/Ywp947QiEBNI1ahzF0uVLmuu\nJSY0A98OS5a9u37aNSUqFfxmRKw/WqQ0gzOn7yvb5J6krBX+OJ0HDdhxdTa4OTCh\ndYjWoEITOblOK66XxP/tyPkyJn+fUKHjraC3oLfikoJPIv10LWZU+egU93xiCnT1\n+pCbIcETodrn3IyspiyTVpTz3FNjHzaOTOTEdTT4KZtQ9Vwev9/KY07ePGMwpSNr\ne3PCeJeF9hWeeJQkghoA/8VKJNK3hvklWikoq3lj5QYNv1ZEDF269ez54m3G3Ft/\n7rVKxHFZJWvE1pM6WDKk\n=+a1j\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree a77a66d0d6ee37f393ee6c0d133f4fa7d11f90ba\nparent d0d589c66152853712b5a56d25c0491acfab0a19\nauthor John Molakvoæ 1719383522 +0200\ncommitter GitHub 1719383522 +0200\n\nfeat(files): increase max copy-move concurrency to 5 \n\nSigned-off-by: John Molakvoæ ",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "html_url": "https://github.com/nextcloud/server/commit/d5b286c9d208a48e15143f090fc52bd167a2ded3",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d5b286c9d208a48e15143f090fc52bd167a2ded3/comments",
+ "author": {
+ "login": "skjnldsv",
+ "id": 14975046,
+ "node_id": "MDQ6VXNlcjE0OTc1MDQ2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14975046?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/skjnldsv",
+ "html_url": "https://github.com/skjnldsv",
+ "followers_url": "https://api.github.com/users/skjnldsv/followers",
+ "following_url": "https://api.github.com/users/skjnldsv/following{/other_user}",
+ "gists_url": "https://api.github.com/users/skjnldsv/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/skjnldsv/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/skjnldsv/subscriptions",
+ "organizations_url": "https://api.github.com/users/skjnldsv/orgs",
+ "repos_url": "https://api.github.com/users/skjnldsv/repos",
+ "events_url": "https://api.github.com/users/skjnldsv/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/skjnldsv/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d0d589c66152853712b5a56d25c0491acfab0a19",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d0d589c66152853712b5a56d25c0491acfab0a19",
+ "html_url": "https://github.com/nextcloud/server/commit/d0d589c66152853712b5a56d25c0491acfab0a19"
+ }
+ ]
+ },
+ {
+ "sha": "0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "node_id": "C_kwDOA5c8_doAKDBiZGVjYjk2ZjNhYjgyMjMzOWI4Mzg1NjNiOTc5YjA5YmIxOWMwZGQ",
+ "commit": {
+ "author": {
+ "name": "Marcel Klehr",
+ "email": "mklehr@gmx.net",
+ "date": "2024-06-25T13:48:38Z"
+ },
+ "committer": {
+ "name": "Marcel Klehr",
+ "email": "mklehr@gmx.net",
+ "date": "2024-06-26T05:27:40Z"
+ },
+ "message": "feat(WebhooksController): Allow querying listeners by URI\n\nSigned-off-by: Marcel Klehr ",
+ "tree": {
+ "sha": "f9b4688172e838d24528b876c9a0068f050c83f7",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/f9b4688172e838d24528b876c9a0068f050c83f7"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "html_url": "https://github.com/nextcloud/server/commit/0bdecb96f3ab822339b838563b979b09bb19c0dd",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0bdecb96f3ab822339b838563b979b09bb19c0dd/comments",
+ "author": {
+ "login": "marcelklehr",
+ "id": 986878,
+ "node_id": "MDQ6VXNlcjk4Njg3OA==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/986878?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/marcelklehr",
+ "html_url": "https://github.com/marcelklehr",
+ "followers_url": "https://api.github.com/users/marcelklehr/followers",
+ "following_url": "https://api.github.com/users/marcelklehr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/marcelklehr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/marcelklehr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/marcelklehr/subscriptions",
+ "organizations_url": "https://api.github.com/users/marcelklehr/orgs",
+ "repos_url": "https://api.github.com/users/marcelklehr/repos",
+ "events_url": "https://api.github.com/users/marcelklehr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/marcelklehr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "marcelklehr",
+ "id": 986878,
+ "node_id": "MDQ6VXNlcjk4Njg3OA==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/986878?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/marcelklehr",
+ "html_url": "https://github.com/marcelklehr",
+ "followers_url": "https://api.github.com/users/marcelklehr/followers",
+ "following_url": "https://api.github.com/users/marcelklehr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/marcelklehr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/marcelklehr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/marcelklehr/subscriptions",
+ "organizations_url": "https://api.github.com/users/marcelklehr/orgs",
+ "repos_url": "https://api.github.com/users/marcelklehr/repos",
+ "events_url": "https://api.github.com/users/marcelklehr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/marcelklehr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "eed6216d55ca69784b78214de00286d6055be704",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "html_url": "https://github.com/nextcloud/server/commit/eed6216d55ca69784b78214de00286d6055be704"
+ }
+ ]
+ },
+ {
+ "sha": "d0d589c66152853712b5a56d25c0491acfab0a19",
+ "node_id": "C_kwDOA5c8_doAKGQwZDU4OWM2NjE1Mjg1MzcxMmI1YTU2ZDI1YzA0OTFhY2ZhYjBhMTk",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-26T00:19:48Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-26T00:19:48Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "3809b1f94c309fce02dd4a94630f6be3e7dc07f0",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/3809b1f94c309fce02dd4a94630f6be3e7dc07f0"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d0d589c66152853712b5a56d25c0491acfab0a19",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmZ7XqQACgkQEw2rhtP7\nNWzucRAAjpUl6zFCKljNq4BjK3E3h8NU+U8c31ID6JlLeaYX+JdACog6EpIy/ayy\nmqM/zuEznhtt7mEp/l4c9fxRQQZbKhYqyiNxs8Eq6ywUbCTmeq93VXxBUxVBbqiW\nV9ZAgG/LNJpPEmFH1nViffcnvGvMYOb9bizmFE6lUZjrMJpTLMVdhGp9jHSIPeF/\nVOjr102dTzO0hVm7Bj+wr90i0aFbGs3XtwDprkLY9CwVDKxPFTylL64LqNIkTcw5\nrVYKBDreeePec4v6NQcB0tTPjgO/IM1A3ZGr44qDijcmREFWlA2Gqht8JMbqPiJl\n4aJVxAW4+hVjIazjR4nsFuznRNmcyz/B73BoXinkh1/fIhTQzmJmK8bYNO3y6skq\ntO553/gOlCHcq9rIVKZ9guUmNWJXCgKS4IbM/H8mk3ksEJ2tQeRlAsx4Irn/M2iQ\nUC+tSdrec1mah3Iu2ZjXmRWSL9FCu2NjQJv9iBZfu+1DcpmnDUil1VLHCRijyRqh\nZjdKGUIWMCXz9oUszwSM2dHUWCf+zW1gJZzkuwfg185ZxoNmxh1YRH7OSwd3yYrZ\nLWQJz99k+L91yF9U6vttHB0wjPCDxUD9gWZExqEejF080XWss2wa146klMwtk7Wb\nMobucLSQqKwuzlWEV50WCNy6j6nTtZcGmINWin1xiRxPKgMVRr8=\n=K2KX\n-----END PGP SIGNATURE-----",
+ "payload": "tree 3809b1f94c309fce02dd4a94630f6be3e7dc07f0\nparent f0182226d4986e00825f919eed9f20f0f0723e50\nauthor Nextcloud bot 1719361188 +0000\ncommitter Nextcloud bot 1719361188 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d0d589c66152853712b5a56d25c0491acfab0a19",
+ "html_url": "https://github.com/nextcloud/server/commit/d0d589c66152853712b5a56d25c0491acfab0a19",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d0d589c66152853712b5a56d25c0491acfab0a19/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "f0182226d4986e00825f919eed9f20f0f0723e50",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f0182226d4986e00825f919eed9f20f0f0723e50",
+ "html_url": "https://github.com/nextcloud/server/commit/f0182226d4986e00825f919eed9f20f0f0723e50"
+ }
+ ]
+ },
+ {
+ "sha": "d7eb509b267944f18ade6e2d57467539718a5027",
+ "node_id": "C_kwDOA5c8_doAKGQ3ZWI1MDliMjY3OTQ0ZjE4YWRlNmUyZDU3NDY3NTM5NzE4YTUwMjc",
+ "commit": {
+ "author": {
+ "name": "SebastianKrupinski",
+ "email": "krupinskis05@gmail.com",
+ "date": "2024-04-17T14:40:31Z"
+ },
+ "committer": {
+ "name": "Sebastian Krupinski",
+ "email": "165827823+SebastianKrupinski@users.noreply.github.com",
+ "date": "2024-06-25T20:43:51Z"
+ },
+ "message": "fix(caldav): when message is a reply compare the message sender not the recipient\n\nSigned-off-by: SebastianKrupinski \nSigned-off-by: Daniel Kesselberg ",
+ "tree": {
+ "sha": "74c2022d88eb06e0fe270d21ab7ca4d1ed0a35ff",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/74c2022d88eb06e0fe270d21ab7ca4d1ed0a35ff"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d7eb509b267944f18ade6e2d57467539718a5027",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d7eb509b267944f18ade6e2d57467539718a5027",
+ "html_url": "https://github.com/nextcloud/server/commit/d7eb509b267944f18ade6e2d57467539718a5027",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d7eb509b267944f18ade6e2d57467539718a5027/comments",
+ "author": {
+ "login": "SebastianKrupinski",
+ "id": 165827823,
+ "node_id": "U_kgDOCeJU7w",
+ "avatar_url": "https://avatars.githubusercontent.com/u/165827823?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SebastianKrupinski",
+ "html_url": "https://github.com/SebastianKrupinski",
+ "followers_url": "https://api.github.com/users/SebastianKrupinski/followers",
+ "following_url": "https://api.github.com/users/SebastianKrupinski/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SebastianKrupinski/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SebastianKrupinski/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SebastianKrupinski/subscriptions",
+ "organizations_url": "https://api.github.com/users/SebastianKrupinski/orgs",
+ "repos_url": "https://api.github.com/users/SebastianKrupinski/repos",
+ "events_url": "https://api.github.com/users/SebastianKrupinski/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SebastianKrupinski/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "SebastianKrupinski",
+ "id": 165827823,
+ "node_id": "U_kgDOCeJU7w",
+ "avatar_url": "https://avatars.githubusercontent.com/u/165827823?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SebastianKrupinski",
+ "html_url": "https://github.com/SebastianKrupinski",
+ "followers_url": "https://api.github.com/users/SebastianKrupinski/followers",
+ "following_url": "https://api.github.com/users/SebastianKrupinski/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SebastianKrupinski/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SebastianKrupinski/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SebastianKrupinski/subscriptions",
+ "organizations_url": "https://api.github.com/users/SebastianKrupinski/orgs",
+ "repos_url": "https://api.github.com/users/SebastianKrupinski/repos",
+ "events_url": "https://api.github.com/users/SebastianKrupinski/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SebastianKrupinski/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "f0182226d4986e00825f919eed9f20f0f0723e50",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f0182226d4986e00825f919eed9f20f0f0723e50",
+ "html_url": "https://github.com/nextcloud/server/commit/f0182226d4986e00825f919eed9f20f0f0723e50"
+ }
+ ]
+ },
+ {
+ "sha": "f0182226d4986e00825f919eed9f20f0f0723e50",
+ "node_id": "C_kwDOA5c8_doAKGYwMTgyMjI2ZDQ5ODZlMDA4MjVmOTE5ZWVkOWYyMGYwZjA3MjNlNTA",
+ "commit": {
+ "author": {
+ "name": "F. E Noel Nfebe",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-25T19:51:39Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T19:51:39Z"
+ },
+ "message": "Merge pull request #46030 from nextcloud/fix/44961/shared-state-file-list\n\nfix(FilesView): Update files view upon share creation/delete",
+ "tree": {
+ "sha": "c1b9f26ab9f5bcbad6b8016336a5850f20bc8d89",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/c1b9f26ab9f5bcbad6b8016336a5850f20bc8d89"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f0182226d4986e00825f919eed9f20f0f0723e50",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmex/LCRC1aQ7uu5UhlAAAmV8QAJ7vMwKVZJxziYGz+C8O19wP\nAcrSD0S6JHhLgKVg9aKl4Ejw8ZSqgtV1GQJjgrjQoCT6+Yul5QvffUtHPXFXvGAe\nWfT1n8SjYdYnAiAAMFMHFzKu2uX3x8pCupH7Wi86CWNuSzyLoP+c3FSk3F0IKZFR\n/524i+UY+3fp8OKOzwyrOpWhkMd3jvIrG1chEr390ar8EyDrYv8MZkeXF5YdaDAk\nT+uMZRJDp00IVYL3LiFtWRTbRTdox/VnVgNZ3Uqzf/dDqag+mRdGZ7SeKxW/htDg\n0Opma1PZWHFnXyKe5BjHUFhILrBl5qQK6bbbw83xYuKZIyw+oKXYeVWmMvhD9VpC\n+Cb4He9AZghSBu+vX5HMeD1zrCFTpC8j3eG/DpTMODoQ5EKJesR4iW3E3UKuar0T\nDB73WkzyWBxzgi68FoiuoObUc9pIHA+PQOqU2SQDmLL3XQIIGXZvwkp9MCs/5jQu\niy+5QQNWjKUG8z7l44QzzJ+ttyXEVKzkMG3V5u1wsTBeRaM1rFG1d6FDE1bZa/8u\n90wu79GerafEWVCQimNtzf/ohhH5BSPStWJ6/cjHiKdjSmsbtbcg2q4uJqDS+L4A\np6DiDdYzvgo3/6dusuEabz13VT00Ldfmyi+8VvvmuPd6SYPnGiXo4W1rHroVpb27\nj/PUaM496wM1n30YQ14/\n=yrw8\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree c1b9f26ab9f5bcbad6b8016336a5850f20bc8d89\nparent 952271929d888c8333f5b64aa676f802a8b682af\nparent 574669697bdb9f0327e390d647c7c31234e6e4a9\nauthor F. E Noel Nfebe 1719345099 +0100\ncommitter GitHub 1719345099 +0100\n\nMerge pull request #46030 from nextcloud/fix/44961/shared-state-file-list\n\nfix(FilesView): Update files view upon share creation/delete",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f0182226d4986e00825f919eed9f20f0f0723e50",
+ "html_url": "https://github.com/nextcloud/server/commit/f0182226d4986e00825f919eed9f20f0f0723e50",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f0182226d4986e00825f919eed9f20f0f0723e50/comments",
+ "author": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "952271929d888c8333f5b64aa676f802a8b682af",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/952271929d888c8333f5b64aa676f802a8b682af",
+ "html_url": "https://github.com/nextcloud/server/commit/952271929d888c8333f5b64aa676f802a8b682af"
+ },
+ {
+ "sha": "574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "html_url": "https://github.com/nextcloud/server/commit/574669697bdb9f0327e390d647c7c31234e6e4a9"
+ }
+ ]
+ },
+ {
+ "sha": "952271929d888c8333f5b64aa676f802a8b682af",
+ "node_id": "C_kwDOA5c8_doAKDk1MjI3MTkyOWQ4ODhjODMzM2Y1YjY0YWE2NzZmODAyYThiNjgyYWY",
+ "commit": {
+ "author": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-25T19:10:12Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T19:10:12Z"
+ },
+ "message": "Merge pull request #46002 from nextcloud/debt/noid/use-new-http-client\n\nUse guzzle for addressbook federation",
+ "tree": {
+ "sha": "f3403bcb865dcdf7a1ea5b31aeac1b1bb88637cf",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/f3403bcb865dcdf7a1ea5b31aeac1b1bb88637cf"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/952271929d888c8333f5b64aa676f802a8b682af",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmexYUCRC1aQ7uu5UhlAAAjZoQAK7+Fa7oZMinzAJKdcIyIZPr\nPrkP8eVIKqgFdcvXWuXmyUY4SWKDonYAc62SE++jlFa7RQDdJluOaOZraOMMK6/u\nz/5WsC6oI15MSCI7Y00HiSnVB2cJO0nA1xJKXCUFUXnBS0F/zjskTyfgvKuEy1dj\neKdKIQLOcL0pKviKohW6R7FNOPuqAin0jeaW8+mL55wCy1pZaUJkkCmjxlV3Q9ig\n+xW/hVKip9y8ungAm675+Wv29gLM4AHfZlRVW5gAujCmB5WxIR2zl9a6Ify57pY3\nCIXz78UOqcrr1DOJz114yw8yCWPEP4TobIBUpnGYDkhmz9eWm98IUZSrKWsihz06\nFCOL1PIrwTYyTLIYHBvj/lyVIiRTuFIf/egnx427dREvyzsdkoNdIMXJXtO/GhcF\nMwvgu4xc1bR+0pEu7PSQHAtO9r8JAzl5UsJWiBggr9Ivgi5oZLvNieJSo3BYc6kz\n+kD4uGKEv+/93zG55hCpQQhHhuqMseFHEJaLKsGK53aWlgdZoEJ72U34Bj8YMBfd\nHWwOBl3sJ/zcDhdpbaRuSP8jpP0z05YDImmgDTrV0rS9WDl2gt5y+LeSC5bLyDyM\nAUa8vBujpw/26r3O2VPn/iMGLYNdHFCUlTAvfab/k1Sw5A2vr06mQgtkmWUpHMZL\netZGiZ1/wLEEY3cAe2iv\n=ooNJ\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree f3403bcb865dcdf7a1ea5b31aeac1b1bb88637cf\nparent 61213253104cd5719c1ed9fa74935ea6be5b6719\nparent f73c5c4aa9e9c8b1bae135939c52a0115978d241\nauthor Daniel 1719342612 +0200\ncommitter GitHub 1719342612 +0200\n\nMerge pull request #46002 from nextcloud/debt/noid/use-new-http-client\n\nUse guzzle for addressbook federation",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/952271929d888c8333f5b64aa676f802a8b682af",
+ "html_url": "https://github.com/nextcloud/server/commit/952271929d888c8333f5b64aa676f802a8b682af",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/952271929d888c8333f5b64aa676f802a8b682af/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "html_url": "https://github.com/nextcloud/server/commit/61213253104cd5719c1ed9fa74935ea6be5b6719"
+ },
+ {
+ "sha": "f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "html_url": "https://github.com/nextcloud/server/commit/f73c5c4aa9e9c8b1bae135939c52a0115978d241"
+ }
+ ]
+ },
+ {
+ "sha": "574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "node_id": "C_kwDOA5c8_doAKDU3NDY2OTY5N2JkYjlmMDMyN2UzOTBkNjQ3YzdjMzEyMzRlNmU0YTk",
+ "commit": {
+ "author": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-25T18:40:21Z"
+ },
+ "committer": {
+ "name": "nextcloud-command",
+ "email": "nextcloud-command@users.noreply.github.com",
+ "date": "2024-06-25T18:40:21Z"
+ },
+ "message": "chore(assets): Recompile assets\n\nSigned-off-by: nextcloud-command ",
+ "tree": {
+ "sha": "6f77ca94833cc458683561dee776b6d5881969ae",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/6f77ca94833cc458683561dee776b6d5881969ae"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "html_url": "https://github.com/nextcloud/server/commit/574669697bdb9f0327e390d647c7c31234e6e4a9",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/574669697bdb9f0327e390d647c7c31234e6e4a9/comments",
+ "author": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-command",
+ "id": 88102737,
+ "node_id": "MDQ6VXNlcjg4MTAyNzM3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/88102737?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-command",
+ "html_url": "https://github.com/nextcloud-command",
+ "followers_url": "https://api.github.com/users/nextcloud-command/followers",
+ "following_url": "https://api.github.com/users/nextcloud-command/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-command/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-command/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-command/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-command/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-command/repos",
+ "events_url": "https://api.github.com/users/nextcloud-command/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-command/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "html_url": "https://github.com/nextcloud/server/commit/f7527c327991677eeb441d45b2bcec1ff936a5c3"
+ }
+ ]
+ },
+ {
+ "sha": "f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "node_id": "C_kwDOA5c8_doAKGY3NTI3YzMyNzk5MTY3N2VlYjQ0MWQ0NWIyYmNlYzFmZjkzNmE1YzM",
+ "commit": {
+ "author": {
+ "name": "fenn-cs",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-21T09:35:34Z"
+ },
+ "committer": {
+ "name": "fenn-cs",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-25T17:16:48Z"
+ },
+ "message": "refactor(SharingDetailsView): Use NC logger\n\nSigned-off-by: fenn-cs ",
+ "tree": {
+ "sha": "85b75220a2211b934193daf1eab38069644d0e96",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/85b75220a2211b934193daf1eab38069644d0e96"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "html_url": "https://github.com/nextcloud/server/commit/f7527c327991677eeb441d45b2bcec1ff936a5c3",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f7527c327991677eeb441d45b2bcec1ff936a5c3/comments",
+ "author": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "html_url": "https://github.com/nextcloud/server/commit/38b5987b40a04cce6868bea2e7c33fe2ecd7e976"
+ }
+ ]
+ },
+ {
+ "sha": "38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "node_id": "C_kwDOA5c8_doAKDM4YjU5ODdiNDBhMDRjY2U2ODY4YmVhMmU3YzMzZmUyZWNkN2U5NzY",
+ "commit": {
+ "author": {
+ "name": "fenn-cs",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-21T09:21:25Z"
+ },
+ "committer": {
+ "name": "fenn-cs",
+ "email": "fenn25.fn@gmail.com",
+ "date": "2024-06-25T17:16:48Z"
+ },
+ "message": "fix(FilesView): Update files view upon share creation/delete\n\nResolves : https://github.com/nextcloud/server/issues/44961\n\nSigned-off-by: fenn-cs ",
+ "tree": {
+ "sha": "e227c6c93de388ed29d5f8c1abc8d14ffedd5f73",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e227c6c93de388ed29d5f8c1abc8d14ffedd5f73"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "html_url": "https://github.com/nextcloud/server/commit/38b5987b40a04cce6868bea2e7c33fe2ecd7e976",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/38b5987b40a04cce6868bea2e7c33fe2ecd7e976/comments",
+ "author": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nfebe",
+ "id": 14317775,
+ "node_id": "MDQ6VXNlcjE0MzE3Nzc1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14317775?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nfebe",
+ "html_url": "https://github.com/nfebe",
+ "followers_url": "https://api.github.com/users/nfebe/followers",
+ "following_url": "https://api.github.com/users/nfebe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nfebe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nfebe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nfebe/subscriptions",
+ "organizations_url": "https://api.github.com/users/nfebe/orgs",
+ "repos_url": "https://api.github.com/users/nfebe/repos",
+ "events_url": "https://api.github.com/users/nfebe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nfebe/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "html_url": "https://github.com/nextcloud/server/commit/61213253104cd5719c1ed9fa74935ea6be5b6719"
+ }
+ ]
+ },
+ {
+ "sha": "61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "node_id": "C_kwDOA5c8_doAKDYxMjEzMjUzMTA0Y2Q1NzE5YzFlZDlmYTc0OTM1ZWE2YmU1YjY3MTk",
+ "commit": {
+ "author": {
+ "name": "Richard Steinmetz",
+ "email": "richard@steinmetz.cloud",
+ "date": "2024-06-25T14:48:30Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T14:48:30Z"
+ },
+ "message": "Merge pull request #45532 from nextcloud/feat/publish-resources-room-update\n\nfeat: implement public OCP api to update resources and rooms",
+ "tree": {
+ "sha": "e7977dcd0970709f9154a682109f25c5e17817d5",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e7977dcd0970709f9154a682109f25c5e17817d5"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeti+CRC1aQ7uu5UhlAAAw6EQAF2TzFXM68NfrVj6GxRfVWW7\nKZbjTMM5Jh2fGnFw0jgvDeLsD1gE9GfMEUCSy2eLwXA7vmnLAiIQcOeifSpPRGqA\ndu/5tH3K0KCDBSPvCUflfW6BCgiHzbt424aWQMTuf6tTQGey8EW5mJnWek4IbGYr\nZzNTLsRAUpGmNfwM+4g0p3/ZD98KriMPKnr9vsF9T6/KG31j8/2gcFFLdh9TXqzs\nNe2LNCSuIwgpxzq/yUp+WTMvCGAvo0YFZGcdEIo7Pst/wZ9j4trjuX3WwC6mZUuY\nKYg+w4TIfGjy53fVlJWaSUnt2N9d6DQHLF4rE8vd6FbgMabpjF0se4YuXzBieukY\nFsE/CQTFxi7ZdNH0fBzLTXw8zSf9/dGTwXRSvcV0zkEfmdTtpy3oqJWn2hXkstTn\nDvtu18aD/t265bMOkZhYQD/nKgeZM6PuamWutqpnJ1np9N+/JOQ3DDPTpWsrujnv\nZDa6O9tavKTJTcFTO+JjBRu4nG8vTt9iffu4X0DQMuM9VhYfYVpvlrV3V+f+ZWND\nRd54CYmlqF4rkhn9cgeTW78WHGWAA0/ih4+km1akafBPhUAIXJphxRiHWzmliiGT\njkFlSvJtDoo3s6OanB0YKDnJB8tKdgQKExKSFcDgsMpMTYtzPH3b3yjON7Iz6beH\niBEI+MBTWYnbOxprf0/r\n=GbLo\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree e7977dcd0970709f9154a682109f25c5e17817d5\nparent ad2fa3724db6edc88a4997678b95e0d90b8bc7fa\nparent 69e0158030e49b3d16276b8488d5dd1c6ffa023b\nauthor Richard Steinmetz 1719326910 +0200\ncommitter GitHub 1719326910 +0200\n\nMerge pull request #45532 from nextcloud/feat/publish-resources-room-update\n\nfeat: implement public OCP api to update resources and rooms",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "html_url": "https://github.com/nextcloud/server/commit/61213253104cd5719c1ed9fa74935ea6be5b6719",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/61213253104cd5719c1ed9fa74935ea6be5b6719/comments",
+ "author": {
+ "login": "st3iny",
+ "id": 1479486,
+ "node_id": "MDQ6VXNlcjE0Nzk0ODY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1479486?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/st3iny",
+ "html_url": "https://github.com/st3iny",
+ "followers_url": "https://api.github.com/users/st3iny/followers",
+ "following_url": "https://api.github.com/users/st3iny/following{/other_user}",
+ "gists_url": "https://api.github.com/users/st3iny/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/st3iny/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/st3iny/subscriptions",
+ "organizations_url": "https://api.github.com/users/st3iny/orgs",
+ "repos_url": "https://api.github.com/users/st3iny/repos",
+ "events_url": "https://api.github.com/users/st3iny/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/st3iny/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "html_url": "https://github.com/nextcloud/server/commit/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa"
+ },
+ {
+ "sha": "69e0158030e49b3d16276b8488d5dd1c6ffa023b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/69e0158030e49b3d16276b8488d5dd1c6ffa023b",
+ "html_url": "https://github.com/nextcloud/server/commit/69e0158030e49b3d16276b8488d5dd1c6ffa023b"
+ }
+ ]
+ },
+ {
+ "sha": "b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "node_id": "C_kwDOA5c8_doAKGI3MjQzNjgxZGQ3MGIyNWZkZWZjOWZlNjJjNjNiYWI4NDA2OTFjOTQ",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-12T09:24:07Z"
+ },
+ "committer": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-25T14:21:01Z"
+ },
+ "message": "feat(dbal): add proper insert ignore conflict method for SQLite\n\nSigned-off-by: Benjamin Gaussorgues ",
+ "tree": {
+ "sha": "63f38202a09e1d171d5edca207e179f5deb35931",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/63f38202a09e1d171d5edca207e179f5deb35931"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQSGKHgskFpnhVO7XZhdrByvqm24gwUCZnrSTwAKCRBdrByvqm24\ng74PAP4nug/6g176OeEHWICsTugVMFAINk4pc/fpXJpKsXLvzQD/U6T99MkaXRWW\nBmIzjB4W9T6fhYjPbddCjhkkDXcERAg=\n=84fm\n-----END PGP SIGNATURE-----",
+ "payload": "tree 63f38202a09e1d171d5edca207e179f5deb35931\nparent 1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01\nauthor Benjamin Gaussorgues 1718184247 +0200\ncommitter Benjamin Gaussorgues 1719325261 +0200\n\nfeat(dbal): add proper insert ignore conflict method for SQLite\n\nSigned-off-by: Benjamin Gaussorgues \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "html_url": "https://github.com/nextcloud/server/commit/b7243681dd70b25fdefc9fe62c63bab840691c94",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/b7243681dd70b25fdefc9fe62c63bab840691c94/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "html_url": "https://github.com/nextcloud/server/commit/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01"
+ }
+ ]
+ },
+ {
+ "sha": "f7b0fa20e98bdaebce6167ff3db1ddc833b52305",
+ "node_id": "C_kwDOA5c8_doAKGY3YjBmYTIwZTk4YmRhZWJjZTYxNjdmZjNkYjFkZGM4MzNiNTIzMDU",
+ "commit": {
+ "author": {
+ "name": "dependabot[bot]",
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "date": "2024-06-25T14:20:17Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T14:20:17Z"
+ },
+ "message": "chore(deps): bump the github-actions group with 3 updates\n\nBumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [cypress-io/github-action](https://github.com/cypress-io/github-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).\n\n\nUpdates `actions/checkout` from 4.1.5 to 4.1.7\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4.1.5...692973e3d937129bcbf40652eb9f2f61becf3332)\n\nUpdates `cypress-io/github-action` from 6.7.0 to 6.7.1\n- [Release notes](https://github.com/cypress-io/github-action/releases)\n- [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/cypress-io/github-action/compare/f88a151c986cab2e339cdbede6a5c4468bb62c17...8d3918616d8ac34caa2b49afc8b408b6a872a6f5)\n\nUpdates `peter-evans/create-pull-request` from 6.0.5 to 6.1.0\n- [Release notes](https://github.com/peter-evans/create-pull-request/releases)\n- [Commits](https://github.com/peter-evans/create-pull-request/compare/6d6857d36972b65feb161a90e484f2984215f83e...c5a7806660adbe173f04e3e038b0ccdcd758773c)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: github-actions\n- dependency-name: cypress-io/github-action\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: github-actions\n- dependency-name: peter-evans/create-pull-request\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: github-actions\n...\n\nSigned-off-by: dependabot[bot] ",
+ "tree": {
+ "sha": "9be80fd982729b077b71c54ce78543cbb7069126",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/9be80fd982729b077b71c54ce78543cbb7069126"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f7b0fa20e98bdaebce6167ff3db1ddc833b52305",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmetIhCRC1aQ7uu5UhlAAA5SsQAG4+TbZ9TF/O+ViDWu88FKji\n9wKGNG7pXR4HZJAvLBs1ugJhipTITeM4AEJo0R7KlvjI3kjvvykxTRPhRUg7c+ru\nL4YknQuqWYjr7oOId7MxhcUnjwxkuQyp5qVL3F4RucxJnbLJIXXgHgBr6OSqHTwe\nw8gvzbg5f7QQ1Jf8VzhoUD4r2TrTvb/sk84OEAMo0NwseTCLinoaxt34JCM9hqrz\nr9gnNwICPBrF3f1eGlPWkKmrUhTO+r3J2/Jjuv3Kk1Vwk1QiDDDTbL1JfwJHEXRw\nHrjRRxO+/JGnXvKMsXbWTn7/wgk0jPfM72jHW/A3U4q+92O7QGHtXbm6FVsMiqBJ\nKvUZIyQUNsovVzgAAtSxIaD8PUiCsPdYx5yzjqSkDeiXSa79GXeEznkAE4jdnTh3\nJSqzaY4HgtX6jo2fBdO3T+OkrNz+92zjUsMraZ0kzOX6GUWadr2sfAsNC+QAdqOV\nGoBA+oTmBmivJ/0yUkIUyomV2kh39QsnMcktlVo3h4Cujzir3aP8zfqG+FmxaDfE\nYRyBu6k1vg/Qsss8x64BziTsT5tG1k2F0FshtN2c2+iBsNbcZNmqShNzvMJjGlxr\nW9iiTLDn072+EfIJJ+U83LMFN2LV1MMgWvv4shpqU61FFLEtpipu8jgOLcdNa9dn\nZr+9ObzwmMRjAbQ/ZIB9\n=ExMi\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 9be80fd982729b077b71c54ce78543cbb7069126\nparent 565809febaa1b2475245f400e53d6f86b80ff630\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1719325217 +0000\ncommitter GitHub 1719325217 +0000\n\nchore(deps): bump the github-actions group with 3 updates\n\nBumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [cypress-io/github-action](https://github.com/cypress-io/github-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).\n\n\nUpdates `actions/checkout` from 4.1.5 to 4.1.7\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4.1.5...692973e3d937129bcbf40652eb9f2f61becf3332)\n\nUpdates `cypress-io/github-action` from 6.7.0 to 6.7.1\n- [Release notes](https://github.com/cypress-io/github-action/releases)\n- [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/cypress-io/github-action/compare/f88a151c986cab2e339cdbede6a5c4468bb62c17...8d3918616d8ac34caa2b49afc8b408b6a872a6f5)\n\nUpdates `peter-evans/create-pull-request` from 6.0.5 to 6.1.0\n- [Release notes](https://github.com/peter-evans/create-pull-request/releases)\n- [Commits](https://github.com/peter-evans/create-pull-request/compare/6d6857d36972b65feb161a90e484f2984215f83e...c5a7806660adbe173f04e3e038b0ccdcd758773c)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: github-actions\n- dependency-name: cypress-io/github-action\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: github-actions\n- dependency-name: peter-evans/create-pull-request\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: github-actions\n...\n\nSigned-off-by: dependabot[bot] ",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f7b0fa20e98bdaebce6167ff3db1ddc833b52305",
+ "html_url": "https://github.com/nextcloud/server/commit/f7b0fa20e98bdaebce6167ff3db1ddc833b52305",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f7b0fa20e98bdaebce6167ff3db1ddc833b52305/comments",
+ "author": {
+ "login": "dependabot[bot]",
+ "id": 49699333,
+ "node_id": "MDM6Qm90NDk2OTkzMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/dependabot%5Bbot%5D",
+ "html_url": "https://github.com/apps/dependabot",
+ "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "565809febaa1b2475245f400e53d6f86b80ff630",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/565809febaa1b2475245f400e53d6f86b80ff630",
+ "html_url": "https://github.com/nextcloud/server/commit/565809febaa1b2475245f400e53d6f86b80ff630"
+ }
+ ]
+ },
+ {
+ "sha": "ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "node_id": "C_kwDOA5c8_doAKGFkMmZhMzcyNGRiNmVkYzg4YTQ5OTc2NzhiOTVlMGQ5MGI4YmM3ZmE",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "213943+nickvergessen@users.noreply.github.com",
+ "date": "2024-06-25T14:09:38Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T14:09:38Z"
+ },
+ "message": "Merge pull request #46095 from nextcloud/techdebt/44770/migrate-server-notifier-to-new-exceptions\n\nfeat(notifications): Migrate server INotifiers to new exceptions",
+ "tree": {
+ "sha": "ae9a2d5e1b97dde8673f75aaef18a00e58fa4bbd",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/ae9a2d5e1b97dde8673f75aaef18a00e58fa4bbd"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmes+jCRC1aQ7uu5UhlAAAhuAQAG3fADfYhTajZEw5gLpMNgiq\nuNdQsdavpdGxrGHGrCtbQaDyyujQhT/pAxc97YwxF0v6R9olUddNvxHg2HvJkR+M\nJyKM4A9ryhZqMVjthTW7LMcLCf7r8zCWUiXcvzdjXKUbQgP3T3mcOnrubCMZhrwg\nhys4wc3hHcvZnDvIJa32gxeFKBtjSoEfhv9acq6dCFD+V0X0fDV6/Z9L1qML+H/U\nRJpZzJrkZ9+VFETal/jm3RrNZkd97unFGk6NWVxJG9FXXiURKx06I9BrBoQFRKQP\nHAuyELaXyTtpH1DIx03fEIdccHJotCgbww4jtWUPIGR0DuDDVgvtDsnrRa0iCq39\n3riqi5mP22gVlx3CHdL5lON51wzqmpyg6H7fCpbDgsz5MEUumV29YNFBP3935gOs\nD6amun8u7MtZwdGMqQRq/pryzXhm3zuYbS5V62kr/Uwe2yzBztc01GXJAe+/ICX8\n23eeV4++ZeK7S6iJUcb3gimUUXk+zAYa8nL4mQASVs7zez2NTFm+0lWlfp1YpjEf\n+JDiQx6CJW3BlVsROQ1of12FXfMtDF86SgXV98yn7QHa1+FAZiugxQ0XNLsgdkLE\nl4Tgis+EKskLtWtNEoV7g1F/do7do4NtsSOEqoesHFBoEPutOdGuFGd24n8h3QeX\nFSiFHwgiLcciyxdBUfa8\n=e/78\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree ae9a2d5e1b97dde8673f75aaef18a00e58fa4bbd\nparent 565809febaa1b2475245f400e53d6f86b80ff630\nparent 8130968a352bcf66606a076598fa4a58a291bc6d\nauthor Joas Schilling <213943+nickvergessen@users.noreply.github.com> 1719324578 +0200\ncommitter GitHub 1719324578 +0200\n\nMerge pull request #46095 from nextcloud/techdebt/44770/migrate-server-notifier-to-new-exceptions\n\nfeat(notifications): Migrate server INotifiers to new exceptions",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "html_url": "https://github.com/nextcloud/server/commit/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ad2fa3724db6edc88a4997678b95e0d90b8bc7fa/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "565809febaa1b2475245f400e53d6f86b80ff630",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/565809febaa1b2475245f400e53d6f86b80ff630",
+ "html_url": "https://github.com/nextcloud/server/commit/565809febaa1b2475245f400e53d6f86b80ff630"
+ },
+ {
+ "sha": "8130968a352bcf66606a076598fa4a58a291bc6d",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8130968a352bcf66606a076598fa4a58a291bc6d",
+ "html_url": "https://github.com/nextcloud/server/commit/8130968a352bcf66606a076598fa4a58a291bc6d"
+ }
+ ]
+ },
+ {
+ "sha": "565809febaa1b2475245f400e53d6f86b80ff630",
+ "node_id": "C_kwDOA5c8_doAKDU2NTgwOWZlYmFhMWIyNDc1MjQ1ZjQwMGU1M2Q2Zjg2YjgwZmY2MzA",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "213943+nickvergessen@users.noreply.github.com",
+ "date": "2024-06-25T14:07:52Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T14:07:52Z"
+ },
+ "message": "Merge pull request #46104 from nextcloud/build/depependabot\n\nbuild(deps): disable dependabot for EOL 27",
+ "tree": {
+ "sha": "301bed49be9c06859052d28156d4ad25ceddbb50",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/301bed49be9c06859052d28156d4ad25ceddbb50"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/565809febaa1b2475245f400e53d6f86b80ff630",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmes84CRC1aQ7uu5UhlAAA/vMQAFTm4UQ8pMFnvRkzj1DEk/Ag\nFKOO9X0S9cDTq5pi+UP4KBfUBoEMDmVMsn20zpFN3mFuwS7kOjPdj0o0cFON0bAT\noRozVnL32riF/HQC4CLKPAHP0wxOMGZSla6kDCInua5mESdRcj7aHUdhGp6Z+tTC\nnffi4irE3QYKgFJXiVp+1RtnKevtob7/4an8z2xpNp8xv7oEqVEzdfNDV0s/Soh5\nImZBjocK6FzfEEKmSt5hc8hCNkcM7/rdAGV/E2GKHhVBtH53QkzABR4XT3C0Zthv\nxmGcyLgcJZbG7bogHue+Lx8rXmdGQixW1KvgLdzAEyklN5w3RhM7mO0OuNKi+05V\noDjTlGKG4NDndh+BxHle0K2SEnqO2HKTcoZJzCTVYtozp18czitAmVsa7KqF7IHU\nAhtpiuRh1j20ugEvSSDGld/lY+Jv8ErohBt8l11KAtfap7rYJac6j+CBNaOrqTd8\nKX4P5AwH3gNTrIATxnUtRUQxpBL15m44HrS2pjwS7DHViitNaZ6XcgQG0xPgqwkp\nxaCOa/6qDAuFozaFpph41PVPCkpAO85ibOPBxEEwyS+/b1w9y2jGVLaPEIhxTG/h\n0gYvTVFCsTUBnT2qGa0ydfSHeXsxbdaYrnqA+zL2M4XRGby2JjjPSfoz89LIPJno\nPbEQ1ptK6ToG/kkNnBYZ\n=gqtx\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 301bed49be9c06859052d28156d4ad25ceddbb50\nparent eed6216d55ca69784b78214de00286d6055be704\nparent 9c50516076d7b73e390b0dca8db1de82efa88be7\nauthor Joas Schilling <213943+nickvergessen@users.noreply.github.com> 1719324472 +0200\ncommitter GitHub 1719324472 +0200\n\nMerge pull request #46104 from nextcloud/build/depependabot\n\nbuild(deps): disable dependabot for EOL 27",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/565809febaa1b2475245f400e53d6f86b80ff630",
+ "html_url": "https://github.com/nextcloud/server/commit/565809febaa1b2475245f400e53d6f86b80ff630",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/565809febaa1b2475245f400e53d6f86b80ff630/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "eed6216d55ca69784b78214de00286d6055be704",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "html_url": "https://github.com/nextcloud/server/commit/eed6216d55ca69784b78214de00286d6055be704"
+ },
+ {
+ "sha": "9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "html_url": "https://github.com/nextcloud/server/commit/9c50516076d7b73e390b0dca8db1de82efa88be7"
+ }
+ ]
+ },
+ {
+ "sha": "9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "node_id": "C_kwDOA5c8_doAKDljNTA1MTYwNzZkN2I3M2UzOTBiMGRjYThkYjFkZTgyZWZhODhiZTc",
+ "commit": {
+ "author": {
+ "name": "Arthur Schiwon",
+ "email": "blizzz@arthur-schiwon.de",
+ "date": "2024-06-25T13:15:18Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T13:15:18Z"
+ },
+ "message": "build(deps): disable dependabot for EOL 27\n\nSigned-off-by: Arthur Schiwon ",
+ "tree": {
+ "sha": "301bed49be9c06859052d28156d4ad25ceddbb50",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/301bed49be9c06859052d28156d4ad25ceddbb50"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmesLmCRC1aQ7uu5UhlAAANjUQAFrA9awzMJMAkVcZZzUWWLab\nsUJGvhftAzzjt5WFaOu+NK5LHV0gUXsv06amOzNzDrL3ldZqbl4pvwnKsOqjK8qt\nwbC3JehfkbHRpwhF8rqUvXQvXNY4FjXm1aC626P2QW0ZqQdrO++OZLqrGZF7LDLw\nGUxTmzg0bL4Tk9iDZyKeFhxpWDb+TFca6S4bdP2sFVAZyeobKLnqCEvWgsHJvUfz\nZfWSvBBJ6Zwc+7sTreaVC9rHaTfrjrFA1qFylVKVRMgqOg8NoE9wbB0LAeR5mitc\n/uR/ktjdjr1r0FTZj8ksXAaZhzPvasSl0pkda4jzDViAxvgeex+gj0gkUr6n8rzW\nOpkJ8ionJjYSimkRw4TnYlXoShMAhNQWaNLg3kSsMomiZeBjePnImouZKyo8jbJK\nt25U0NiTlag2H/oNtOCopdXsyRuC/XdecWN4YSOdxdRhpfO4fokOxPUP6ASWeaNX\nFsp1as8s5BqXkBd7PBW9IlkEakWUVCcfRWZGfPrPPqCLxvg5ymR7Hqr8mX5rf5tx\nqHE+8E8Lbvf4Nj+8OyrSkjwVQEbzK659aMt8Eqp7zHTEUrfJMCGvZ2FtNh0U1zJy\n6O8FH9MUep8YSjgtSIHqh1532SS7xboYDUDdrxdyCVXlA+FrQT2i8ztIe3wVCGhb\nLhkMQ2TUWprkVaxo8Zrk\n=9y7G\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 301bed49be9c06859052d28156d4ad25ceddbb50\nparent eed6216d55ca69784b78214de00286d6055be704\nauthor Arthur Schiwon 1719321318 +0200\ncommitter GitHub 1719321318 +0200\n\nbuild(deps): disable dependabot for EOL 27\n\nSigned-off-by: Arthur Schiwon ",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "html_url": "https://github.com/nextcloud/server/commit/9c50516076d7b73e390b0dca8db1de82efa88be7",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9c50516076d7b73e390b0dca8db1de82efa88be7/comments",
+ "author": {
+ "login": "blizzz",
+ "id": 2184312,
+ "node_id": "MDQ6VXNlcjIxODQzMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2184312?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/blizzz",
+ "html_url": "https://github.com/blizzz",
+ "followers_url": "https://api.github.com/users/blizzz/followers",
+ "following_url": "https://api.github.com/users/blizzz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blizzz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blizzz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blizzz/subscriptions",
+ "organizations_url": "https://api.github.com/users/blizzz/orgs",
+ "repos_url": "https://api.github.com/users/blizzz/repos",
+ "events_url": "https://api.github.com/users/blizzz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blizzz/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "eed6216d55ca69784b78214de00286d6055be704",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "html_url": "https://github.com/nextcloud/server/commit/eed6216d55ca69784b78214de00286d6055be704"
+ }
+ ]
+ },
+ {
+ "sha": "f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "node_id": "C_kwDOA5c8_doAKGY3M2M1YzRhYTllOWM4YjFiYWUxMzU5MzljNTJhMDExNTk3OGQyNDE",
+ "commit": {
+ "author": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-19T09:52:32Z"
+ },
+ "committer": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-25T10:24:47Z"
+ },
+ "message": "chore: don't pass null to createElement\n\nSigned-off-by: Daniel Kesselberg ",
+ "tree": {
+ "sha": "b19a383f5cf5f6ba4399d2657c38306c1c0d3f56",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/b19a383f5cf5f6ba4399d2657c38306c1c0d3f56"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "html_url": "https://github.com/nextcloud/server/commit/f73c5c4aa9e9c8b1bae135939c52a0115978d241",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/f73c5c4aa9e9c8b1bae135939c52a0115978d241/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "html_url": "https://github.com/nextcloud/server/commit/1fa37ed2dc4521a086763c5bf8354f002335057c"
+ }
+ ]
+ },
+ {
+ "sha": "1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "node_id": "C_kwDOA5c8_doAKDFmYTM3ZWQyZGM0NTIxYTA4Njc2M2M1YmY4MzU0ZjAwMjMzNTA1N2M",
+ "commit": {
+ "author": {
+ "name": "Daniel Kesselberg",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-13T16:27:53Z"
+ },
+ "committer": {
+ "name": "Daniel",
+ "email": "mail@danielkesselberg.de",
+ "date": "2024-06-25T10:24:47Z"
+ },
+ "message": "refactor(dav): migrate to new http client\n\nThe request method is available since 29 and thus we can finally use the modern http client to send the report request for the addressbook sync.\n\nSigned-off-by: Daniel Kesselberg ",
+ "tree": {
+ "sha": "a4ca0b1697fbaa95c0b6131e492750b1705b94dd",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a4ca0b1697fbaa95c0b6131e492750b1705b94dd"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "comment_count": 0,
+ "verification": {
+ "verified": false,
+ "reason": "unsigned",
+ "signature": null,
+ "payload": null,
+ "verified_at": null
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "html_url": "https://github.com/nextcloud/server/commit/1fa37ed2dc4521a086763c5bf8354f002335057c",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1fa37ed2dc4521a086763c5bf8354f002335057c/comments",
+ "author": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "kesselb",
+ "id": 3902676,
+ "node_id": "MDQ6VXNlcjM5MDI2NzY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3902676?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/kesselb",
+ "html_url": "https://github.com/kesselb",
+ "followers_url": "https://api.github.com/users/kesselb/followers",
+ "following_url": "https://api.github.com/users/kesselb/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kesselb/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kesselb/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kesselb/subscriptions",
+ "organizations_url": "https://api.github.com/users/kesselb/orgs",
+ "repos_url": "https://api.github.com/users/kesselb/repos",
+ "events_url": "https://api.github.com/users/kesselb/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kesselb/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "eed6216d55ca69784b78214de00286d6055be704",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "html_url": "https://github.com/nextcloud/server/commit/eed6216d55ca69784b78214de00286d6055be704"
+ }
+ ]
+ },
+ {
+ "sha": "8130968a352bcf66606a076598fa4a58a291bc6d",
+ "node_id": "C_kwDOA5c8_doAKDgxMzA5NjhhMzUyYmNmNjY2MDZhMDc2NTk4ZmE0YTU4YTI5MWJjNmQ",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-25T09:20:48Z"
+ },
+ "committer": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-25T09:56:24Z"
+ },
+ "message": "feat(notifications): Migrate server INotifiers to new exceptions\n\nSigned-off-by: Joas Schilling ",
+ "tree": {
+ "sha": "ed7d9c5bfc0d7e1b3c63348f0416d96cb51fb6ef",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/ed7d9c5bfc0d7e1b3c63348f0416d96cb51fb6ef"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/8130968a352bcf66606a076598fa4a58a291bc6d",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEeTlbhmhUfufmF5NLdENO/g0uIgUFAmZ6lEkACgkQdENO/g0u\nIgWeeBAAkoHOZ/9oGnSNOElp+Ivb+/+GrUa2LnSLL9eKNNoMpyyDtYkTbZkJJHcJ\nn/Uk/DTrMeqiBEhTCh//kpxpKRkEKNf96glz6pWirD7k+QD+/2Pl+bi+JNn4oBY9\nQaCbBYApks0YYiYA/40reav6cVNdheE8MLZZUkzhTyoBkc6zYpL4BW8X6mpeEzeO\nwW1MWP77usx3uA/FA1atSW20yedJ1LUId7g329C1WDrsKqjnSUdI+VkQgzzFOjpT\nKdiQYAF2vrJuTfBHY+xm60umGSIfFo+Cwn4hACplXqvvtxVNvAFz0DBeGWFPMaex\n8ASrKJmzUOui36497f9CQiQOULIqqPFzskGNkwGf8t7sdjJw/8pQvtJ23Ndz2IiG\nJPTjvuZ9Vdi0jN2BlrzDpftwSobWF6Mt4uqtHjC2+VWMcY1WAtTavhInrw9wokRt\nY5i3nL6lDpuzrkX4sKYGE+HYrUjTIuWmePGcX6sD0TO5k8hiIiFXn3bSD23tdoxS\n52Ye8VBdt+fnCOaRzEDY/FHJYx8AlF4pXEIBKAaiXJiam9Z7c+4RR+4dtVDy6Bto\nQ+6iTrukoGIOfoBlVl81JmpKpyXJ2FlLfXPlY2+m5HrgY8IFRH06N1eM/+goOJVp\nKCDa2tHbaX3CX2jtf62Zg599U+3H+y5nK4BQlCTYGJww9IUyrwo=\n=nwM7\n-----END PGP SIGNATURE-----",
+ "payload": "tree ed7d9c5bfc0d7e1b3c63348f0416d96cb51fb6ef\nparent 9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a\nauthor Joas Schilling 1719307248 +0200\ncommitter Joas Schilling 1719309384 +0200\n\nfeat(notifications): Migrate server INotifiers to new exceptions\n\nSigned-off-by: Joas Schilling \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/8130968a352bcf66606a076598fa4a58a291bc6d",
+ "html_url": "https://github.com/nextcloud/server/commit/8130968a352bcf66606a076598fa4a58a291bc6d",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/8130968a352bcf66606a076598fa4a58a291bc6d/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "html_url": "https://github.com/nextcloud/server/commit/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a"
+ }
+ ]
+ },
+ {
+ "sha": "eed6216d55ca69784b78214de00286d6055be704",
+ "node_id": "C_kwDOA5c8_doAKGVlZDYyMTZkNTVjYTY5Nzg0Yjc4MjE0ZGUwMDI4NmQ2MDU1YmU3MDQ",
+ "commit": {
+ "author": {
+ "name": "Anna",
+ "email": "anna@nextcloud.com",
+ "date": "2024-06-25T09:32:12Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T09:32:12Z"
+ },
+ "message": "Merge pull request #46077 from nextcloud/bugfix/noid/user-status-automation\n\nfix(userstatus): Fix user status automation in real-life scenario",
+ "tree": {
+ "sha": "aa99cb7589f5e9c0da4228218e06d7a49178a4d2",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/aa99cb7589f5e9c0da4228218e06d7a49178a4d2"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeo6cCRC1aQ7uu5UhlAAA7RkQABuRQ9dfUqTXwUEvAWwFirsk\ndv9gfGiWKySRvjXd4b5K20twHLPj8DGBwMfa+ZM1XQrU2r68FcUAOanZ0A4TIq8H\n1joMoEOOUw6oAya1MsP1KPJguc8ru/mAEh+KjQm5nIEyO3u6kf3OP755zXgg+0uZ\nEu7o2HVh8UxyY2OiZw1dhvQDKrgSDqKv4WgVeOVfmOwCBQ4wwnmJfOO5+Gu4c5N8\n7VzEwGXBKsIpTHjwFoKu7J5TlftT79rLd0V6avOHGuK9x27rEB8lWD//WiZYqmjZ\nQ35ARS8DNeGIxpUX1X5VhNJwdKxYCFUUPq9I1e4W2E7TERx1/Nj4+wp6pb/zwALB\niTXCHRBmndTLvenhGktWJmAdS3/GX7tknLEfHTuSftUsjt7Pd/8oHQs1kijhdVZJ\nJyqdmHWaU/d5B6Iy4YEvU4+4fLq0ajDM7oO3M2aBQNJJdiaZHi83osgpEPgTZmXk\nAFq65cn4J0hnLZl92+7cZDiRs5T8l/O4ZqynsEA4kzmqJ07YOX8h3RrWQav4YQsw\nqEr/HKeUHffEthWs59IwyXHDpCaZ4u5cOVID77iRJSDbUeAr5acGr12R+0HIpdSu\n6HxnxQ/eWjD8U/H7LOMhelDTabIQLANXzBVPumAm04fq2SnNvoYWeXg9uvyh/Z7b\n7jpKbMY1eC7jjJ79YxQ/\n=dIGO\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree aa99cb7589f5e9c0da4228218e06d7a49178a4d2\nparent 9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a\nparent 2c977d2b6e97a29172b1df6a2a38cceea77a643c\nauthor Anna 1719307932 +0200\ncommitter GitHub 1719307932 +0200\n\nMerge pull request #46077 from nextcloud/bugfix/noid/user-status-automation\n\nfix(userstatus): Fix user status automation in real-life scenario",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704",
+ "html_url": "https://github.com/nextcloud/server/commit/eed6216d55ca69784b78214de00286d6055be704",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/eed6216d55ca69784b78214de00286d6055be704/comments",
+ "author": {
+ "login": "miaulalala",
+ "id": 7427347,
+ "node_id": "MDQ6VXNlcjc0MjczNDc=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7427347?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/miaulalala",
+ "html_url": "https://github.com/miaulalala",
+ "followers_url": "https://api.github.com/users/miaulalala/followers",
+ "following_url": "https://api.github.com/users/miaulalala/following{/other_user}",
+ "gists_url": "https://api.github.com/users/miaulalala/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/miaulalala/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/miaulalala/subscriptions",
+ "organizations_url": "https://api.github.com/users/miaulalala/orgs",
+ "repos_url": "https://api.github.com/users/miaulalala/repos",
+ "events_url": "https://api.github.com/users/miaulalala/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/miaulalala/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "html_url": "https://github.com/nextcloud/server/commit/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a"
+ },
+ {
+ "sha": "2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "html_url": "https://github.com/nextcloud/server/commit/2c977d2b6e97a29172b1df6a2a38cceea77a643c"
+ }
+ ]
+ },
+ {
+ "sha": "1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "node_id": "C_kwDOA5c8_doAKDFlMTk1NjZhYTRmYTZmMDhmMDFlYmFkOGE3ZDIxZWJiMDk3NGFlMDE",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-05T09:20:45Z"
+ },
+ "committer": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-25T09:28:37Z"
+ },
+ "message": "feat(dbal): add proper insert ignore conflict method for MySQL\n\nSigned-off-by: Benjamin Gaussorgues ",
+ "tree": {
+ "sha": "bbf3101e0f7bc6dfb652e14631dc94ad6599fc63",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/bbf3101e0f7bc6dfb652e14631dc94ad6599fc63"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQSGKHgskFpnhVO7XZhdrByvqm24gwUCZnqNxQAKCRBdrByvqm24\ng/YcAPsFpZ3TRANgNLn3ZQFNs4nHKByCtBftET4F1E6wo2PzLQD9FR7p/nqnc3ip\nEGZCVVEggpYmQAoUnL8jIwIMCDujWwo=\n=VaOw\n-----END PGP SIGNATURE-----",
+ "payload": "tree bbf3101e0f7bc6dfb652e14631dc94ad6599fc63\nparent 4680bc47c21d3a42f20ee970032ecc7d26db0f1c\nauthor Benjamin Gaussorgues 1717579245 +0200\ncommitter Benjamin Gaussorgues 1719307717 +0200\n\nfeat(dbal): add proper insert ignore conflict method for MySQL\n\nSigned-off-by: Benjamin Gaussorgues \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "html_url": "https://github.com/nextcloud/server/commit/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1e19566aa4fa6f08f01ebad8a7d21ebb0974ae01/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "4680bc47c21d3a42f20ee970032ecc7d26db0f1c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4680bc47c21d3a42f20ee970032ecc7d26db0f1c",
+ "html_url": "https://github.com/nextcloud/server/commit/4680bc47c21d3a42f20ee970032ecc7d26db0f1c"
+ }
+ ]
+ },
+ {
+ "sha": "9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "node_id": "C_kwDOA5c8_doAKDk0OTZjZTZjN2EzNWY1YTZkMTUxYjc4ZDc4YTQ1YjFjOTAwYjNiMmE",
+ "commit": {
+ "author": {
+ "name": "Côme Chilliet",
+ "email": "91878298+come-nc@users.noreply.github.com",
+ "date": "2024-06-25T08:24:01Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T08:24:01Z"
+ },
+ "message": "Merge pull request #46079 from nextcloud/fix/well-known-checks\n\nfix(settings): make trailing slash for caldav/carddav redirects optional",
+ "tree": {
+ "sha": "4d093c7fbc32f77aba6637a9b64f6c52d241a7d3",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/4d093c7fbc32f77aba6637a9b64f6c52d241a7d3"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmen6hCRC1aQ7uu5UhlAAAvIUQAEVX4m5uXSFXYX0fzLMzvGLf\npyrY1qo5leZP8wMd62+XlpfIsk7aEch3ffdwVUOX//5ichj/E7aJYcIWIh2ys8iO\nHwyaOhvxRTOZq49grfqr7YfhJNk9ryhvFpKgC48l2CDqQ7LMBIunN8tWgC85tPCj\nNtWhUnm7vkH6ZSrIOBNAx1jI7TokcqCctThbDDCGqDCeTbqdzSIURcVcheuVXPGM\nhft0X4YS881kED+wP0Jie7Ep3C/GY4Cdgz/h/dSQP0lZQ0A2qF8u14YaajRIDQOi\nf8miRg1E0/lGD8QLgMuYDT9AjMNqJpmfKnr3LrBp5nLQyYth3jPr8keozSJkgjY+\nJ9lKxFSVmLtaTpAbtDR7l65XpvIthjqCBSixgR4PoDEnxJ8xB1CNsYbKDYNbob3y\np6LajfqTig0rHfxmmEUcKAWf3SP84x0d43gkDTpkVuItowgU3Gjc551A8WgaL5lg\nQTMLym5z7xzjyVtM3O+YJ6Utf0zmFVLX7E2+MbBqYpT1vAkGTRGOPyCsBGhCGu8g\ni/OhuZ2SCZKLMU6WtfIIUl3QNlAtDrVz3ICrXFiRVPOgg8YEPslhpCZA0BAB06ox\njSJOzS/LcKBdmwOfNmUCmwCrDu6y5fNQGLJrTIGx9SPrnyDjcCzog19xwcrKsUJX\nQM31Xmin0/N2L+SAZE0v\n=McRT\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 4d093c7fbc32f77aba6637a9b64f6c52d241a7d3\nparent 369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19\nparent ea994fe8fb093a7f33967d3380a67645353475dd\nauthor Côme Chilliet <91878298+come-nc@users.noreply.github.com> 1719303841 +0200\ncommitter GitHub 1719303841 +0200\n\nMerge pull request #46079 from nextcloud/fix/well-known-checks\n\nfix(settings): make trailing slash for caldav/carddav redirects optional",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "html_url": "https://github.com/nextcloud/server/commit/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/9496ce6c7a35f5a6d151b78d78a45b1c900b3b2a/comments",
+ "author": {
+ "login": "come-nc",
+ "id": 91878298,
+ "node_id": "U_kgDOBXnzmg",
+ "avatar_url": "https://avatars.githubusercontent.com/u/91878298?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/come-nc",
+ "html_url": "https://github.com/come-nc",
+ "followers_url": "https://api.github.com/users/come-nc/followers",
+ "following_url": "https://api.github.com/users/come-nc/following{/other_user}",
+ "gists_url": "https://api.github.com/users/come-nc/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/come-nc/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/come-nc/subscriptions",
+ "organizations_url": "https://api.github.com/users/come-nc/orgs",
+ "repos_url": "https://api.github.com/users/come-nc/repos",
+ "events_url": "https://api.github.com/users/come-nc/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/come-nc/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "html_url": "https://github.com/nextcloud/server/commit/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19"
+ },
+ {
+ "sha": "ea994fe8fb093a7f33967d3380a67645353475dd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ea994fe8fb093a7f33967d3380a67645353475dd",
+ "html_url": "https://github.com/nextcloud/server/commit/ea994fe8fb093a7f33967d3380a67645353475dd"
+ }
+ ]
+ },
+ {
+ "sha": "369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "node_id": "C_kwDOA5c8_doAKDM2OWM1NTJlNDFiYzZlNTYwYjNkYmNkMjlmOGIwYmNmN2ZhMjhmMTk",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-25T07:48:24Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-25T07:48:24Z"
+ },
+ "message": "Merge pull request #46073 from nextcloud/fix/save_global_credentials",
+ "tree": {
+ "sha": "88fa06813529061decb1085f207a2d700fa06cee",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/88fa06813529061decb1085f207a2d700fa06cee"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmenZJCRC1aQ7uu5UhlAAAZ+8QACvRaOtpn38f0cl3qZUUr71h\n1i+iHdlHdmGtDqoQudhee21Qinxqaq8w5O8BHRvnmnMvyV2Wky5WnBR29PuA8KcI\nev5iuaKfzX32V/ZGWfmCGHwehBQulg6U/B5HWrX9u+BGd3O4oB5LZ0gvxVgAtO+y\nhuFigUvQqu+K19xxfM9YmjnshzhDdDD3wz1LUtKbAns+jLNGOjlykAWxfFKl/iu3\ng4VG/h3Bmid6ps/I4qHdy+AAcNOesuPLKET9xySGlKhSJEn2NVZ3ADnTPlCMxSwU\nWl6HJUc+j5h28bM1rOrcESmqRKHU/mNmdhy+zGUuQHEyqCWWyBZLAGtY6IKk/RvW\nIJY9NrhxIwkXQ/QfdsJlB7DtIP04cF5NfnHQ9H4dHBnIFRBynJKaIWfiTSjoyqwC\nKgigueWE8GmIE2Hw2E67MMUOrbWXEnXlgd3N8BZe/GZlT/Xe8zjIe7h4UAy6yrMC\nC6p2AhjNd26QUtaGoXr3ZlZ2G2aTcxGzr1p4pzJHonLWUc8LqDawI1V6dFT7Zk4b\n5GaZ7ClYCtGqEObY0S/AuUpkbaPQdDzddvVrRyBcKzWb+2GdBKI2kXERHK4CXRZh\n5sxXRUiwcWDH7ObNLxd0QbO/vyVNUB5GLBgDN4HZU4dpz0Xe3vz6Fez1aF+ReWCL\nc26MWQOcdLO/KM8AvpHt\n=S9/u\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 88fa06813529061decb1085f207a2d700fa06cee\nparent ffa8b00bdd74349938cf7a1d433420d0d91adf91\nparent e93866f90496bb7e8f9a99c56f1cc583d79051fd\nauthor Benjamin Gaussorgues 1719301704 +0200\ncommitter GitHub 1719301704 +0200\n\nMerge pull request #46073 from nextcloud/fix/save_global_credentials\n\n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "html_url": "https://github.com/nextcloud/server/commit/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/369c552e41bc6e560b3dbcd29f8b0bcf7fa28f19/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "html_url": "https://github.com/nextcloud/server/commit/ffa8b00bdd74349938cf7a1d433420d0d91adf91"
+ },
+ {
+ "sha": "e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "html_url": "https://github.com/nextcloud/server/commit/e93866f90496bb7e8f9a99c56f1cc583d79051fd"
+ }
+ ]
+ },
+ {
+ "sha": "2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "node_id": "C_kwDOA5c8_doAKDJjOTc3ZDJiNmU5N2EyOTE3MmIxZGY2YTJhMzhjY2VlYTc3YTY0M2M",
+ "commit": {
+ "author": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-24T14:28:43Z"
+ },
+ "committer": {
+ "name": "Joas Schilling",
+ "email": "coding@schilljs.com",
+ "date": "2024-06-25T07:29:35Z"
+ },
+ "message": "fix(userstatus): Fix user status automation in real-life scenario\n\nOrder of applying:\n- Out-of-office\n- Availability\n- Call\n- Meeting\n- User status\n\nSigned-off-by: Joas Schilling ",
+ "tree": {
+ "sha": "65b24b5879d9a07a1626497d93e9c0bf35f13483",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/65b24b5879d9a07a1626497d93e9c0bf35f13483"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEeTlbhmhUfufmF5NLdENO/g0uIgUFAmZ6ceAACgkQdENO/g0u\nIgXgmBAAh5KeWEeg2dYEbI25sMy3XlVMdgZEkubQimFo69NLXxnanNIWHXkjVdHc\nslIT+s5ZY1nNZ+52pptFdQ/fnF5be8u+FUGfPRNcxWTS13pWzM4GSsHY9659LkeR\nW4uPc2vfK3UktQSC+CvYQMmC7FySUDA/DUM3uLB7lBMhdf8gm6gppxuzrABZsQHR\n27LPURhZ4EG3KglgtYr1XnUN1U76X88uNKwtXen9IM6HgW1jDViNMLou3iyuKLJk\n8ayUmn67sb2o6yKWC1PMLiqJAxMuGzUzJQouhcfAqWh4mrVgyLEOraxooO8wgPgE\n77WPKsv5yVMFczoZPjMOZ39iAl3GOzIa3Q1IFBHtDlsHEdfjWCNrTCkGTrBejQ3D\nU43Lp5SZVTG5OnMX/P6oo053rIftj+/G1MObuhES/96EmngmuyKz0iterf7PcnQL\nfzS2Yd3LFLdtUPGc5+fxIXwb2x68FJ1Pj1o9Zs+BZseNpFvZ3iiYUKlYp84lMQ0k\nl8jGFiyDWyyv6lzQpeiTMx9+lmJ+PC76Y5Jua6n9K7G+BjVthSKx9pN+97o9rTUX\n3WQpOBp3qaDWaRCAvsbYxyvtMNf5q9LnbX0nNEdWGYaAfdlgWT6BbhVaJkN6sxw8\n52DThByFWPJYiWok4BPq+8zD/ybzEBX0uzEF9jGgwP/5TfFLg2o=\n=l0GQ\n-----END PGP SIGNATURE-----",
+ "payload": "tree 65b24b5879d9a07a1626497d93e9c0bf35f13483\nparent 879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd\nauthor Joas Schilling 1719239323 +0200\ncommitter Joas Schilling 1719300575 +0200\n\nfix(userstatus): Fix user status automation in real-life scenario\n\nOrder of applying:\n- Out-of-office\n- Availability\n- Call\n- Meeting\n- User status\n\nSigned-off-by: Joas Schilling \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "html_url": "https://github.com/nextcloud/server/commit/2c977d2b6e97a29172b1df6a2a38cceea77a643c",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/2c977d2b6e97a29172b1df6a2a38cceea77a643c/comments",
+ "author": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nickvergessen",
+ "id": 213943,
+ "node_id": "MDQ6VXNlcjIxMzk0Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/213943?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nickvergessen",
+ "html_url": "https://github.com/nickvergessen",
+ "followers_url": "https://api.github.com/users/nickvergessen/followers",
+ "following_url": "https://api.github.com/users/nickvergessen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nickvergessen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nickvergessen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nickvergessen/subscriptions",
+ "organizations_url": "https://api.github.com/users/nickvergessen/orgs",
+ "repos_url": "https://api.github.com/users/nickvergessen/repos",
+ "events_url": "https://api.github.com/users/nickvergessen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nickvergessen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "html_url": "https://github.com/nextcloud/server/commit/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd"
+ }
+ ]
+ },
+ {
+ "sha": "ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "node_id": "C_kwDOA5c8_doAKGZmYThiMDBiZGQ3NDM0OTkzOGNmN2ExZDQzMzQyMGQwZDkxYWRmOTE",
+ "commit": {
+ "author": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-25T00:19:52Z"
+ },
+ "committer": {
+ "name": "Nextcloud bot",
+ "email": "bot@nextcloud.com",
+ "date": "2024-06-25T00:19:52Z"
+ },
+ "message": "Fix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot ",
+ "tree": {
+ "sha": "e47c78e5274cb1638db0c7928307f8204a1b752e",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/e47c78e5274cb1638db0c7928307f8204a1b752e"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEi1J0rubsnAaw3aqWEw2rhtP7NWwFAmZ6DSkACgkQEw2rhtP7\nNWxrzw//Y8mLtNECvEbZaLLW5xKlCanwP7qGQAPQKECkIhMhhNUdZoZ9iJcCZE2Z\nVjiFR5Dkhg/UlhjFb/sDJrHsYBxkPEmdpJc6DlMpMevVyRcye061+Vsl6AVbObks\ny4rNMkz0ryvh69r5MD+l0BMm+fTfeh510b8oPdlpcSt8Wu8eabiyTUdjHjnon+tz\nc5/zX1ilCKYPy2kVw+ElGuoKzSwAdhOUAhmbF0UjGt+5ksBUjJIjh9J5nqwI/3U2\nnyXI7l5Fw4Fp3nR6JBGwc0G6g2CmTc0qmUx01yOvfiz+8bITAjRcvdv0WlWeF1oi\nkD+pmZN+sG1JxSTAvnXb4hqoTtPJt6kEs4B7jnAKiZCVbVpsXLMiz5LFIdfO0tQA\nYYUImxt8A7wd3V0Jg0KdhtJfCqYsqjDqfu/zd08luNxgMYjXrXaz7JzTZKisT271\nzCOe1rcZ4zYTDDuIecTNA8c1xesLqBDtcXG481PUKOAfHyDW/nlVZGbnlFWarU88\nMwwPnC0JSlzMUdtNkrHctqH5kjY0jswdCTo3Ah6lFnaUcw7jpsh4I5RHYjYr0CF1\nj25H3J+K/LL+TuiviYBX8dKDw8xYFgkmTEbNLjZbWrjqPUIhf9/Wku1RgOZAbCCU\n0MdFz+Cz/Mc9wqj5EhgalulcZBTfxs3ul4lSYAXlOJlrkquKGts=\n=w46K\n-----END PGP SIGNATURE-----",
+ "payload": "tree e47c78e5274cb1638db0c7928307f8204a1b752e\nparent 56462e9cfa2c9fb3d6a5354a417767c6fbd509fa\nauthor Nextcloud bot 1719274792 +0000\ncommitter Nextcloud bot 1719274792 +0000\n\nFix(l10n): Update translations from Transifex\n\nSigned-off-by: Nextcloud bot \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "html_url": "https://github.com/nextcloud/server/commit/ffa8b00bdd74349938cf7a1d433420d0d91adf91",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ffa8b00bdd74349938cf7a1d433420d0d91adf91/comments",
+ "author": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "nextcloud-bot",
+ "id": 20296731,
+ "node_id": "MDQ6VXNlcjIwMjk2NzMx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20296731?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/nextcloud-bot",
+ "html_url": "https://github.com/nextcloud-bot",
+ "followers_url": "https://api.github.com/users/nextcloud-bot/followers",
+ "following_url": "https://api.github.com/users/nextcloud-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/nextcloud-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/nextcloud-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/nextcloud-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/nextcloud-bot/orgs",
+ "repos_url": "https://api.github.com/users/nextcloud-bot/repos",
+ "events_url": "https://api.github.com/users/nextcloud-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/nextcloud-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "html_url": "https://github.com/nextcloud/server/commit/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa"
+ }
+ ]
+ },
+ {
+ "sha": "56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "node_id": "C_kwDOA5c8_doAKDU2NDYyZTljZmEyYzlmYjNkNmE1MzU0YTQxNzc2N2M2ZmJkNTA5ZmE",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T22:52:01Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T22:52:01Z"
+ },
+ "message": "Merge pull request #44931 from nextcloud/Jerome-Herbinet-better-wordings-in-new-user-modal\n\nBetter wordings in the new user modal",
+ "tree": {
+ "sha": "09fed7030a025a20316831a3bd7680a019cb3789",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/09fed7030a025a20316831a3bd7680a019cb3789"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmefiRCRC1aQ7uu5UhlAAAWboQAIJCR1OLgOne/Zu6t9RhOws/\npC3p3uFWQJC7Z8gALkG/9B3cLHfYiA3SIFZYpqYMpl4RJ0qHiw6TvDuLoq6tKG48\nLTb1/IAmG1QSoeCNInHApSQGbFrfCO1GDA0YBWdg5fWDqBwQU5T55M0z6w2Zznor\nqIGiTLXiaNyhYIi5KZ4wr1HuaQNsRiSpzbCnE+QhjXkeC0D+fkWFYJ2vxEWv48rS\nZo4J7e0c3TcRcoign5e5I0D6ALBxJUgmqvpylYfP118dxlrq4Q2tngCGkzf+P71D\nB+vEKypaewFlCI96pnVMC0ehjQRfzEU8iTv7gNfcxMHxealT3L2ovihtoZZ9fhmi\nYZOlnZSXGOPNiy4vWItUA7Me24QTESgDnwtWNVcrAKD49mw/F+OfTcUsLyFSaOgk\nTPmzM2jGeL4krd/9Zv89bvLZ89a5MMK4EfWaWE5ZawKP+l2F227QiEUqcbJVp8Ai\nzY6/DFvmzFtK3Zdk5ySMxujjI/mTF8/HWZyIN/56CA1YN7IRjeldznhoyF84lT2K\nU3Y/KNWT9cO6R5byqpaJC2QJjFBYIgOAC1YK2jfLH5C6phJSbuoGGBgUa7aRyZTy\n36FmBH0tEb1VBi0W2KCKOMIQfAiM61vgL5hmU6L1VT7iAlGTNjvJKdLS0Zud0Gfu\nI8HaAg8zvoc4AqxJN8Eo\n=+dwL\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 09fed7030a025a20316831a3bd7680a019cb3789\nparent 3e64ad7ee760d22bc8fb332f5e3e9bebcffde970\nparent 1c168da9a6a47b70510743b2955b4dc7a23e4edb\nauthor Ferdinand Thiessen 1719269521 +0200\ncommitter GitHub 1719269521 +0200\n\nMerge pull request #44931 from nextcloud/Jerome-Herbinet-better-wordings-in-new-user-modal\n\nBetter wordings in the new user modal",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "html_url": "https://github.com/nextcloud/server/commit/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/56462e9cfa2c9fb3d6a5354a417767c6fbd509fa/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "html_url": "https://github.com/nextcloud/server/commit/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970"
+ },
+ {
+ "sha": "1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "html_url": "https://github.com/nextcloud/server/commit/1c168da9a6a47b70510743b2955b4dc7a23e4edb"
+ }
+ ]
+ },
+ {
+ "sha": "1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "node_id": "C_kwDOA5c8_doAKDFjMTY4ZGE5YTZhNDdiNzA1MTA3NDNiMjk1NWI0ZGM3YTIzZTRlZGI",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T22:12:56Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T22:12:56Z"
+ },
+ "message": "chore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "09fed7030a025a20316831a3bd7680a019cb3789",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/09fed7030a025a20316831a3bd7680a019cb3789"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZnnvbAAKCRBF+ucmh2K0\nAH/VAP9F9EUlyFYmXtVO/elgrF03JvN50rp/fJyV0soRcMMvEgD/WHy2ooHLC7lW\najDOc9GT3nqNbapQsk2Uc7muHHlzWwE=\n=b15k\n-----END PGP SIGNATURE-----",
+ "payload": "tree 09fed7030a025a20316831a3bd7680a019cb3789\nparent 7b13405370e42b6bee9b6b71f9d66a4e2187e82f\nauthor Ferdinand Thiessen 1719267176 +0200\ncommitter Ferdinand Thiessen 1719267176 +0200\n\nchore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "html_url": "https://github.com/nextcloud/server/commit/1c168da9a6a47b70510743b2955b4dc7a23e4edb",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/1c168da9a6a47b70510743b2955b4dc7a23e4edb/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "html_url": "https://github.com/nextcloud/server/commit/7b13405370e42b6bee9b6b71f9d66a4e2187e82f"
+ }
+ ]
+ },
+ {
+ "sha": "7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "node_id": "C_kwDOA5c8_doAKDdiMTM0MDUzNzBlNDJiNmJlZTliNmI3MWY5ZDY2YTRlMjE4N2U4MmY",
+ "commit": {
+ "author": {
+ "name": "Jérôme Herbinet",
+ "email": "33763786+Jerome-Herbinet@users.noreply.github.com",
+ "date": "2024-04-19T08:53:08Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T22:10:13Z"
+ },
+ "message": "fix: Better wordings in the new user modal\n\nCo-authored-by: Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com>\nCo-authored-by: Pytal <24800714+Pytal@users.noreply.github.com>\nCo-authored-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>\nSigned-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>",
+ "tree": {
+ "sha": "495271c90a20649c546c75e7dd07f96a69d69646",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/495271c90a20649c546c75e7dd07f96a69d69646"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZnnu7wAKCRBF+ucmh2K0\nAC0MAP42276Ps57qOwESGYK+D3jdsS7gXXFGyV131ieBnKtUNgEA8JGQcErzoGGR\nSL567jgtRZWgFo2UPccpeovNGzyqOAU=\n=pZNA\n-----END PGP SIGNATURE-----",
+ "payload": "tree 495271c90a20649c546c75e7dd07f96a69d69646\nparent 3e64ad7ee760d22bc8fb332f5e3e9bebcffde970\nauthor Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> 1713516788 +0200\ncommitter Ferdinand Thiessen 1719267013 +0200\n\nfix: Better wordings in the new user modal\n\nCo-authored-by: Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com>\nCo-authored-by: Pytal <24800714+Pytal@users.noreply.github.com>\nCo-authored-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>\nSigned-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>\n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "html_url": "https://github.com/nextcloud/server/commit/7b13405370e42b6bee9b6b71f9d66a4e2187e82f",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/7b13405370e42b6bee9b6b71f9d66a4e2187e82f/comments",
+ "author": {
+ "login": "Jerome-Herbinet",
+ "id": 33763786,
+ "node_id": "MDQ6VXNlcjMzNzYzNzg2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/33763786?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Jerome-Herbinet",
+ "html_url": "https://github.com/Jerome-Herbinet",
+ "followers_url": "https://api.github.com/users/Jerome-Herbinet/followers",
+ "following_url": "https://api.github.com/users/Jerome-Herbinet/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Jerome-Herbinet/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Jerome-Herbinet/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Jerome-Herbinet/subscriptions",
+ "organizations_url": "https://api.github.com/users/Jerome-Herbinet/orgs",
+ "repos_url": "https://api.github.com/users/Jerome-Herbinet/repos",
+ "events_url": "https://api.github.com/users/Jerome-Herbinet/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Jerome-Herbinet/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "html_url": "https://github.com/nextcloud/server/commit/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970"
+ }
+ ]
+ },
+ {
+ "sha": "3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "node_id": "C_kwDOA5c8_doAKDNlNjRhZDdlZTc2MGQyMmJjOGZiMzMyZjVlM2U5YmViY2ZmZGU5NzA",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T19:53:01Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T19:53:01Z"
+ },
+ "message": "Merge pull request #45095 from nextcloud/feat/upload-folders\n\nfeat(files): Allow to upload folders",
+ "tree": {
+ "sha": "7cf239281b1f7b283a04d05223efe976bcf09a43",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7cf239281b1f7b283a04d05223efe976bcf09a43"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmec6dCRC1aQ7uu5UhlAAAJRUQAFR+ALfwhWtBeTVJ4hNgFnJh\nZV/w9+2G5WGLoMNdvZ4WfHph+RyV1k+gJKWfhwtUNw/TRaYMQngjDQAg3Pmk+qPy\nfwW6ySxxGLqDw4USUaOz8HOHQeOWewgUXhnjih+yNMC0L7yHwMkOxT8sV+iy1AOH\nYptQizCj92kyP7/GBroUgRrh/Ss5ZcgH+a60GylKtcuu2AYSgzFmWJJuv+3acClS\nw4QPmmLU1ZlHUiysikB+P6EQ1JZEXW65EAlp/gPbgwWm6eX18jwc0jLrqxZWLaQj\nTa9ECBtfHE3Ot1yWuM4WkAJImrrck4EXhMa/8E0Xpsl0mJvAwgnrF6ClGo23F4Cg\n3O9hmUf+3beYABHjYINFHct+jLMHp2EQt/aAfrplrqPQcSy2Q3OGeJQnxDys1pmd\nAkEWt/q+eEwcGnv2a+YtehXNo5g0sfexqu5ZG/o/9JWkv4gG74MoYMMvfORIupKS\n95C+42/0uxVZA+flDAfpLV22kkR6gvsRJUWKPL/j99ijjb8eYT8LrJ2yHbr9q6vF\nCH3FELoqxyN+PmQuugpztRSavxRPwKy864Kug7YNIkQVHwDVaSplklhuiL+oiZ/O\nf+Tw8W39chzFHziRar2tuOyr3OHlsmKVgqFWlUDtj9mD28PmDKhe0jv5Ee0xbHWx\nOrjuCfoiUchTY7NFdUy4\n=24aI\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 7cf239281b1f7b283a04d05223efe976bcf09a43\nparent 879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd\nparent 7590c767a7811a2c2ded897fc1bfa3db507a5a2b\nauthor Ferdinand Thiessen 1719258781 +0200\ncommitter GitHub 1719258781 +0200\n\nMerge pull request #45095 from nextcloud/feat/upload-folders\n\nfeat(files): Allow to upload folders",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "html_url": "https://github.com/nextcloud/server/commit/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/3e64ad7ee760d22bc8fb332f5e3e9bebcffde970/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "html_url": "https://github.com/nextcloud/server/commit/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd"
+ },
+ {
+ "sha": "7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "html_url": "https://github.com/nextcloud/server/commit/7590c767a7811a2c2ded897fc1bfa3db507a5a2b"
+ }
+ ]
+ },
+ {
+ "sha": "7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "node_id": "C_kwDOA5c8_doAKDc1OTBjNzY3YTc4MTFhMmMyZGVkODk3ZmMxYmZhM2RiNTA3YTVhMmI",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-22T14:10:31Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T18:05:26Z"
+ },
+ "message": "chore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "7cf239281b1f7b283a04d05223efe976bcf09a43",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/7cf239281b1f7b283a04d05223efe976bcf09a43"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZnm1ZwAKCRBF+ucmh2K0\nAP7/AQCyopndaoZTuh+BDQB0qc/C23Lp/dpETEWgv8m+8YSQ4wEAvFsvhPYSSMAm\nvJYlSTt5Kgm/ufWy4UFktacOjbTThwc=\n=CDb5\n-----END PGP SIGNATURE-----",
+ "payload": "tree 7cf239281b1f7b283a04d05223efe976bcf09a43\nparent 079d026d39565e7b5547741bd62bd69082347ad6\nauthor Ferdinand Thiessen 1719065431 +0200\ncommitter Ferdinand Thiessen 1719252326 +0200\n\nchore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "html_url": "https://github.com/nextcloud/server/commit/7590c767a7811a2c2ded897fc1bfa3db507a5a2b",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/7590c767a7811a2c2ded897fc1bfa3db507a5a2b/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "079d026d39565e7b5547741bd62bd69082347ad6",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/079d026d39565e7b5547741bd62bd69082347ad6",
+ "html_url": "https://github.com/nextcloud/server/commit/079d026d39565e7b5547741bd62bd69082347ad6"
+ }
+ ]
+ },
+ {
+ "sha": "079d026d39565e7b5547741bd62bd69082347ad6",
+ "node_id": "C_kwDOA5c8_doAKDA3OWQwMjZkMzk1NjVlN2I1NTQ3NzQxYmQ2MmJkNjkwODIzNDdhZDY",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-22T11:56:30Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T18:03:09Z"
+ },
+ "message": "feat(files): Allow uploading directories\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "5a06c2d6acd420f69bad26eebfb7d0129a59a4f6",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/5a06c2d6acd420f69bad26eebfb7d0129a59a4f6"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/079d026d39565e7b5547741bd62bd69082347ad6",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZnm04gAKCRBF+ucmh2K0\nAGzrAP4h8MZ8jWmpJA62k6/xGZVHX9GZTkotcr7wOxpQv7wcFwEA7l8lOL4NDKT4\nIl97r0zVCqGeqdbXKJZ0XGkc8VICHAg=\n=gjBh\n-----END PGP SIGNATURE-----",
+ "payload": "tree 5a06c2d6acd420f69bad26eebfb7d0129a59a4f6\nparent 879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd\nauthor Ferdinand Thiessen 1719057390 +0200\ncommitter Ferdinand Thiessen 1719252189 +0200\n\nfeat(files): Allow uploading directories\n\nSigned-off-by: Ferdinand Thiessen \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/079d026d39565e7b5547741bd62bd69082347ad6",
+ "html_url": "https://github.com/nextcloud/server/commit/079d026d39565e7b5547741bd62bd69082347ad6",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/079d026d39565e7b5547741bd62bd69082347ad6/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "html_url": "https://github.com/nextcloud/server/commit/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd"
+ }
+ ]
+ },
+ {
+ "sha": "ea994fe8fb093a7f33967d3380a67645353475dd",
+ "node_id": "C_kwDOA5c8_doAKGVhOTk0ZmU4ZmIwOTNhN2YzMzk2N2QzMzgwYTY3NjQ1MzUzNDc1ZGQ",
+ "commit": {
+ "author": {
+ "name": "MichaIng",
+ "email": "micha@dietpi.com",
+ "date": "2024-06-24T15:52:22Z"
+ },
+ "committer": {
+ "name": "MichaIng",
+ "email": "micha@dietpi.com",
+ "date": "2024-06-24T15:52:22Z"
+ },
+ "message": "fix(settings): make trailing slash for caldav/carddav redirects optional\n\n#43939 moved the CalDAV/CardDAV redirect checks from the frontend to a new backend API.\n\nSince the backend does not send an authentication header, checking for the expected response code 207 of the DAV endpoint does not work anymore, hence the URL of the last redirect is checked instead.\n\nThis URL is expected to contain a trailing slash, which was not required before, since the DAV endpoint works properly without it (when authenticated).\n\nWhile a trailing slash in the redirect does no harm, it causes many setups to throw an admin panel warning, while in fact the redirects work properly. Furthermore, the proposed \"/.well-known/carddav\" => \"/remote.php/dav/\" redirect leads to double slashes, when doing a request to \"/.well-known/carddav/\", which seems more wrong then right.\n\nThis change makes the trailing slash optional, hence old and adjusted setups won't throw the warning anymore, and the DAV endpoint works well in both cases.\n\nSigned-off-by: MichaIng ",
+ "tree": {
+ "sha": "ee67f58f3d64534cbf8b1af11f7a401f20667fc4",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/ee67f58f3d64534cbf8b1af11f7a401f20667fc4"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/ea994fe8fb093a7f33967d3380a67645353475dd",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCAAdFiEE2P6aXCGZuXcv9mG/zm5dDEXOFiQFAmZ5lj4ACgkQzm5dDEXO\nFiSsOw//dmUJ5E83+bFXfGMg1m9dVxVC4n9cBQFMVZ62W9qeh/j6o0azip9IZ8Vz\nur884bBvPUEkqamAlBJsc3e66lFpO4YSFyVLhB9W+IfCXWCM55mWeFg+Ew0HSoFX\nTLjbZRcvlRD74SyfbQkBnnrPkKUS9nFznvCOejhhxtzq1rUNTcfxbDR8wCXLz+Gt\nSmed1Z4wYly6DQZwRRlPkRuIgEIrgviCBHXxv6VihkM9oerveCE8Ibbj0R2oSSoH\ngcYqLFiM4xcIBd3u68Kmkr4QoruTZsu3LeTwht+CtSlqgsPGaJk4Q/hvHPI1sXG2\nYmZ3maLQHGjmhgqhp4i/abpVZLLgCFPIbtNSqXg/eVYjSQ5af1p6/pmyAvk0btx+\nwnaBvhe50CD2cfY1q3jh32PVmB28pJvfj87RMtu7jzOXNitcb/rpZlHVkT1oq75G\nLtojsCMl1Uf31dbLcnX4nF97xF0w3BceH6Qc8CLMspRinULjPfxJfTV0EHbrZ+R5\ns92ZK9INg5mTEQL22R+DUkId12oNQa8a+sYE2Ts0eKzUzwfbHHv1IElwjm9h1Tpt\nBGGLVuD8HL9e+z6VmXIpuwK6WIRJ/G4C3VMEks6bosT9nVsvA5dIQgxPAimAtQVu\nxnMsNLmUq2Y5QUl7SLKraq4gZgOkHXt+E+5dj2R/b/XuNpe72Pw=\n=Km8L\n-----END PGP SIGNATURE-----",
+ "payload": "tree ee67f58f3d64534cbf8b1af11f7a401f20667fc4\nparent 879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd\nauthor MichaIng 1719244342 +0200\ncommitter MichaIng 1719244342 +0200\n\nfix(settings): make trailing slash for caldav/carddav redirects optional\n\n#43939 moved the CalDAV/CardDAV redirect checks from the frontend to a new backend API.\n\nSince the backend does not send an authentication header, checking for the expected response code 207 of the DAV endpoint does not work anymore, hence the URL of the last redirect is checked instead.\n\nThis URL is expected to contain a trailing slash, which was not required before, since the DAV endpoint works properly without it (when authenticated).\n\nWhile a trailing slash in the redirect does no harm, it causes many setups to throw an admin panel warning, while in fact the redirects work properly. Furthermore, the proposed \"/.well-known/carddav\" => \"/remote.php/dav/\" redirect leads to double slashes, when doing a request to \"/.well-known/carddav/\", which seems more wrong then right.\n\nThis change makes the trailing slash optional, hence old and adjusted setups won't throw the warning anymore, and the DAV endpoint works well in both cases.\n\nSigned-off-by: MichaIng \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/ea994fe8fb093a7f33967d3380a67645353475dd",
+ "html_url": "https://github.com/nextcloud/server/commit/ea994fe8fb093a7f33967d3380a67645353475dd",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/ea994fe8fb093a7f33967d3380a67645353475dd/comments",
+ "author": {
+ "login": "MichaIng",
+ "id": 28480705,
+ "node_id": "MDQ6VXNlcjI4NDgwNzA1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/28480705?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/MichaIng",
+ "html_url": "https://github.com/MichaIng",
+ "followers_url": "https://api.github.com/users/MichaIng/followers",
+ "following_url": "https://api.github.com/users/MichaIng/following{/other_user}",
+ "gists_url": "https://api.github.com/users/MichaIng/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/MichaIng/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/MichaIng/subscriptions",
+ "organizations_url": "https://api.github.com/users/MichaIng/orgs",
+ "repos_url": "https://api.github.com/users/MichaIng/repos",
+ "events_url": "https://api.github.com/users/MichaIng/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/MichaIng/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "MichaIng",
+ "id": 28480705,
+ "node_id": "MDQ6VXNlcjI4NDgwNzA1",
+ "avatar_url": "https://avatars.githubusercontent.com/u/28480705?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/MichaIng",
+ "html_url": "https://github.com/MichaIng",
+ "followers_url": "https://api.github.com/users/MichaIng/followers",
+ "following_url": "https://api.github.com/users/MichaIng/following{/other_user}",
+ "gists_url": "https://api.github.com/users/MichaIng/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/MichaIng/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/MichaIng/subscriptions",
+ "organizations_url": "https://api.github.com/users/MichaIng/orgs",
+ "repos_url": "https://api.github.com/users/MichaIng/repos",
+ "events_url": "https://api.github.com/users/MichaIng/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/MichaIng/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "html_url": "https://github.com/nextcloud/server/commit/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd"
+ }
+ ]
+ },
+ {
+ "sha": "879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "node_id": "C_kwDOA5c8_doAKDg3OWVhYTc2ODFiODNlZmIxZWQ3ZGUyZWM4YWJiNmFjM2M2MmNjZGQ",
+ "commit": {
+ "author": {
+ "name": "Arthur Schiwon",
+ "email": "blizzz@arthur-schiwon.de",
+ "date": "2024-06-24T13:21:28Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T13:21:28Z"
+ },
+ "message": "Merge pull request #46071 from nextcloud/fix/46070/scope-error\n\nfix(Token): add FILESYSTEM scope with SCOPE_SKIP_PASSWORD_VALIDATION",
+ "tree": {
+ "sha": "4449c882c3ca78740c7567e978079c3149745f56",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/4449c882c3ca78740c7567e978079c3149745f56"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeXLYCRC1aQ7uu5UhlAAACgsQAJ6U2R4KTcdU1ljPqKX9FW15\npGNrK0vfvgI6BcTBb57oglpqYaCs+BOOhWO0tc36+UesW3Pa6iy9+d8pwY84lSa5\nJ0qAvRVIM2qycY4Dm7y9pboLlhrnrTT2RlxZzgPyit04blijrFeF47oYCU9FehxF\namhHbi9lYutKtMsMvc6kZOT8x8k9cSpJ0iMEplcaT3jrWN8rZ7aAPzxVCvRHGxU1\nD2ShaJoBrLbdjQS8NtSOV9T4wqsb0BtnTos28sLI2GUD0x25+geNSv41FmcnQKVM\nNdMt1arAuWN3GAVyyA/PHSYyJuP+GxigvQz2Zwz7lpqF4ePwNq6xh/KuFRywEmFG\naoQW2pqcvx01h8g8IffioDhbe2nTKFxFqMUJOsM3ghJ9J2z2OQSA8XV6e+g6NWM+\nj5lqohrPZlrn8AiI5VIMSN3dqKFkDqqlnBfNolzkOtK+TWSp2s4F3yIvcMT84Qvh\nY89jFYmb5Rnrt615zRDiBBv7HyU15v9kmccp8VoeYpu0x0LJI8Y6KB2pSbw9Hb1J\nqm0gKHjRQEK5EmIr+tFpufa+cOKCeqbmHHWwS2YxuXkusP8vh9bL7EyNC/Zi4DWC\nPV/NlqKkPA1So4mP20Lhbb+S10s31fx/ssWYt4KIb+PDa9lhNosDbY4QzGfrGAhy\nJViCQ4PPoMUX7tQnlLpG\n=mcuN\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree 4449c882c3ca78740c7567e978079c3149745f56\nparent d086f3a2bf1fcc156269e611a9c4f859eac36be8\nparent 895ed634af5385e44ed81310e1218c47a86c309b\nauthor Arthur Schiwon 1719235288 +0200\ncommitter GitHub 1719235288 +0200\n\nMerge pull request #46071 from nextcloud/fix/46070/scope-error\n\nfix(Token): add FILESYSTEM scope with SCOPE_SKIP_PASSWORD_VALIDATION",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "html_url": "https://github.com/nextcloud/server/commit/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/879eaa7681b83efb1ed7de2ec8abb6ac3c62ccdd/comments",
+ "author": {
+ "login": "blizzz",
+ "id": 2184312,
+ "node_id": "MDQ6VXNlcjIxODQzMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2184312?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/blizzz",
+ "html_url": "https://github.com/blizzz",
+ "followers_url": "https://api.github.com/users/blizzz/followers",
+ "following_url": "https://api.github.com/users/blizzz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blizzz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blizzz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blizzz/subscriptions",
+ "organizations_url": "https://api.github.com/users/blizzz/orgs",
+ "repos_url": "https://api.github.com/users/blizzz/repos",
+ "events_url": "https://api.github.com/users/blizzz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blizzz/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "html_url": "https://github.com/nextcloud/server/commit/d086f3a2bf1fcc156269e611a9c4f859eac36be8"
+ },
+ {
+ "sha": "895ed634af5385e44ed81310e1218c47a86c309b",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/895ed634af5385e44ed81310e1218c47a86c309b",
+ "html_url": "https://github.com/nextcloud/server/commit/895ed634af5385e44ed81310e1218c47a86c309b"
+ }
+ ]
+ },
+ {
+ "sha": "e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "node_id": "C_kwDOA5c8_doAKGU5Mzg2NmY5MDQ5NmJiN2U4ZjlhOTljNTZmMWNjNTgzZDc5MDUxZmQ",
+ "commit": {
+ "author": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-24T12:49:09Z"
+ },
+ "committer": {
+ "name": "Benjamin Gaussorgues",
+ "email": "benjamin.gaussorgues@nextcloud.com",
+ "date": "2024-06-24T13:20:44Z"
+ },
+ "message": "fix: allows admin to edit global credentials\n\nSigned-off-by: Benjamin Gaussorgues ",
+ "tree": {
+ "sha": "434bda3b68cc2af954aaa0dd8465cb8e200a6740",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/434bda3b68cc2af954aaa0dd8465cb8e200a6740"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQSGKHgskFpnhVO7XZhdrByvqm24gwUCZnlyrgAKCRBdrByvqm24\ngy3mAQCUDJ01bLuhG0WTDUgmvTVLKdkGimACpkew09mInm1dvAD/fvLw3+6dCg6u\nRfCKd4kXDmZeE9O5KzE+Ia4xhOXYGwU=\n=R1aq\n-----END PGP SIGNATURE-----",
+ "payload": "tree 434bda3b68cc2af954aaa0dd8465cb8e200a6740\nparent 4680bc47c21d3a42f20ee970032ecc7d26db0f1c\nauthor Benjamin Gaussorgues 1719233349 +0200\ncommitter Benjamin Gaussorgues 1719235244 +0200\n\nfix: allows admin to edit global credentials\n\nSigned-off-by: Benjamin Gaussorgues \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "html_url": "https://github.com/nextcloud/server/commit/e93866f90496bb7e8f9a99c56f1cc583d79051fd",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/e93866f90496bb7e8f9a99c56f1cc583d79051fd/comments",
+ "author": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "Altahrim",
+ "id": 2705203,
+ "node_id": "MDQ6VXNlcjI3MDUyMDM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2705203?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/Altahrim",
+ "html_url": "https://github.com/Altahrim",
+ "followers_url": "https://api.github.com/users/Altahrim/followers",
+ "following_url": "https://api.github.com/users/Altahrim/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Altahrim/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Altahrim/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Altahrim/subscriptions",
+ "organizations_url": "https://api.github.com/users/Altahrim/orgs",
+ "repos_url": "https://api.github.com/users/Altahrim/repos",
+ "events_url": "https://api.github.com/users/Altahrim/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Altahrim/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "4680bc47c21d3a42f20ee970032ecc7d26db0f1c",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/4680bc47c21d3a42f20ee970032ecc7d26db0f1c",
+ "html_url": "https://github.com/nextcloud/server/commit/4680bc47c21d3a42f20ee970032ecc7d26db0f1c"
+ }
+ ]
+ },
+ {
+ "sha": "d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "node_id": "C_kwDOA5c8_doAKGQwODZmM2EyYmYxZmNjMTU2MjY5ZTYxMWE5YzRmODU5ZWFjMzZiZTg",
+ "commit": {
+ "author": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-24T12:43:23Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T12:43:23Z"
+ },
+ "message": "Merge pull request #45998 from nextcloud/publicdav-fs-setup\n\nperf: remove full filesystem setup for accessing public link share dav endpoints",
+ "tree": {
+ "sha": "c1980f8119136969de394b90f152e51b66404eb3",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/c1980f8119136969de394b90f152e51b66404eb3"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeWnrCRC1aQ7uu5UhlAAAEkMQAFV8q/hRLN4QhYY1b5X5utiF\n+hRR/c7ekHG14MZTm5d6L919JMF1iyWU53UEI7e8Z0ZIudOMJOy3Jm7x9yXMY4Bi\nBlxmexPLiM9u5pk7ZX9GWW6nBCpXSIlnp4fBUtvNtBPdX2axwLvy5AbLa9Am6skc\nC4VwfYiNhE27/4+D4R949lsIow7Pv/12JvyHy1Z9NSHlL5QVCRk8E9Rri/BwGh26\nqnLWljQtFldirjK66xjkGyPbruFhKyTi6n4lqfkhB1uPRaA2zEyxeaSVt6p7oYAK\nBuJXFyJGmQIvg6uZM1O8vC/PM6IatBash9SN/51QPTNnua1g9m833tk3BkvcDPCW\nlNDMEPKSfdKU3K6qJp8e941q5OokCGwgPKIewGSnBXHH3HFsupH0MuOle5ZOPCsG\nk4mXYybABjIF5BlRkJr5blLKjDqJdBibT98JVVj/bVKR3jUdSyohPudP+qP/OW4M\nlS6B2GpcKvKpLdHw6y1sjf6AWrHuMuB/0Xdtql7ukOJyBAdOLpC+4axIbFw+A52K\nRETPS58omziBwmfS25zBxVhwM40aG/2G3S9vBUR5G2+JTUN6xSWjIjIIXuQmpccC\nAWhoYOd+C7Rmwe/jbiS0jNn0outzK2Uyi4dzr/MzWsQ7wtYm5J47X4v9YNmyytkv\n1z5FEz3giu1eatD54U79\n=/tQL\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree c1980f8119136969de394b90f152e51b66404eb3\nparent d361867e50bac77837f7d8aac881645916265d00\nparent 7a9efcf4ccf24cb015a48d58c0b0ae9149f540ac\nauthor Julius Härtl 1719233003 +0200\ncommitter GitHub 1719233003 +0200\n\nMerge pull request #45998 from nextcloud/publicdav-fs-setup\n\nperf: remove full filesystem setup for accessing public link share dav endpoints",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "html_url": "https://github.com/nextcloud/server/commit/d086f3a2bf1fcc156269e611a9c4f859eac36be8",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d086f3a2bf1fcc156269e611a9c4f859eac36be8/comments",
+ "author": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "d361867e50bac77837f7d8aac881645916265d00",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d361867e50bac77837f7d8aac881645916265d00",
+ "html_url": "https://github.com/nextcloud/server/commit/d361867e50bac77837f7d8aac881645916265d00"
+ },
+ {
+ "sha": "7a9efcf4ccf24cb015a48d58c0b0ae9149f540ac",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/7a9efcf4ccf24cb015a48d58c0b0ae9149f540ac",
+ "html_url": "https://github.com/nextcloud/server/commit/7a9efcf4ccf24cb015a48d58c0b0ae9149f540ac"
+ }
+ ]
+ },
+ {
+ "sha": "d361867e50bac77837f7d8aac881645916265d00",
+ "node_id": "C_kwDOA5c8_doAKGQzNjE4NjdlNTBiYWM3NzgzN2Y3ZDhhYWM4ODE2NDU5MTYyNjVkMDA",
+ "commit": {
+ "author": {
+ "name": "Julius Härtl",
+ "email": "jus@bitgrid.net",
+ "date": "2024-06-24T12:27:19Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T12:27:19Z"
+ },
+ "message": "Merge pull request #45876 from nextcloud/fix/45715\n\nfix: Avoid throwing errors for teams are unavailable",
+ "tree": {
+ "sha": "abb87b2b77db92d720ca8eb68fce53f7ff080463",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/abb87b2b77db92d720ca8eb68fce53f7ff080463"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/d361867e50bac77837f7d8aac881645916265d00",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeWYoCRC1aQ7uu5UhlAAAjgwQACd1nRtk51op8wV1VLkmJRMb\n3akGkUC63qOXfdUERkozbmH6DnHDPsvMCNHTD+vK+dLDSiZz6MID/MADcUFo07Pa\nqG+uF2PSgNsWNEOJaC69BXubkgvCwVVglWwcUT3kMPa4a2/ZNlyq8hrbkdgotY+X\ns6I/d3xgMiLZ2sjVzEMF9AH3tWFn0sIo8lKtthV950ImGx1eXxFycPi1qQFN1j4o\nRpP0V5pP6JBUSAXuC2V+UOoZZuetUCU9OfqEspqsQVZqIiq94Vf9GnDCC/fjt3me\n/NIPVkmwlnF4EWdX1tNHPl6rU7ORZX7Uag8isV3mbndn55bqfqn1roKifAkRJV5C\n+k22L6txsWw8YrUzrQBPrQtN8I8uhJzRjVkwsG4xY6IAA7AR42/o/Su7wHXWzp5a\nWjLpOPBDljXXxBQpBYAnG2QlXTYy1iH+Lwr1kx5F9dcSJd00sMXK3Gxr8OlDiK7L\nf0lpL2cxFTir70HinQ9UaMe//W5UQftVCS9qOj63c4wXw57lhAuRrQqogKou4Y+O\n0hoMiCBGcupGCVCD69UIcWAf6ddbf37C3e9LKmo940H9tQwEyE9tVT7QcOQuC7jW\nKT8Tfo/Vu4jdKt8WgCeJ5bFsbMoA+BOvSabcsVAa8g8KaFJvHzHAXYTLRy95RA1w\nYBLGc8tjA831qNMl24aV\n=MBrv\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree abb87b2b77db92d720ca8eb68fce53f7ff080463\nparent 0dc0a9b472611a591e1a466e8e17aa5aa0179316\nparent d6d84e51efca6416fded78efc483fae4ffc53ed6\nauthor Julius Härtl 1719232039 +0200\ncommitter GitHub 1719232039 +0200\n\nMerge pull request #45876 from nextcloud/fix/45715\n\nfix: Avoid throwing errors for teams are unavailable",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d361867e50bac77837f7d8aac881645916265d00",
+ "html_url": "https://github.com/nextcloud/server/commit/d361867e50bac77837f7d8aac881645916265d00",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/d361867e50bac77837f7d8aac881645916265d00/comments",
+ "author": {
+ "login": "juliusknorr",
+ "id": 3404133,
+ "node_id": "MDQ6VXNlcjM0MDQxMzM=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3404133?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/juliusknorr",
+ "html_url": "https://github.com/juliusknorr",
+ "followers_url": "https://api.github.com/users/juliusknorr/followers",
+ "following_url": "https://api.github.com/users/juliusknorr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/juliusknorr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/juliusknorr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/juliusknorr/subscriptions",
+ "organizations_url": "https://api.github.com/users/juliusknorr/orgs",
+ "repos_url": "https://api.github.com/users/juliusknorr/repos",
+ "events_url": "https://api.github.com/users/juliusknorr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/juliusknorr/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "html_url": "https://github.com/nextcloud/server/commit/0dc0a9b472611a591e1a466e8e17aa5aa0179316"
+ },
+ {
+ "sha": "d6d84e51efca6416fded78efc483fae4ffc53ed6",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/d6d84e51efca6416fded78efc483fae4ffc53ed6",
+ "html_url": "https://github.com/nextcloud/server/commit/d6d84e51efca6416fded78efc483fae4ffc53ed6"
+ }
+ ]
+ },
+ {
+ "sha": "0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "node_id": "C_kwDOA5c8_doAKDBkYzBhOWI0NzI2MTFhNTkxZTFhNDY2ZThlMTdhYTVhYTAxNzkzMTY",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T11:56:53Z"
+ },
+ "committer": {
+ "name": "GitHub",
+ "email": "noreply@github.com",
+ "date": "2024-06-24T11:56:53Z"
+ },
+ "message": "Merge pull request #45860 from nextcloud/fix/files-handle-failed-state\n\nfix(files): Bring back handling of failed files",
+ "tree": {
+ "sha": "a5f0249b70ce0242638259b3893a42599881a5ab",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a5f0249b70ce0242638259b3893a42599881a5ab"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmeV8FCRC1aQ7uu5UhlAAAFpEQAKB/Kd6044kdOYp5GYdrkEXA\n1b7TU6eX9i4kwrXOVKy5kFL5MGjtgAsQu0z3v9KYMRqvUNVRf7dhKfmeZI0T8Ul9\naSfv4kcVUOQ8q0ijQ7XgwEAVZkguyXXF3zkDnx1aA56emDpfgc+xQMKqwa0Dgrpf\npeOmrssgha7365p1SGBmVjIfJbS81dnJ1cq8wy/RVK8KIORPF2qDvOPeUNS3wMH7\n6V+4jQKl5S5JcT5qeha3ilfHGuIerEUsTTont8oSfW8Rz5dLI5d3vunfji9bWm7y\nsiPbmTvKywOhBXpgad2R1fL/b5OpzMVRM7q5zmkqNYUsWRcBvEG5qGIxxSYW1aVf\noyIRn1Ek6t/VCCcjsCsztX6EtWu+FHX8UQ0Ci6Zaovcjqc2BVimGKIaop73lYepM\n+VjusTZEfwvXVORRIwmsMhmfzIULJk3p1LVINbPur7cphvSJ8JDeRrpMYeCMyB5y\nKVR9HkNNTorAfB2wtCHxxFlmYrkydLoyaPDCNW/k5h6p+y6won8Hay1Zw9t1G5U1\nbIYbo5qqULXeCO/CtLsW6eqECeEgdYjhsOFr55iypqX3itkZFgjZKD/GNecr+VGa\nREjf8EgthRbfAxdQi52FkruJxbP5GSMzKebODPAq5F4RY8RNUr2HqcPdAb1VTadR\n6qLVZecGCmCibq3JQ45c\n=U7Hg\n-----END PGP SIGNATURE-----\n",
+ "payload": "tree a5f0249b70ce0242638259b3893a42599881a5ab\nparent c76c954f56e085dada9a7e9553408d499993ba79\nparent 0bd7c76d34c893d5471dc240ab4878484f4e5b4a\nauthor Ferdinand Thiessen 1719230213 +0200\ncommitter GitHub 1719230213 +0200\n\nMerge pull request #45860 from nextcloud/fix/files-handle-failed-state\n\nfix(files): Bring back handling of failed files",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "html_url": "https://github.com/nextcloud/server/commit/0dc0a9b472611a591e1a466e8e17aa5aa0179316",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/0dc0a9b472611a591e1a466e8e17aa5aa0179316/comments",
+ "author": {
+ "login": "susnux",
+ "id": 1855448,
+ "node_id": "MDQ6VXNlcjE4NTU0NDg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1855448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/susnux",
+ "html_url": "https://github.com/susnux",
+ "followers_url": "https://api.github.com/users/susnux/followers",
+ "following_url": "https://api.github.com/users/susnux/following{/other_user}",
+ "gists_url": "https://api.github.com/users/susnux/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/susnux/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/susnux/subscriptions",
+ "organizations_url": "https://api.github.com/users/susnux/orgs",
+ "repos_url": "https://api.github.com/users/susnux/repos",
+ "events_url": "https://api.github.com/users/susnux/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/susnux/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "web-flow",
+ "id": 19864447,
+ "node_id": "MDQ6VXNlcjE5ODY0NDQ3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/web-flow",
+ "html_url": "https://github.com/web-flow",
+ "followers_url": "https://api.github.com/users/web-flow/followers",
+ "following_url": "https://api.github.com/users/web-flow/following{/other_user}",
+ "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
+ "organizations_url": "https://api.github.com/users/web-flow/orgs",
+ "repos_url": "https://api.github.com/users/web-flow/repos",
+ "events_url": "https://api.github.com/users/web-flow/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/web-flow/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "c76c954f56e085dada9a7e9553408d499993ba79",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/c76c954f56e085dada9a7e9553408d499993ba79",
+ "html_url": "https://github.com/nextcloud/server/commit/c76c954f56e085dada9a7e9553408d499993ba79"
+ },
+ {
+ "sha": "0bd7c76d34c893d5471dc240ab4878484f4e5b4a",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/0bd7c76d34c893d5471dc240ab4878484f4e5b4a",
+ "html_url": "https://github.com/nextcloud/server/commit/0bd7c76d34c893d5471dc240ab4878484f4e5b4a"
+ }
+ ]
+ },
+ {
+ "sha": "895ed634af5385e44ed81310e1218c47a86c309b",
+ "node_id": "C_kwDOA5c8_doAKDg5NWVkNjM0YWY1Mzg1ZTQ0ZWQ4MTMxMGUxMjE4YzQ3YTg2YzMwOWI",
+ "commit": {
+ "author": {
+ "name": "Arthur Schiwon",
+ "email": "blizzz@arthur-schiwon.de",
+ "date": "2024-06-24T11:47:12Z"
+ },
+ "committer": {
+ "name": "Arthur Schiwon",
+ "email": "blizzz@arthur-schiwon.de",
+ "date": "2024-06-24T11:51:15Z"
+ },
+ "message": "fix(Token): add FILESYSTEM scope with SCOPE_SKIP_PASSWORD_VALIDATION\n\nThe scope design requires scopes to be either not specified, or\nspecified explicitely. Therefore, when setting the\nskip-password-validation scope for user authentication from mechanisms\nlike SAML, we also have to set the filesystem scope, otherwise they will\nlack access to the filesystem.\n\nSigned-off-by: Arthur Schiwon ",
+ "tree": {
+ "sha": "25897496c41883dafa414b233cf57943ce8ad484",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/25897496c41883dafa414b233cf57943ce8ad484"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/895ed634af5385e44ed81310e1218c47a86c309b",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCAAdFiEEB6i/lj8IfCS2tMxgdCTxh0hU3yMFAmZ5XbMACgkQdCTxh0hU\n3yMFBQ//SItQUm/3ltvM1NO2QkhkwrP9ftkFIBNDcoJaZAWZP6gmeOHQbzgrvDrk\npi1zSQQQa63TuC43cnxYCCUzZXwIxc9Yi9it9dIIcbizJXH9rnlIvFFmkHzr97zo\n1Ko3UHFLMge+kr6ChMdjh4rTwJLBh7n9OL3QzQyAP+n37IDOQpUfVc1dk9cDttnF\nFsSgkiaz1ytEcHqYwfEhzPGGsTALid0KnwZ6VrFrdoET6IaJaMuxjH9PoADqsGHr\nnfGEY+8JgpodJuxsOuFVCX1e/Qhoi1SHYZGVTY9zIO+/DbNspcUD3nte7iT7bdm3\nd3sSTwics+4wU+JfM+Ou6fhwI+M2i/fL21p6zHs6f9kn/IQHupsDv/T7FgF4nEjC\n4BYFC69UUnhXTFuEeo6y79CmEJZOTKIcPhA+cAQf+pSCNyYP9ozlVKqzB/UuMe5O\nAm+ML6/jkbE2dJDyfowj1Ue2m4jNv9ALpzrTEL95zeaGMhLpA1zqmwEEoqnHWtq6\nne8bz+3Z0OUct5nXVIesLP8VfuAmMWoSN7YyFe45EN0AnLJ2QYW7FMGBcsUte2Kh\n4LvXLXPnbSkuN52m2Hjk4M5JCK5V5POj/G0X2MW61NKujw+fkfT6HYRIJB3B9d/l\ngYOBWh3gOWiuWAPWlNrRuflUU4/msAQdkLg2cDMLNSZZw5lx8sA=\n=ZzOn\n-----END PGP SIGNATURE-----",
+ "payload": "tree 25897496c41883dafa414b233cf57943ce8ad484\nparent c76c954f56e085dada9a7e9553408d499993ba79\nauthor Arthur Schiwon 1719229632 +0200\ncommitter Arthur Schiwon 1719229875 +0200\n\nfix(Token): add FILESYSTEM scope with SCOPE_SKIP_PASSWORD_VALIDATION\n\nThe scope design requires scopes to be either not specified, or\nspecified explicitely. Therefore, when setting the\nskip-password-validation scope for user authentication from mechanisms\nlike SAML, we also have to set the filesystem scope, otherwise they will\nlack access to the filesystem.\n\nSigned-off-by: Arthur Schiwon \n",
+ "verified_at": "2024-11-06T17:12:59Z"
+ }
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/commits/895ed634af5385e44ed81310e1218c47a86c309b",
+ "html_url": "https://github.com/nextcloud/server/commit/895ed634af5385e44ed81310e1218c47a86c309b",
+ "comments_url": "https://api.github.com/repos/nextcloud/server/commits/895ed634af5385e44ed81310e1218c47a86c309b/comments",
+ "author": {
+ "login": "blizzz",
+ "id": 2184312,
+ "node_id": "MDQ6VXNlcjIxODQzMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2184312?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/blizzz",
+ "html_url": "https://github.com/blizzz",
+ "followers_url": "https://api.github.com/users/blizzz/followers",
+ "following_url": "https://api.github.com/users/blizzz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blizzz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blizzz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blizzz/subscriptions",
+ "organizations_url": "https://api.github.com/users/blizzz/orgs",
+ "repos_url": "https://api.github.com/users/blizzz/repos",
+ "events_url": "https://api.github.com/users/blizzz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blizzz/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "committer": {
+ "login": "blizzz",
+ "id": 2184312,
+ "node_id": "MDQ6VXNlcjIxODQzMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2184312?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/blizzz",
+ "html_url": "https://github.com/blizzz",
+ "followers_url": "https://api.github.com/users/blizzz/followers",
+ "following_url": "https://api.github.com/users/blizzz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blizzz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blizzz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blizzz/subscriptions",
+ "organizations_url": "https://api.github.com/users/blizzz/orgs",
+ "repos_url": "https://api.github.com/users/blizzz/repos",
+ "events_url": "https://api.github.com/users/blizzz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blizzz/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "parents": [
+ {
+ "sha": "c76c954f56e085dada9a7e9553408d499993ba79",
+ "url": "https://api.github.com/repos/nextcloud/server/commits/c76c954f56e085dada9a7e9553408d499993ba79",
+ "html_url": "https://github.com/nextcloud/server/commit/c76c954f56e085dada9a7e9553408d499993ba79"
+ }
+ ]
+ },
+ {
+ "sha": "0bd7c76d34c893d5471dc240ab4878484f4e5b4a",
+ "node_id": "C_kwDOA5c8_doAKDBiZDdjNzZkMzRjODkzZDU0NzFkYzI0MGFiNDg3ODQ4NGY0ZTViNGE",
+ "commit": {
+ "author": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T10:55:21Z"
+ },
+ "committer": {
+ "name": "Ferdinand Thiessen",
+ "email": "opensource@fthiessen.de",
+ "date": "2024-06-24T10:55:21Z"
+ },
+ "message": "chore: Compile assets\n\nSigned-off-by: Ferdinand Thiessen ",
+ "tree": {
+ "sha": "a5f0249b70ce0242638259b3893a42599881a5ab",
+ "url": "https://api.github.com/repos/nextcloud/server/git/trees/a5f0249b70ce0242638259b3893a42599881a5ab"
+ },
+ "url": "https://api.github.com/repos/nextcloud/server/git/commits/0bd7c76d34c893d5471dc240ab4878484f4e5b4a",
+ "comment_count": 0,
+ "verification": {
+ "verified": true,
+ "reason": "valid",
+ "signature": "-----BEGIN PGP SIGNATURE-----\n\niHUEABYKAB0WIQTbUrYuynbv1LGRAJtF+ucmh2K0AAUCZnlQnQAKCRBF+ucmh2K0\nALGTAP45otwyGn5Jz1U/UPzweqrBZPgTCR/Nxl0/askZxT0VqAD/SxOMPaYq3d83\n+7EXcPCSg1fuevsepD5Dz3aOfdPVIA4=\n=TYm/\n-----END PGP SIGNATURE-----",
+ "payload": "tree a5f0249b70ce0242638259b3893a42599881a5ab\nparent 3782142f5996720fd68935b7073923fe658508cd\nauthor Ferdinand Thiessen 1719226521 +0200\ncommitter Ferdinand Thiessen