Skip to content

Commit 47bfac2

Browse files
committed
publish 8.0.0-rc.1
1 parent 85e221d commit 47bfac2

File tree

2 files changed

+49
-44
lines changed

2 files changed

+49
-44
lines changed

.versions

+45-40
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,75 @@
1-
aldeed:autoform@7.0.1
1+
aldeed:autoform@8.0.0-rc.1
2+
aldeed:collection2@4.0.2-beta.1
23
aldeed:moment-timezone@0.4.0
4+
aldeed:simple-schema@2.0.0-beta300.0
35
allow-deny@1.1.1
4-
babel-compiler@7.10.3
6+
babel-compiler@7.10.5
57
babel-runtime@1.5.1
68
base64@1.0.12
79
binary-heap@1.0.11
8-
blaze@2.1.8
9-
blaze-tools@1.0.10
10-
boilerplate-generator@1.7.1
10+
blaze@2.9.0
11+
blaze-tools@1.1.4
12+
boilerplate-generator@1.7.2
1113
caching-compiler@1.2.2
12-
caching-html-compiler@1.0.4
13-
callback-hook@1.5.0
14+
caching-html-compiler@1.2.2
15+
callback-hook@1.5.1
1416
check@1.3.2
1517
ddp@1.4.1
1618
ddp-client@2.6.1
1719
ddp-common@1.4.0
18-
ddp-server@2.6.0
19-
deps@1.0.12
20+
ddp-server@2.7.0
2021
diff-sequence@1.1.2
21-
dynamic-import@0.7.2
22-
ecmascript@0.16.6
23-
ecmascript-runtime@0.8.0
22+
dynamic-import@0.7.3
23+
ecmascript@0.16.8
24+
ecmascript-runtime@0.8.1
2425
ecmascript-runtime-client@0.12.1
2526
ecmascript-runtime-server@0.11.0
2627
ejson@1.1.3
27-
fetch@0.1.3
28+
fetch@0.1.4
2829
geojson-utils@1.0.11
29-
html-tools@1.0.11
30-
htmljs@1.0.11
30+
html-tools@1.1.4
31+
htmljs@1.2.1
32+
http@1.0.10
3133
id-map@1.1.1
3234
inter-process-messaging@0.1.1
33-
jquery@1.11.10
34-
livedata@1.0.18
35-
local-test:aldeed:autoform@7.0.1
36-
logging@1.3.2
37-
meteor@1.11.1
38-
meteortesting:browser-tests@0.1.2
39-
meteortesting:mocha@0.4.4
40-
minimongo@1.9.2
41-
modern-browsers@0.1.9
42-
modules@0.19.0
35+
jquery@3.0.0
36+
local-test:aldeed:autoform@8.0.0-rc.1
37+
logging@1.3.3
38+
meteor@1.11.5
39+
meteortesting:browser-tests@1.6.0-beta300.0
40+
meteortesting:mocha@3.1.0-beta300.0
41+
meteortesting:mocha-core@8.3.1-beta300.0
42+
minimongo@1.9.3
43+
modern-browsers@0.1.10
44+
modules@0.20.0
4345
modules-runtime@0.13.1
44-
momentjs:moment@2.10.6
45-
mongo@1.16.5
46+
momentjs:moment@2.30.1
47+
mongo@1.16.8
4648
mongo-decimal@0.1.3
4749
mongo-dev-server@1.1.0
4850
mongo-id@1.0.8
49-
npm-mongo@4.14.0
50-
observe-sequence@1.0.16
51+
npm-mongo@4.17.2
52+
observe-sequence@1.0.21
5153
ordered-dict@1.1.0
52-
practicalmeteor:mocha-core@1.0.1
5354
promise@0.12.2
55+
raix:eventemitter@1.0.0
5456
random@1.2.1
55-
react-fast-refresh@0.2.6
57+
react-fast-refresh@0.2.8
5658
reactive-dict@1.3.1
5759
reactive-var@1.0.12
5860
reload@1.3.1
5961
retry@1.1.0
6062
routepolicy@1.1.1
61-
socket-stream-client@0.5.0
62-
spacebars@1.0.12
63-
spacebars-compiler@1.1.0
64-
templating@1.1.7
65-
templating-tools@1.1.1
66-
tracker@1.3.1
67-
ui@1.0.11
68-
underscore@1.0.12
69-
webapp@1.13.4
63+
socket-stream-client@0.5.2
64+
spacebars@1.3.0
65+
spacebars-compiler@1.3.2
66+
templating@1.4.3
67+
templating-compiler@1.4.2
68+
templating-runtime@1.6.4
69+
templating-tools@1.2.3
70+
tracker@1.3.3
71+
typescript@4.9.5
72+
underscore@1.6.0
73+
url@1.3.2
74+
webapp@1.13.8
7075
webapp-hashing@1.1.1

package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ Package.onUse(function (api) {
1616

1717
// Dependencies
1818
api.use([
19-
'templating',
2019
'ejson',
21-
'blaze',
2220
'reactive-var',
2321
'reactive-dict',
2422
'random',
2523
'ecmascript',
2624
'mongo',
27-
'jquery'
25+
'blaze@2.9.0 || 3.0.0-alpha300.17',
26+
'templating@1.4.3 || 1.4.4-alpha300.17',
27+
'jquery@3.0.0 || 3.0.1-alpha300.19'
2828
])
2929

3030
api.use(
@@ -68,7 +68,7 @@ Package.onTest(function (api) {
6868
'ecmascript',
6969
'random',
7070
'tracker',
71-
'blaze',
71+
'blaze@2.9.0 || 3.0.0-alpha300.17',
7272
'templating@1.4.3 || 1.4.4-alpha300.17',
7373
'mongo',
7474
'meteortesting:mocha@3.1.0-beta300.0',

0 commit comments

Comments
 (0)