Skip to content

Commit 8bcaa4c

Browse files
authored
Merge pull request #1276 from lexasq/alex-bump-to-version-6
Chore: bump to v6.0.0 because of v17 support
2 parents bd63177 + 1ba1fd1 commit 8bcaa4c

File tree

10 files changed

+23
-11
lines changed

10 files changed

+23
-11
lines changed

.eslintrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
},
4646
"rules": {
4747
"semi": "off",
48+
"@typescript-eslint/no-explicit-any": "off",
4849
"@typescript-eslint/semi": [
4950
"error"
5051
],
@@ -60,6 +61,13 @@
6061
"plugin:@nx/javascript"
6162
],
6263
"rules": {}
64+
},
65+
{
66+
"files": ["*.json"],
67+
"parser": "jsonc-eslint-parser",
68+
"rules": {
69+
"@nx/dependency-checks": "error"
70+
}
6371
}
6472
]
6573
}

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [6.0.0](https://github.com/valor-software/ng2-file-upload/compare/v5.0.0...v6.0.0) (2024-07-02)
2+
* Added angular 17 support
3+
4+
15
# [5.0.0](https://github.com/valor-software/ng2-file-upload/compare/v4.0.0...v5.0.0) (2023-07-21)
26

37

Loading

apps/demo/src/app/components/file-upload/simple-demo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class SimpleDemoComponent {
2121
disableMultipart: true, // 'DisableMultipart' must be 'true' for formatDataFunction to be called.
2222
formatDataFunctionIsAsync: true,
2323
formatDataFunction: async item => {
24-
return new Promise((resolve, reject) => {
24+
return new Promise((resolve, ) => {
2525
resolve({
2626
name: item._file.name,
2727
length: item._file.size,

apps/demo/src/typings.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ declare const PR:any;
1111
// declare const global:any;
1212
// eslint-disable-next-line @typescript-eslint/prefer-namespace-keyword
1313
declare module jasmine {
14+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1415
interface Matchers<T> {
1516
toHaveCssClass(expected: any): boolean;
1617
}

libs/ng2-file-upload/file-upload/file-uploader.class.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -344,21 +344,21 @@ export class FileUploader {
344344
};
345345
xhr.onload = () => {
346346
const headers = this._parseHeaders(xhr.getAllResponseHeaders());
347-
const response = this._transformResponse(xhr.response, headers);
347+
const response = this._transformResponse(xhr.response);
348348
const gist = this._isSuccessCode(xhr.status) ? 'Success' : 'Error';
349349
const method = `_on${gist}Item`;
350350
(this as any)[ method ](item, response, xhr.status, headers);
351351
this._onCompleteItem(item, response, xhr.status, headers);
352352
};
353353
xhr.onerror = () => {
354354
const headers = this._parseHeaders(xhr.getAllResponseHeaders());
355-
const response = this._transformResponse(xhr.response, headers);
355+
const response = this._transformResponse(xhr.response);
356356
this._onErrorItem(item, response, xhr.status, headers);
357357
this._onCompleteItem(item, response, xhr.status, headers);
358358
};
359359
xhr.onabort = () => {
360360
const headers = this._parseHeaders(xhr.getAllResponseHeaders());
361-
const response = this._transformResponse(xhr.response, headers);
361+
const response = this._transformResponse(xhr.response);
362362
this._onCancelItem(item, response, xhr.status, headers);
363363
this._onCompleteItem(item, response, xhr.status, headers);
364364
};
@@ -446,7 +446,7 @@ export class FileUploader {
446446
return (status >= 200 && status < 300) || status === 304;
447447
}
448448

449-
protected _transformResponse(response: string, headers: ParsedResponseHeaders): string {
449+
protected _transformResponse(response: string): string {
450450
return response;
451451
}
452452

libs/ng2-file-upload/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng2-file-upload",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Angular file uploader",
55
"author": "Dmitriy Shekhovtsov <[email protected]>",
66
"license": "MIT",

libs/ng2-file-upload/project.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
],
1212
"options": {
1313
"tsConfig": "libs/ng2-file-upload/tsconfig.lib.json",
14-
"project": "libs/ng2-file-upload/ng-package.json",
15-
"updateBuildableProjectDepsInPackageJson": true
14+
"project": "libs/ng2-file-upload/ng-package.json"
1615
},
1716
"configurations": {
1817
"production": {

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng2-file-upload-demo",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"private": true,
55
"description": "Angular file upload directives",
66
"scripts": {

0 commit comments

Comments
 (0)