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
8 changes: 4 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
"project": "./tsconfig.*?.json"
},
"rules": {
"semi": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/semi": [
"error"
"semi": [
"error",
"always"
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@angular-eslint/prefer-standalone": [
"off"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push-or-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
path: ${{ env.CACHE_NODE_MODULES_PATH }}
key: node_modules-${{ hashFiles('**/package-lock.json') }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ${{ env.CACHE_DIST_PATH }}
key: dist-${{ github.run_id }}
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [8.0.0](https://github.com/valor-software/ng2-file-upload/compare/v7.0.0...v7.0.1) (2025-01-15)
## [9.0.0](https://github.com/valor-software/ng2-file-upload/compare/v8.0.0...v9.0.0) (2025-09-04)


* Added angular 19 support

## [8.0.0](https://github.com/valor-software/ng2-file-upload/compare/v7.0.1...v8.0.0) (2025-01-15)


* Added angular 19 support
Expand Down
2 changes: 1 addition & 1 deletion libs/ng2-file-upload/file-upload/file-uploader.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface FileUploaderOptions {
authTokenHeader?: string;
additionalParameter?: { [ key: string ]: any };
parametersBeforeFiles?: boolean;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line
formatDataFunction?: Function;
formatDataFunctionIsAsync?: boolean;
}
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,6 +1,6 @@
{
"name": "ng2-file-upload-demo",
"version": "8.0.0",
"version": "9.0.0",
"private": true,
"description": "Angular file upload directives",
"scripts": {
Expand Down
Loading