Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
]]></description>
<version>2.0.1</version>
<version>2.0.2</version>
Comment thread
AndyScherzinger marked this conversation as resolved.
Outdated
<licence>agpl</licence>
<author mail="florian.steffens@nextcloud.com">Florian Steffens</author>
<namespace>Tables</namespace>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tables",
"description": "Manage data within tables.",
"version": "2.0.1",
"version": "2.0.2",
"author": "Florian Steffens <florian.steffens@nextcloud.com",
"bugs": {
"url": "https://github.com/nextcloud/tables/issues"
Expand Down
Loading