Skip to content

Commit d907a3c

Browse files
committed
Update dependencies and publish
1 parent bd64eab commit d907a3c

File tree

31 files changed

+201
-197
lines changed

31 files changed

+201
-197
lines changed

HISTORY.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## v.2.4.0, 2021-April-12
1+
## v2.5.0, 2021-June-5
2+
3+
* [#331](https://github.com/meteor/blaze/pull/331) Remove underscore and all of its methods in the code
4+
5+
* Updated dependencies
6+
7+
## v2.4.0, 2021-April-12
28

39
* [#313](https://github.com/meteor/blaze/pull/313) Implemented HMR for Blaze
410

packages/blaze-hot/.versions

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
1+
22
33
4-
blaze@2.4.0
5-
blaze-hot@1.0.0
4+
blaze@2.5.0
5+
blaze-hot@1.1.0
66
77
88
99
1010
1111
12-
12+
1313
1414
1515

packages/blaze-hot/package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Package.describe({
22
name: 'blaze-hot',
33
summary: "Update files using Blaze's API with HMR",
4-
version: '1.0.0',
4+
version: '1.1.0',
55
git: 'https://github.com/meteor/blaze.git',
66
documentation: null,
77
debugOnly: true
88
});
99

1010
Package.onUse(function (api) {
11-
api.use('modules@0.15.0');
12-
api.use('ecmascript@0.14.4');
13-
api.use('blaze@2.4.0');
11+
api.use('modules@0.16.0');
12+
api.use('ecmascript@0.15.1');
13+
api.use('blaze@2.5.0');
1414
api.use('[email protected]');
1515
api.use('[email protected]', { weak: true });
1616

packages/blaze-html-templates/.versions

Lines changed: 8 additions & 8 deletions
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
Package.describe({
22
name: 'blaze-html-templates',
33
summary: "Compile HTML templates into reactive UI with Meteor Blaze",
4-
version: '1.2.0',
4+
version: '1.2.1',
55
git: 'https://github.com/meteor/blaze.git'
66
});
77

88
Package.onUse(function(api) {
99
api.imply([
1010
// A library for reactive user interfaces
11-
'blaze@2.4.0',
11+
'blaze@2.5.0',
1212

1313
// The following packages are basically empty shells that just exist to
1414
// satisfy code checking for the existence of a package. Rest assured that
1515
// they are not adding any bloat to your bundle.
1616
'[email protected]', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0.
17-
'spacebars@1.1.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0
17+
'spacebars@1.2.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0
1818

1919
// Compile .html files into Blaze reactive views
20-
20+
2121
]);
2222
});

packages/blaze-tools/.versions

Lines changed: 3 additions & 3 deletions

packages/blaze-tools/package.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
Package.describe({
22
name: 'blaze-tools',
33
summary: "Compile-time tools for Blaze",
4-
version: '1.1.1',
4+
version: '1.1.2',
55
git: 'https://github.com/meteor/blaze.git'
66
});
77

88
Package.onUse(function (api) {
9-
api.use('ecmascript@0.14.4');
9+
api.use('ecmascript@0.15.1');
1010
api.use('[email protected]');
1111

12-
api.export('BlazeTools')
12+
api.export('BlazeTools');
1313
api.mainModule('preamble.js');
1414
});
1515

1616
Package.onTest(function (api) {
17-
api.use('tinytest@1.0.11');
17+
api.use('tinytest@1.1.0');
1818
api.use('ecmascript');
1919

2020
api.use('blaze-tools');
21-
api.use('[email protected].0');
21+
api.use('[email protected].1');
2222

2323
api.addFiles([
2424
'token_tests.js'

packages/blaze/package.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'blaze',
33
summary: "Meteor Reactive Templating library",
4-
version: '2.4.0',
4+
version: '2.5.0',
55
git: 'https://github.com/meteor/blaze.git'
66
});
77

@@ -14,12 +14,12 @@ Npm.depends({
1414

1515
Package.onUse(function (api) {
1616
api.use('[email protected] || 3.0.0', { weak: true }); // should be a weak dep, by having multiple "DOM backends"
17-
api.use('tracker@1.1.0');
18-
api.use('check@1.2.3');
19-
api.use('[email protected].12');
20-
api.use('[email protected].10');
21-
api.use('ordered-dict@1.0.9');
22-
api.use('ecmascript@0.14.4');
17+
api.use('tracker@1.2.0');
18+
api.use('check@1.3.1');
19+
api.use('[email protected].16');
20+
api.use('[email protected].11');
21+
api.use('ordered-dict@1.1.0');
22+
api.use('ecmascript@0.15.1');
2323

2424
api.export([
2525
'Blaze',
@@ -55,15 +55,15 @@ Package.onUse(function (api) {
5555
});
5656

5757
Package.onTest(function (api) {
58-
api.use('ecmascript@0.14.4')
59-
api.use('tinytest@1.0.11');
60-
api.use('test-helpers@1.0.10');
58+
api.use('ecmascript@0.15.1');
59+
api.use('tinytest@1.1.0');
60+
api.use('test-helpers@1.2.0');
6161
api.use('[email protected] || 3.0.0'); // strong dependency, for testing jQuery backend
62-
api.use('[email protected].10');
62+
api.use('[email protected].11');
6363
api.use('[email protected]');
6464

6565
api.use('blaze');
66-
api.use('[email protected].0'); // for BlazeTools.toJS
66+
api.use('[email protected].2'); // for BlazeTools.toJS
6767
api.use('[email protected]');
6868
api.use('templating');
6969

0 commit comments

Comments
 (0)