From d0ea9bf5723ff5c2e6b21242971667cea8073be1 Mon Sep 17 00:00:00 2001 From: "Enjeck C." Date: Fri, 24 Apr 2026 06:57:09 +0100 Subject: [PATCH 1/5] build(release): v2.0.2 Signed-off-by: Enjeck C. --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ appinfo/info.xml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 45 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d38b148619..ba9af5fb61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,47 @@ # Changelog +## 2.0.2 + +### Added +* [Feat: update loading shares of table (tables#2379)](https://github.com/nextcloud/tables/pull/2379) +* [🔢 Reorder and sort table columns (tables#2481)](https://github.com/nextcloud/tables/pull/2481) + +### Fixed +* [Fix: add validation for columnDto (tables#2414)](https://github.com/nextcloud/tables/pull/2414) +* [Fix(Share): compare group id with group id, not displayname (tables#2433)](https://github.com/nextcloud/tables/pull/2433) +* [Fix: ensure stable column order in table view (tables#2445)](https://github.com/nextcloud/tables/pull/2445) +* [Fix: reset default values for usergroup column after row creation (tables#2448)](https://github.com/nextcloud/tables/pull/2448) +* [Fix: It is possible to open view with removed column (tables#2449)](https://github.com/nextcloud/tables/pull/2449) +* [Fix: replace 'circle' with 'team' in CircleHelper (fixes #2249) (tables#2455)](https://github.com/nextcloud/tables/pull/2455) +* [Fix: Auto-focus input field for selecting a value via the column header (tables#2457)](https://github.com/nextcloud/tables/pull/2457) +* [Fix layout issues in application view caused by missing width constraint (tables#2482)](https://github.com/nextcloud/tables/pull/2482) +* [Error handling for CSV downloads (tables#2512)](https://github.com/nextcloud/tables/pull/2512) + +### Dependencies +* [Fix(deps): update dependency dompurify to ^3.3.2 (main) (tables#2392)](https://github.com/nextcloud/tables/pull/2392) +* [Fix(deps): update dependency @nextcloud/vue to ^8.37.0 (main) (tables#2419)](https://github.com/nextcloud/tables/pull/2419) +* [Chore(deps): update nextcloud/pr-feedback-action digest to 5227c55 (main) (tables#2431)](https://github.com/nextcloud/tables/pull/2431) +* [Chore(deps): update shivammathur/setup-php digest to accd612 (main) (tables#2432)](https://github.com/nextcloud/tables/pull/2432) +* [Fix: Pin cypress versions (tables#2460)](https://github.com/nextcloud/tables/pull/2460) +* [Fix: pin stylelint-config and vue version in renovate (tables#2461)](https://github.com/nextcloud/tables/pull/2461) +* [Chore(deps): update dependency @rollup/rollup-linux-x64-gnu to ^4.60.1 (main) (tables#2462)](https://github.com/nextcloud/tables/pull/2462) +* [Chore(deps): update dependency @playwright/test to ^1.59.1 (main) (tables#2463)](https://github.com/nextcloud/tables/pull/2463) +* [Chore(deps): update dependency vite to ^7.3.2 (main) (tables#2486)](https://github.com/nextcloud/tables/pull/2486) +* [Fix(deps): update tiptap to ^3.22.3 (main) (tables#2487)](https://github.com/nextcloud/tables/pull/2487) +* [[main] Update nextcloud/ocp dependency (tables#2491)](https://github.com/nextcloud/tables/pull/2491) +* [[main] Fix npm audit (tables#2493)](https://github.com/nextcloud/tables/pull/2493) +* [Chore(deps): update dependency phpunit/phpunit to v9.6.34 (tables#2500)](https://github.com/nextcloud/tables/pull/2500) + +### Other +* [Reorder Application resources (tables#2245)](https://github.com/nextcloud/tables/pull/2245) +* [Ci(renovate): prevent incompatible nc/files updates on stable1.0 (tables#2381)](https://github.com/nextcloud/tables/pull/2381) +* [Ci: fix wrong concurrency group (tables#2385)](https://github.com/nextcloud/tables/pull/2385) +* [Feat(tests): Migrate some tests from Cypress to Playwright (tables#2427)](https://github.com/nextcloud/tables/pull/2427) +* [Add an AGENTS.md for coding agents to respect (tables#2494)](https://github.com/nextcloud/tables/pull/2494) +* [Sync actions with current workflow templates (tables#2495)](https://github.com/nextcloud/tables/pull/2495) +* [Context changes (tables#2510)](https://github.com/nextcloud/tables/pull/2510) + ## 2.0.1 ### Added diff --git a/appinfo/info.xml b/appinfo/info.xml index cbe93ead0b..3c579cd059 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -26,7 +26,7 @@ Share your tables and views with users and groups within your cloud. Have a good time and manage whatever you want. ]]> - 2.0.1 + 2.0.2 agpl Florian Steffens Tables diff --git a/package-lock.json b/package-lock.json index 5ddc1ce91f..cafef308ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tables", - "version": "2.0.1", + "version": "2.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tables", - "version": "2.0.1", + "version": "2.0.2", "license": "agpl", "dependencies": { "@mdi/svg": "^7.4.47", diff --git a/package.json b/package.json index e7aa603488..931da2786c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tables", "description": "Manage data within tables.", - "version": "2.0.1", + "version": "2.0.2", "author": "Florian Steffens Date: Fri, 24 Apr 2026 18:42:36 +0200 Subject: [PATCH 2/5] docs: Bump version to 2.1.0 Signed-off-by: Andy Scherzinger --- CHANGELOG.md | 2 +- appinfo/info.xml | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba9af5fb61..9fe27eff24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ # Changelog -## 2.0.2 +## 2.1.0 ### Added * [Feat: update loading shares of table (tables#2379)](https://github.com/nextcloud/tables/pull/2379) diff --git a/appinfo/info.xml b/appinfo/info.xml index 3c579cd059..f36fb9efe6 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -26,7 +26,7 @@ Share your tables and views with users and groups within your cloud. Have a good time and manage whatever you want. ]]> - 2.0.2 + 2.1.0 agpl Florian Steffens Tables diff --git a/package.json b/package.json index 931da2786c..00fb507dcf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tables", "description": "Manage data within tables.", - "version": "2.0.2", + "version": "2.1.0", "author": "Florian Steffens Date: Fri, 24 Apr 2026 18:45:42 +0200 Subject: [PATCH 3/5] docs: Use SPDX ID Signed-off-by: Andy Scherzinger --- appinfo/info.xml | 2 +- openapi.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index f36fb9efe6..89492515a1 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -27,7 +27,7 @@ Have a good time and manage whatever you want. ]]> 2.1.0 - agpl + AGPL-3.0-or-later Florian Steffens Tables diff --git a/openapi.json b/openapi.json index 42b001fcb6..6a9442764f 100644 --- a/openapi.json +++ b/openapi.json @@ -5,7 +5,7 @@ "version": "0.0.1", "description": "Manage data the way you need it.", "license": { - "name": "agpl" + "name": "AGPL-3.0-or-later" } }, "components": { diff --git a/package.json b/package.json index 00fb507dcf..596b44417c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ }, "type": "module", "url": "https://github.com/nextcloud/tables/wiki", - "license": "agpl", + "license": "AGPL-3.0-or-later", "private": true, "scripts": { "build": "vite --mode production build", From e290a3dc78f68e9f60ba799d6e598b11c1a9c09f Mon Sep 17 00:00:00 2001 From: "Enjeck C." Date: Fri, 1 May 2026 02:43:41 +0100 Subject: [PATCH 4/5] enh: Update changelog Signed-off-by: Enjeck C. --- CHANGELOG.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe27eff24..a5990591e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,15 @@ ## 2.1.0 ### Added -* [Feat: update loading shares of table (tables#2379)](https://github.com/nextcloud/tables/pull/2379) +* [Reorder Application resources (tables#2245)](https://github.com/nextcloud/tables/pull/2245) * [🔢 Reorder and sort table columns (tables#2481)](https://github.com/nextcloud/tables/pull/2481) +* [Feat: add permissions for public link shares (tables#2483)](https://github.com/nextcloud/tables/pull/2483) +* [📍Option to pin a column (tables#2496)](https://github.com/nextcloud/tables/pull/2496) +* [Mandatory column handling (tables#2511)](https://github.com/nextcloud/tables/pull/2511) +* [🪢 Sticky header elements (tables#2527)](https://github.com/nextcloud/tables/pull/2527) ### Fixed +* [Feat: update loading shares of table (tables#2379)](https://github.com/nextcloud/tables/pull/2379) * [Fix: add validation for columnDto (tables#2414)](https://github.com/nextcloud/tables/pull/2414) * [Fix(Share): compare group id with group id, not displayname (tables#2433)](https://github.com/nextcloud/tables/pull/2433) * [Fix: ensure stable column order in table view (tables#2445)](https://github.com/nextcloud/tables/pull/2445) @@ -21,6 +26,9 @@ * [Fix: Auto-focus input field for selecting a value via the column header (tables#2457)](https://github.com/nextcloud/tables/pull/2457) * [Fix layout issues in application view caused by missing width constraint (tables#2482)](https://github.com/nextcloud/tables/pull/2482) * [Error handling for CSV downloads (tables#2512)](https://github.com/nextcloud/tables/pull/2512) +* [Reordering validation (tables#2505)](https://github.com/nextcloud/tables/pull/2505) +* [Fix: Table sharing limitations (tables#2551)](https://github.com/nextcloud/tables/pull/2551) +* [Fix/2555: share delete and public link access (tables#2556)](https://github.com/nextcloud/tables/pull/2556) ### Dependencies * [Fix(deps): update dependency dompurify to ^3.3.2 (main) (tables#2392)](https://github.com/nextcloud/tables/pull/2392) @@ -38,13 +46,15 @@ * [Chore(deps): update dependency phpunit/phpunit to v9.6.34 (tables#2500)](https://github.com/nextcloud/tables/pull/2500) ### Other -* [Reorder Application resources (tables#2245)](https://github.com/nextcloud/tables/pull/2245) * [Ci(renovate): prevent incompatible nc/files updates on stable1.0 (tables#2381)](https://github.com/nextcloud/tables/pull/2381) * [Ci: fix wrong concurrency group (tables#2385)](https://github.com/nextcloud/tables/pull/2385) * [Feat(tests): Migrate some tests from Cypress to Playwright (tables#2427)](https://github.com/nextcloud/tables/pull/2427) * [Add an AGENTS.md for coding agents to respect (tables#2494)](https://github.com/nextcloud/tables/pull/2494) * [Sync actions with current workflow templates (tables#2495)](https://github.com/nextcloud/tables/pull/2495) * [Context changes (tables#2510)](https://github.com/nextcloud/tables/pull/2510) +* [Add further guidelines for implementation logic and code checks (tables#2516)](https://github.com/nextcloud/tables/pull/2516) +* [Build: disable renovate for EOL 0.9 (tables#2549)](https://github.com/nextcloud/tables/pull/2549) +* [Add more rules, for frontend, backend, persistence and testing (tables#2550)](https://github.com/nextcloud/tables/pull/2550) ## 2.0.1 From 44bd7c8ac65ef6168e04ffe2356ce184d89202d4 Mon Sep 17 00:00:00 2001 From: "Enjeck C." Date: Fri, 1 May 2026 02:53:05 +0100 Subject: [PATCH 5/5] fix: Update package.lock version Signed-off-by: Enjeck C. --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index cafef308ec..759416cb7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tables", - "version": "2.0.2", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tables", - "version": "2.0.2", + "version": "2.1.0", "license": "agpl", "dependencies": { "@mdi/svg": "^7.4.47",