Skip to content

Commit

Permalink
Update dependencies and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jun 5, 2021
1 parent bd64eab commit d907a3c
Show file tree
Hide file tree
Showing 31 changed files with 201 additions and 197 deletions.
8 changes: 7 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## v.2.4.0, 2021-April-12
## v2.5.0, 2021-June-5

* [#331](https://github.com/meteor/blaze/pull/331) Remove underscore and all of its methods in the code

* Updated dependencies

## v2.4.0, 2021-April-12

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

Expand Down
8 changes: 4 additions & 4 deletions packages/blaze-hot/.versions
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
blaze@2.4.0
blaze-hot@1.0.0
blaze@2.5.0
blaze-hot@1.1.0
blaze-tools@1.1.0
caching-compiler@1.2.2
caching-html-compiler@1.2.0
check@1.3.1
diff-sequence@1.1.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
Expand Down
8 changes: 4 additions & 4 deletions packages/blaze-hot/package.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Package.describe({
name: 'blaze-hot',
summary: "Update files using Blaze's API with HMR",
version: '1.0.0',
version: '1.1.0',
git: 'https://github.com/meteor/blaze.git',
documentation: null,
debugOnly: true
});

Package.onUse(function (api) {
api.use('modules@0.15.0');
api.use('ecmascript@0.14.4');
api.use('blaze@2.4.0');
api.use('modules@0.16.0');
api.use('ecmascript@0.15.1');
api.use('blaze@2.5.0');
api.use('templating-runtime@1.4.0');
api.use('hot-module-replacement@0.2.0', { weak: true });

Expand Down
16 changes: 8 additions & 8 deletions packages/blaze-html-templates/.versions
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
blaze@2.4.0
blaze-html-templates@1.2.0
blaze@2.5.0
blaze-html-templates@1.2.1
blaze-tools@1.1.0
caching-compiler@1.2.2
caching-html-compiler@1.2.0
check@1.3.1
diff-sequence@1.1.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
Expand All @@ -30,11 +30,11 @@ promise@0.11.2
random@1.2.0
react-fast-refresh@0.1.0
reactive-var@1.0.11
spacebars@1.1.0
spacebars@1.2.0
spacebars-compiler@1.2.0
templating@1.4.0
templating-compiler@1.4.0
templating-runtime@1.4.0
templating@1.4.1
templating-compiler@1.4.1
templating-runtime@1.5.0
templating-tools@1.2.0
tracker@1.2.0
ui@1.0.13
Expand Down
8 changes: 4 additions & 4 deletions packages/blaze-html-templates/package.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
Package.describe({
name: 'blaze-html-templates',
summary: "Compile HTML templates into reactive UI with Meteor Blaze",
version: '1.2.0',
version: '1.2.1',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function(api) {
api.imply([
// A library for reactive user interfaces
'blaze@2.4.0',
'blaze@2.5.0',

// The following packages are basically empty shells that just exist to
// satisfy code checking for the existence of a package. Rest assured that
// they are not adding any bloat to your bundle.
'ui@1.0.13', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0.
'spacebars@1.1.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0
'spacebars@1.2.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0

// Compile .html files into Blaze reactive views
'templating@1.4.0'
'templating@1.4.1'
]);
});
6 changes: 3 additions & 3 deletions packages/blaze-tools/.versions
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
blaze-tools@1.1.1
blaze-tools@1.1.2
boilerplate-generator@1.7.1
callback-hook@1.3.0
check@1.3.1
Expand All @@ -20,11 +20,11 @@ ecmascript-runtime-server@0.10.0
ejson@1.1.1
fetch@0.1.1
geojson-utils@1.0.10
html-tools@1.1.0
html-tools@1.1.1
htmljs@1.1.0
id-map@1.1.0
inter-process-messaging@0.1.1
local-test:blaze-tools@1.1.1
local-test:blaze-tools@1.1.2
logging@1.2.0
meteor@1.9.3
minimongo@1.6.2
Expand Down
10 changes: 5 additions & 5 deletions packages/blaze-tools/package.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Package.describe({
name: 'blaze-tools',
summary: "Compile-time tools for Blaze",
version: '1.1.1',
version: '1.1.2',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function (api) {
api.use('ecmascript@0.14.4');
api.use('ecmascript@0.15.1');
api.use('htmljs@1.1.0');

api.export('BlazeTools')
api.export('BlazeTools');
api.mainModule('preamble.js');
});

Package.onTest(function (api) {
api.use('tinytest@1.0.11');
api.use('tinytest@1.1.0');
api.use('ecmascript');

api.use('blaze-tools');
api.use('html-tools@1.1.0');
api.use('html-tools@1.1.1');

api.addFiles([
'token_tests.js'
Expand Down
18 changes: 9 additions & 9 deletions packages/blaze/.versions
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
allow-deny@1.1.0
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
blaze@2.4.0
blaze-tools@1.1.0
blaze@2.5.0
blaze-tools@1.1.2
boilerplate-generator@1.7.1
caching-compiler@1.2.2
caching-html-compiler@1.1.2
Expand All @@ -16,7 +16,7 @@ ddp-common@1.4.0
ddp-server@2.3.2
diff-sequence@1.1.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
Expand All @@ -28,18 +28,18 @@ htmljs@1.1.0
id-map@1.1.0
inter-process-messaging@0.1.1
jquery@1.11.10
local-test:blaze@2.4.0
local-test:blaze@2.5.0
logging@1.2.0
meteor@1.9.3
minimongo@1.6.1
minimongo@1.6.2
modern-browsers@0.1.5
modules@0.16.0
modules-runtime@0.12.0
mongo@1.10.1
mongo@1.11.0
mongo-decimal@0.1.2
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.8.1
npm-mongo@3.9.0
observe-sequence@1.0.16
ordered-dict@1.1.0
promise@0.11.2
Expand All @@ -60,5 +60,5 @@ test-helpers@1.2.0
tinytest@1.1.0
tracker@1.2.0
underscore@1.0.10
webapp@1.10.0
webapp@1.10.1
webapp-hashing@1.1.0
24 changes: 12 additions & 12 deletions packages/blaze/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'blaze',
summary: "Meteor Reactive Templating library",
version: '2.4.0',
version: '2.5.0',
git: 'https://github.com/meteor/blaze.git'
});

Expand All @@ -14,12 +14,12 @@ Npm.depends({

Package.onUse(function (api) {
api.use('jquery@1.11.9 || 3.0.0', { weak: true }); // should be a weak dep, by having multiple "DOM backends"
api.use('tracker@1.1.0');
api.use('check@1.2.3');
api.use('observe-sequence@1.0.12');
api.use('reactive-var@1.0.10');
api.use('ordered-dict@1.0.9');
api.use('ecmascript@0.14.4');
api.use('tracker@1.2.0');
api.use('check@1.3.1');
api.use('observe-sequence@1.0.16');
api.use('reactive-var@1.0.11');
api.use('ordered-dict@1.1.0');
api.use('ecmascript@0.15.1');

api.export([
'Blaze',
Expand Down Expand Up @@ -55,15 +55,15 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.use('ecmascript@0.14.4')
api.use('tinytest@1.0.11');
api.use('test-helpers@1.0.10');
api.use('ecmascript@0.15.1');
api.use('tinytest@1.1.0');
api.use('test-helpers@1.2.0');
api.use('jquery@1.11.9 || 3.0.0'); // strong dependency, for testing jQuery backend
api.use('reactive-var@1.0.10');
api.use('reactive-var@1.0.11');
api.use('tracker@1.1.0');

api.use('blaze');
api.use('blaze-tools@1.1.0'); // for BlazeTools.toJS
api.use('blaze-tools@1.1.2'); // for BlazeTools.toJS
api.use('html-tools@1.1.0');
api.use('templating');

Expand Down
15 changes: 7 additions & 8 deletions packages/caching-html-compiler/.versions
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
blaze-tools@1.1.0
blaze-tools@1.1.2
caching-compiler@1.2.2
caching-html-compiler@1.2.0
caching-html-compiler@1.2.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
fetch@0.1.1
html-tools@1.1.0
html-tools@1.1.2
htmljs@1.1.0
inter-process-messaging@0.1.1
meteor@1.9.3
Expand All @@ -19,6 +19,5 @@ modules-runtime@0.12.0
promise@0.11.2
random@1.2.0
react-fast-refresh@0.1.0
spacebars-compiler@1.2.0
templating-tools@1.2.0
underscore@1.0.10
spacebars-compiler@1.3.0
templating-tools@1.2.1
10 changes: 5 additions & 5 deletions packages/caching-html-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Package.describe({
name: 'caching-html-compiler',
summary: "Pluggable class for compiling HTML into templates",
version: '1.2.0',
version: '1.2.1',
git: 'https://github.com/meteor/blaze.git'
});

Npm.depends({
'lodash.isempty': '4.4.0'
})
});

Package.onUse(function(api) {
api.use([
'caching-compiler@1.1.7',
'ecmascript@0.14.4'
'caching-compiler@1.2.2',
'ecmascript@0.15.1'
]);

api.export('CachingHtmlCompiler', 'server');

api.use([
'templating-tools@1.2.0'
'templating-tools@1.2.1'
]);

api.addFiles([
Expand Down
4 changes: 2 additions & 2 deletions packages/html-tools/.versions
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ ecmascript-runtime-server@0.10.0
ejson@1.1.1
fetch@0.1.1
geojson-utils@1.0.10
html-tools@1.1.1
html-tools@1.1.2
htmljs@1.1.0
id-map@1.1.0
inter-process-messaging@0.1.1
local-test:html-tools@1.1.1
local-test:html-tools@1.1.2
logging@1.2.0
meteor@1.9.3
minimongo@1.6.2
Expand Down
6 changes: 3 additions & 3 deletions packages/html-tools/package.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package.describe({
name: 'html-tools',
summary: "Standards-compliant HTML tools",
version: '1.1.1',
version: '1.1.2',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function (api) {
api.use('ecmascript@0.14.4');
api.use('ecmascript@0.15.1');
api.use('htmljs@1.1.0');
api.imply('htmljs@1.1.0');

Expand All @@ -16,7 +16,7 @@ Package.onUse(function (api) {

Package.onTest(function (api) {
api.use('ecmascript');
api.use('tinytest@1.0.11');
api.use('tinytest@1.1.0');

api.use('html-tools');
api.use('htmljs@1.1.0');
Expand Down
Loading

0 comments on commit d907a3c

Please sign in to comment.