Skip to content

Commit 3ebfa9f

Browse files
committed
📦 v2.5.0
__Major changes:__ - ⚠️ Minimum required version of meteor is `2.0` - ⚠️ Removed `global.Buffer = function () {};` __Changes:__ - 🤝 Compatibility with `[email protected]` - 📦 `[email protected]`, *was `v1.3.2`* - 📦 `ostrio:[email protected]`, *was `v2.0.0`*
1 parent 89fef34 commit 3ebfa9f

File tree

3 files changed

+59
-46
lines changed

3 files changed

+59
-46
lines changed

.meteorignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.github
2+
.gitignore
3+
.npm
4+
.DS_Store
5+
.eslintcache
6+
node_modules
7+
CHANGELOG.md
8+
CODE_OF_CONDUCT.md
9+
CONTRIBUTING.md
10+
HISTORY.md
11+
LICENCE
12+
LICENSE
13+
README.md

.versions

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
11
2-
3-
babel-compiler@7.6.0
4-
2+
3+
babel-compiler@7.9.0
4+
55
66
7-
blaze@2.3.2
8-
blaze-tools@1.0.10
7+
blaze@2.6.0
8+
blaze-tools@1.1.0
99
1010
11-
caching-html-compiler@1.1.2
12-
callback-hook@1.3.0
11+
caching-html-compiler@1.2.0
12+
callback-hook@1.4.0
1313
1414
15-
ddp-client@2.4.0
15+
ddp-client@2.5.0
1616
17-
ddp-server@2.3.2
17+
ddp-server@2.5.0
1818
1919
20-
dynamic-import@0.6.0
21-
ecmascript@0.15.0
22-
ecmascript-runtime@0.7.0
23-
ecmascript-runtime-client@0.11.0
24-
ecmascript-runtime-server@0.10.0
25-
20+
dynamic-import@0.7.2
21+
ecmascript@0.16.2
22+
ecmascript-runtime@0.8.0
23+
ecmascript-runtime-client@0.12.1
24+
ecmascript-runtime-server@0.11.0
25+
2626
2727
28-
html-tools@1.0.11
29-
htmljs@1.0.11
30-
28+
html-tools@1.1.0
29+
htmljs@1.1.1
30+
3131
3232
3333
34-
logging@1.2.0
35-
meteor@1.9.3
36-
minimongo@1.6.1
37-
38-
modules@0.16.0
39-
modules-runtime@0.12.0
34+
logging@1.3.1
35+
meteor@1.10.0
36+
minimongo@1.8.0
37+
38+
modules@0.18.0
39+
modules-runtime@0.13.0
4040
41-
mongo@1.10.1
42-
41+
mongo@1.15.0
42+
4343
44-
45-
npm-mongo@3.8.1
44+
45+
npm-mongo@4.3.1
4646
4747
48-
ostrio:autoform-files@2.4.0
49-
50-
ostrio:files@2.0.0
51-
promise@0.11.2
48+
ostrio:autoform-files@2.5.0
49+
50+
ostrio:files@2.1.1
51+
promise@0.12.0
5252
53-
react-fast-refresh@0.1.0
53+
react-fast-refresh@0.2.3
5454
5555
5656
5757
58-
59-
socket-stream-client@0.3.1
60-
spacebars@1.0.15
61-
spacebars-compiler@1.1.2
62-
templating@1.3.2
63-
templating-compiler@1.3.3
64-
templating-runtime@1.3.2
65-
templating-tools@1.1.2
58+
59+
socket-stream-client@0.5.0
60+
spacebars@1.3.0
61+
spacebars-compiler@1.2.0
62+
templating@1.4.2
63+
templating-compiler@1.4.1
64+
templating-runtime@1.6.0
65+
templating-tools@1.2.0
6666
6767
6868
69-
webapp@1.10.0
69+
webapp@1.13.1
7070

package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ Package.describe({
22
name: 'ostrio:autoform-files',
33
summary: 'File upload for AutoForm using ostrio:files',
44
description: 'File upload for AutoForm using ostrio:files',
5-
version: '2.4.0',
5+
version: '2.5.0',
66
git: 'https://github.com/veliovgroup/meteor-autoform-file.git'
77
});
88

99
Package.onUse((api) => {
10-
api.versionsFrom('METEOR@1.9');
10+
api.versionsFrom('METEOR@2.0');
1111

1212
api.use([
1313
'check',
1414
'ecmascript',
1515
'mongo',
1616
'reactive-var',
17-
'templating@1.3.2',
17+
'templating@1.4.2',
1818
19-
'ostrio:files@2.0.0'
19+
'ostrio:files@2.1.1'
2020
], 'client');
2121

2222
api.addFiles([

0 commit comments

Comments
 (0)