Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"@typescript-eslint/semi": ["error"],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
"no-extra-semi": "off",
"@angular-eslint/prefer-inject": "off"
}
},
{
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [7.0.0](https://github.com/valor-software/ng2-dragula/compare/v6.0.0...v7.0.0) (2026-03-06)

### Features

* **dragula:** upgraded to angular 20 ([#1119](https://github.com/valor-software/ng2-dragula/issues/1119)) ([fae8b00](https://github.com/valor-software/ng2-dragula/commit/fae8b00c8c22700d9ca98c8c291e7fe313e0aae0))


### Bug Fixes

* **deps:** update Nx, ng-packagr, jest-preset-angular, and eslint-config-prettier for Angular 20 compatibility ([#1119](https://github.com/valor-software/ng2-dragula/issues/1119)) ([47cbe0a](https://github.com/valor-software/ng2-dragula/commit/47cbe0aaaa5ef6aeeaaae078148704037ab314a3))


# [6.0.0](https://github.com/valor-software/ng2-dragula/compare/v5.0.2...v6.0.0) (2025-08-05)
* **dragula:** updated angular 19 ([#1113](https://github.com/valor-software/ng2-dragula/issues/1113)) ([9544031](https://github.com/valor-software/ng2-dragula/commit/9544031c37a685f552ad44b3c277053045914147))

Expand Down
3 changes: 2 additions & 1 deletion apps/demo/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/prefer-standalone": "off"
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/prefer-inject": "off"
}
},
{
Expand Down
4 changes: 3 additions & 1 deletion libs/ng2-dragula/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
"project": ["libs/ng2-dragula/tsconfig.*?.json"]
},
"rules": {
"@angular-eslint/prefer-standalone": "off"
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/prefer-inject": "off",
"@typescript-eslint/no-explicit-any": "warn"
}
},
{
Expand Down
12 changes: 8 additions & 4 deletions libs/ng2-dragula/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,14 @@ Try out the [demo](http://valor-software.github.io/ng2-dragula/index.html)!

Latest version available for each version of Angular

| ng2-dragula | Angular |
| ---------- |---------|
| 2.1.1 | <= 9.x |
| current | 16.x.x |
| ng2-dragula | Angular |
| ----------- | --------- |
| 2.1.1 | <= 9.x |
| 3.x | 14.x |
| 4.0.0 | 15.x |
| 5.0.0 | 16.x |
| 6.0.0 | 19.x |
| 7.0.0 | 20.x |

# Install

Expand Down
8 changes: 4 additions & 4 deletions libs/ng2-dragula/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng2-dragula",
"private": false,
"version": "6.0.0",
"version": "7.0.0",
"description": "Fork of ng2-dragula updated to angular version 19",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,9 +31,9 @@
"rxjs": ">=6.0.0 <8.0.0",
"@types/dragula": "^2.1.34",
"dragula": "^3.7.2",
"@angular/animations": ">=16.0.0 <20.0.0",
"@angular/core": ">=16.0.0 <20.0.0",
"@angular/common": ">=16.0.0 <20.0.0"
"@angular/animations": ">=16.0.0 <21.0.0",
"@angular/core": ">=16.0.0 <21.0.0",
"@angular/common": ">=16.0.0 <21.0.0"
},
"nx": {
"targets": {
Expand Down
Loading