Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nextcloud-libraries/nextcloud-dialogs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.3.8
Choose a base ref
...
head repository: nextcloud-libraries/nextcloud-dialogs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 16, 2024

  1. chore: Release v6.0.0 for Nextcloud 29+

    Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
    susnux committed Aug 16, 2024
    Copy the full SHA
    7d43faf View commit details
  2. Merge pull request #1420 from nextcloud-libraries/chore/6.0.0

    chore: Release v6.0.0 for Nextcloud 29+
    susnux authored Aug 16, 2024
    Copy the full SHA
    cb03b1b View commit details
Showing with 76 additions and 105 deletions.
  1. +19 −0 CHANGELOG.md
  2. +52 −103 package-lock.json
  3. +2 −2 package.json
  4. +3 −0 tsconfig.json
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,25 @@

All notable changes to this project will be documented in this file.

## 6.0.0
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v5.3.5...v6.0.0)

### Breaking

v6.0.0 is only compatible with Nextcloud 29 and newer.
Technically this is the same as v5.3.5, but v5.3.3 was a breaking change as it dropped support for Nextcloud 28 and older on public shares.

### Changed
* chore: Enhance docs about generic dialogs and export all related types [\#1380](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1380) \([susnux](https://github.com/susnux)\)
* Migrate REUSE to TOML format [\#1386](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1386) \([AndyScherzinger](https://github.com/AndyScherzinger)\)
* chore(deps): Bump @nextcloud/typings to 1.9.1
* chore(deps): Bump @nextcloud/sharing to 0.2.3
* chore(deps): Bump fast-xml-parser to 4.4.1
* chore(deps): Bump @nextcloud/files to 3.8.0
* chore(deps): Bump @vueuse/core to 10.11.1
* chore(deps): Bump webdav to 5.7.1
* chore(deps): Bump axios to 1.7.4

## 5.3.5
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v5.3.4...v5.3.5)

155 changes: 52 additions & 103 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nextcloud/dialogs",
"version": "5.3.5",
"version": "6.0.0",
"description": "Nextcloud dialog helpers",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
@@ -50,7 +50,7 @@
"dist"
],
"peerDependencies": {
"@nextcloud/vue": "^8.9.1",
"@nextcloud/vue": "^8.16.0",
"vue": "^2.7.16"
},
"dependencies": {
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -7,6 +7,9 @@
"lib": ["DOM", "ESNext"],
"outDir": "./dist",
"rootDir": "lib/",
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ESNext",
"sourceMap": true,
"plugins": [
{ "name": "typescript-plugin-css-modules" }