Skip to content

Commit a7fae8a

Browse files
committed
v2.1.1, thanks to @mrauhu
- πŸ‘¨β€πŸ’» Merge #42 , thanks to @mrauhu - πŸ“¦ Dependencies update - 🀝 Compatibility with `meteor@1.7.0.3`
1 parent e528c3b commit a7fae8a

File tree

4 files changed

+35
-34
lines changed

4 files changed

+35
-34
lines changed

β€Ž.versionsβ€Ž

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,68 @@
11
aldeed:autoform@6.3.0
22
allow-deny@1.1.0
3-
babel-compiler@7.0.5
4-
babel-runtime@1.2.0
5-
base64@1.0.10
3+
babel-compiler@7.1.1
4+
babel-runtime@1.2.2
5+
base64@1.0.11
66
binary-heap@1.0.10
77
blaze@2.3.2
88
blaze-tools@1.0.10
9-
boilerplate-generator@1.4.0
10-
caching-compiler@1.1.9
9+
boilerplate-generator@1.5.0
10+
caching-compiler@1.1.12
1111
caching-html-compiler@1.1.2
1212
callback-hook@1.1.0
13-
check@1.3.0
13+
check@1.3.1
1414
ddp@1.4.0
15-
ddp-client@2.3.1
15+
ddp-client@2.3.2
1616
ddp-common@1.4.0
17-
ddp-server@2.1.2
17+
ddp-server@2.2.0
1818
deps@1.0.12
1919
diff-sequence@1.1.0
20-
dynamic-import@0.3.0
21-
ecmascript@0.10.0
22-
ecmascript-runtime@0.5.0
23-
ecmascript-runtime-client@0.6.0
24-
ecmascript-runtime-server@0.5.0
20+
dynamic-import@0.4.0
21+
ecmascript@0.11.1
22+
ecmascript-runtime@0.7.0
23+
ecmascript-runtime-client@0.7.1
24+
ecmascript-runtime-server@0.7.0
2525
ejson@1.1.0
2626
geojson-utils@1.0.10
2727
html-tools@1.0.11
2828
htmljs@1.0.11
29-
http@1.4.0
29+
http@1.4.1
3030
id-map@1.1.0
3131
jquery@1.11.10
3232
livedata@1.0.18
33-
logging@1.1.19
34-
meteor@1.8.2
35-
minimongo@1.4.3
36-
modules@0.11.3
37-
modules-runtime@0.9.1
33+
logging@1.1.20
34+
meteor@1.9.0
35+
minimongo@1.4.4
36+
modern-browsers@0.1.2
37+
modules@0.12.0
38+
modules-runtime@0.10.0
3839
momentjs:moment@2.10.6
39-
mongo@1.4.2
40+
mongo@1.5.0
4041
mongo-dev-server@1.1.0
41-
mongo-id@1.0.6
42-
npm-mongo@2.2.33
42+
mongo-id@1.0.7
43+
npm-mongo@3.0.7
4344
observe-sequence@1.0.16
4445
ordered-dict@1.1.0
45-
ostrio:autoform-files@2.1.0
46-
ostrio:cookies@2.2.4
47-
ostrio:files@1.9.8
48-
promise@0.10.1
46+
ostrio:autoform-files@2.1.1
47+
ostrio:cookies@2.3.0
48+
ostrio:files@1.10.1
49+
promise@0.11.1
4950
random@1.1.0
5051
reactive-dict@1.2.0
5152
reactive-var@1.0.11
5253
reload@1.2.0
5354
retry@1.1.0
54-
routepolicy@1.0.12
55-
socket-stream-client@0.1.0
55+
routepolicy@1.0.13
56+
socket-stream-client@0.2.1
5657
spacebars@1.0.15
5758
spacebars-compiler@1.1.2
5859
templating@1.3.2
5960
templating-compiler@1.3.3
6061
templating-runtime@1.3.2
6162
templating-tools@1.1.2
62-
tracker@1.1.3
63+
tracker@1.2.0
6364
ui@1.0.13
6465
underscore@1.0.10
6566
url@1.2.0
66-
webapp@1.5.0
67+
webapp@1.6.0
6768
webapp-hashing@1.0.9

β€Žlib/client/fileUpload.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
{{/with}}
2929
{{/if}}
3030
{{/with}}
31-
</template>
31+
</template>

β€Žlib/client/fileUpload.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Template.afFileUpload.events({
102102
let ctx;
103103
try {
104104
ctx = AutoForm.getValidationContext(template.formId);
105-
} catch (e) {
105+
} catch (exception) {
106106
// Fix: "TypeError: Cannot read property '_resolvedSchema' of undefined"
107107
ctx = AutoForm.getValidationContext();
108108
}

β€Žpackage.jsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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.1.0',
5+
version: '2.1.1',
66
git: 'https://github.com/VeliovGroup/meteor-autoform-file.git'
77
});
88

@@ -17,7 +17,7 @@ Package.onUse(function(api) {
1717
'reactive-var',
1818
'templating@1.3.2',
1919
'aldeed:autoform@6.3.0',
20-
'ostrio:files@1.9.8'
20+
'ostrio:files@1.10.1'
2121
]);
2222

2323
api.addFiles([

0 commit comments

Comments
Β (0)