Skip to content

Commit 49f3bed

Browse files
authored
Merge pull request #871 from veliovgroup/dev
πŸ“¦ v2.3.3 __Major changes:__ - no __Changes:__ - πŸ‘¨β€πŸ”§ Fixed #870, thanks to @Gobliins - 🀝 Compatibility with `meteor@2.11.0`
2 parents b312ef9 + 83e0caa commit 49f3bed

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

β€Ž.versions

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
allow-deny@1.1.1
2-
babel-compiler@7.9.0
2+
babel-compiler@7.10.3
33
babel-runtime@1.5.1
44
base64@1.0.12
55
binary-heap@1.0.11
66
boilerplate-generator@1.7.1
7-
callback-hook@1.4.0
8-
check@1.3.1
9-
ddp@1.4.0
10-
ddp-client@2.6.0
7+
callback-hook@1.5.0
8+
check@1.3.2
9+
ddp@1.4.1
10+
ddp-client@2.6.1
1111
ddp-common@1.4.0
1212
ddp-server@2.6.0
13-
diff-sequence@1.1.1
13+
diff-sequence@1.1.2
1414
dynamic-import@0.7.2
15-
ecmascript@0.16.2
15+
ecmascript@0.16.6
1616
ecmascript-runtime@0.8.0
1717
ecmascript-runtime-client@0.12.1
1818
ecmascript-runtime-server@0.11.0
19-
ejson@1.1.2
20-
fetch@0.1.1
21-
geojson-utils@1.0.10
19+
ejson@1.1.3
20+
fetch@0.1.3
21+
geojson-utils@1.0.11
2222
id-map@1.1.1
2323
inter-process-messaging@0.1.1
24-
local-test:ostrio:files@2.3.2
25-
logging@1.3.1
26-
meteor@1.10.1
27-
minimongo@1.9.0
28-
modern-browsers@0.1.8
24+
local-test:ostrio:files@2.3.3
25+
logging@1.3.2
26+
meteor@1.11.1
27+
minimongo@1.9.2
28+
modern-browsers@0.1.9
2929
modules@0.19.0
30-
modules-runtime@0.13.0
31-
mongo@1.16.0
30+
modules-runtime@0.13.1
31+
mongo@1.16.5
3232
mongo-decimal@0.1.3
3333
mongo-dev-server@1.1.0
3434
mongo-id@1.0.8
35-
npm-mongo@4.9.0
35+
npm-mongo@4.14.0
3636
ordered-dict@1.1.0
3737
ostrio:cookies@2.7.2
38-
ostrio:files@2.3.2
39-
promise@0.12.0
40-
random@1.2.0
41-
react-fast-refresh@0.2.3
42-
reactive-var@1.0.11
38+
ostrio:files@2.3.3
39+
promise@0.12.2
40+
random@1.2.1
41+
react-fast-refresh@0.2.6
42+
reactive-var@1.0.12
4343
reload@1.3.1
4444
retry@1.1.0
4545
routepolicy@1.1.1
4646
socket-stream-client@0.5.0
47-
tinytest@1.2.1
48-
tracker@1.2.0
49-
underscore@1.0.10
50-
webapp@1.13.1
51-
webapp-hashing@1.1.0
47+
tinytest@1.2.2
48+
tracker@1.3.1
49+
underscore@1.0.12
50+
webapp@1.13.4
51+
webapp-hashing@1.1.1

β€ŽLICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022, dr.dimitru (Dmitry A.; Veliov Group, LLC)
1+
Copyright (c) 2023, dr.dimitru (Dmitry A.; Veliov Group, LLC)
22
All rights reserved.
33

44
Redistribution and use in source and binary forms,

β€Žpackage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'ostrio:files',
3-
version: '2.3.2',
3+
version: '2.3.3',
44
summary: 'Upload files to a server or 3rd party storage: AWS:S3, GridFS, DropBox, and other',
55
git: 'https://github.com/veliovgroup/Meteor-Files',
66
documentation: 'README.md'

β€Žserver.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,11 +1430,11 @@ class FilesCollection extends FilesCollectionCore {
14301430
wStream.destroy();
14311431
}
14321432

1433-
fs.remove(opts.path, (removeError) => {
1433+
fs.unlink(opts.path, (unlinkError) => {
14341434
bound(() => {
14351435
callback && callback(error);
1436-
if (removeError) {
1437-
this._debug(`[FilesCollection] [load] [fetch(${url})] [fs.remove(${opts.path})] removeError:`, removeError);
1436+
if (unlinkError) {
1437+
this._debug(`[FilesCollection] [load] [fetch(${url})] [fs.unlink(${opts.path})] unlinkError:`, unlinkError);
14381438
}
14391439
});
14401440
});

0 commit comments

Comments
Β (0)