From 1922b1c0113b3851719a978cae937925490f36f1 Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Mon, 7 Jul 2025 17:01:06 -0400 Subject: [PATCH 1/2] chore(release): bump version Signed-off-by: Elizabeth Danzberger --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index efa6cded..b8405695 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nextcloud/auth", - "version": "2.5.1", + "version": "2.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nextcloud/auth", - "version": "2.5.1", + "version": "2.5.2", "license": "GPL-3.0-or-later", "dependencies": { "@nextcloud/browser-storage": "^0.4.0", diff --git a/package.json b/package.json index 809ad5a2..53c75238 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nextcloud/auth", - "version": "2.5.1", + "version": "2.5.2", "description": "Nextcloud helpers related to authentication and the current user", "keywords": [ "nextcloud" From 26af671a15e429b7dc05cca851c85b7be668797b Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Mon, 7 Jul 2025 17:11:03 -0400 Subject: [PATCH 2/2] chore(release): update changelog Signed-off-by: Elizabeth Danzberger --- CHANGELOG.md | 18 ++++++++++++++++++ lib/guest.ts | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5528c3df..3f0ea483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,24 @@ All notable changes to this project will be documented in this file. +## 2.5.2 - 2025-07-07 +### Fixed +* fix(files_sharing): fallback self.crypto.randomUUID by @skjnldsv in (#822)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/822] + +### Changed +* chore(deps-dev): Bump happy-dom from 17.4.6 to 17.4.7 in (#805)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/805] +* chore(deps-dev): Bump @vitest/coverage-v8 from 3.1.3 to 3.1.4 in (#808)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/808] +* chore(deps-dev): Bump typedoc from 0.28.4 to 0.28.5 in (#810)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/810] +* chore: fix date in CHANGELOG.md by @nickvergessen in (#807)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/807] +* chore(deps-dev): Bump happy-dom from 17.4.7 to 17.5.6 in (#812)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/812] +* chore(deps-dev): Bump happy-dom from 17.5.6 to 17.6.3 in (#814)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/814] +* chore(deps-dev): Bump @vitest/coverage-v8 from 3.1.4 to 3.2.2 in (#815)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/815] +* chore(deps-dev): Bump @vitest/coverage-v8 from 3.2.2 to 3.2.3 in (#816)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/816] +* chore(deps-dev): Bump eslint from 8.57.1 to 9.29.0 in (#817)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/817] +* chore(deps-dev): Bump happy-dom from 17.6.3 to 18.0.1 in (#819)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/819] +* chore(deps-dev): Bump @vitest/coverage-v8 from 3.2.3 to 3.2.4 in (#820)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/820] +* chore: update supported node versions by @susnux in (#823)[https://github.com/nextcloud-libraries/nextcloud-auth/pull/823] + ## 2.5.1 - 2025-05-13 ### Fixed * fix: listen to guest changes by @skjnldsv in https://github.com/nextcloud-libraries/nextcloud-auth/pull/803 diff --git a/lib/guest.ts b/lib/guest.ts index 47a1c135..34fa9bee 100644 --- a/lib/guest.ts +++ b/lib/guest.ts @@ -79,7 +79,7 @@ export function setGuestNickname(nickname: string): void { * If the crypto API is available, it uses the less secure `randomUUID` method. * Crypto API is available in modern browsers on secure contexts (HTTPS). * - * @return {string} A random UUID. + * @return A random UUID. */ function randomUUID(): string { // Use the crypto API if available