File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ This driver uses semantic versioning:
14
14
- A change in the major version (e.g. 1.Y.Z -> 2.0.0) indicates _ breaking_
15
15
changes that require changes in your code to upgrade.
16
16
17
+ ## [ Unreleased]
18
+
19
+ ### Changed
20
+
21
+ - Removed ` File ` from ` source ` option types in Foxx CRUD methods ([ #818 ] ( https://github.com/arangodb/arangojs/issues/818 ) )
22
+
23
+ The ` source ` option type already includes ` Blob ` , which ` File ` extends.
24
+
17
25
## [ 10.1.0] - 2025-01-13
18
26
19
27
### Added
@@ -2460,6 +2468,7 @@ For a detailed list of changes between pre-release versions of v7 see the
2460
2468
2461
2469
Graph methods now only return the relevant part of the response body.
2462
2470
2471
+ [ unreleased ] : https://github.com/arangodb/arangojs/compare/v10.1.0...HEAD
2463
2472
[ 10.1.0 ] : https://github.com/arangodb/arangojs/compare/v10.0.0...v10.1.0
2464
2473
[ 10.0.0 ] : https://github.com/arangodb/arangojs/compare/v9.3.0...v10.0.0
2465
2474
[ 9.3.0 ] : https://github.com/arangodb/arangojs/compare/v9.2.0...v9.3.0
Original file line number Diff line number Diff line change @@ -3409,7 +3409,7 @@ export class Database {
3409
3409
*/
3410
3410
async installService (
3411
3411
mount : string ,
3412
- source : File | Blob | string ,
3412
+ source : Blob | string ,
3413
3413
options : services . InstallServiceOptions = { }
3414
3414
) : Promise < services . ServiceDescription > {
3415
3415
const { configuration, dependencies, ...search } = options ;
@@ -3467,7 +3467,7 @@ export class Database {
3467
3467
*/
3468
3468
async replaceService (
3469
3469
mount : string ,
3470
- source : File | Blob | string ,
3470
+ source : Blob | string ,
3471
3471
options : services . ReplaceServiceOptions = { }
3472
3472
) : Promise < services . ServiceDescription > {
3473
3473
const { configuration, dependencies, ...search } = options ;
@@ -3525,7 +3525,7 @@ export class Database {
3525
3525
*/
3526
3526
async upgradeService (
3527
3527
mount : string ,
3528
- source : File | Blob | string ,
3528
+ source : Blob | string ,
3529
3529
options : services . UpgradeServiceOptions = { }
3530
3530
) : Promise < services . ServiceDescription > {
3531
3531
const { configuration, dependencies, ...search } = options ;
You can’t perform that action at this time.
0 commit comments