Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v3.0.3, 2026-XX-XX

### Highlights
* [#480](https://github.com/meteor/blaze/pull/480) Fix SWC compatibility by transforming `arguments` to rest parameters (`...args`)

## v3.0.2, 2025-02-04

### Highlights
Expand Down
48 changes: 24 additions & 24 deletions packages/blaze-hot/.versions
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
babel-compiler@7.11.0
babel-compiler@7.13.0
babel-runtime@1.5.2
base64@1.0.13
blaze@3.0.0
blaze-hot@2.0.0
blaze-tools@2.0.0
caching-compiler@2.0.0
caching-html-compiler@2.0.0
check@1.4.2
blaze@3.0.3
blaze-hot@2.0.1
blaze-tools@2.0.1
caching-compiler@2.0.1
caching-html-compiler@2.0.1
check@1.5.0
core-runtime@1.0.0
diff-sequence@1.1.3
dynamic-import@0.7.4
ecmascript@0.16.9
ecmascript-runtime@0.8.2
ecmascript-runtime-client@0.12.2
ecmascript@0.17.0
ecmascript-runtime@0.8.3
ecmascript-runtime-client@0.12.3
ecmascript-runtime-server@0.11.1
ejson@1.1.4
fetch@0.1.5
html-tools@2.0.0
htmljs@2.0.1
ejson@1.1.5
fetch@0.1.6
html-tools@2.0.1
htmljs@2.0.2
inter-process-messaging@0.1.2
meteor@2.0.0
modern-browsers@0.1.11
modules@0.20.1
meteor@2.2.0
modern-browsers@0.2.3
modules@0.20.3
modules-runtime@0.13.2
mongo-id@1.0.9
observe-sequence@2.0.0
observe-sequence@2.0.1
ordered-dict@1.2.0
promise@1.0.0
random@1.2.2
react-fast-refresh@0.2.9
react-fast-refresh@0.3.0
reactive-var@1.0.13
spacebars@2.0.0
spacebars-compiler@2.0.0
templating-compiler@2.0.0
templating-runtime@2.0.0
templating-tools@2.0.0
spacebars@2.0.1
spacebars-compiler@2.0.1
templating-compiler@2.0.1
templating-runtime@2.0.2
templating-tools@2.0.1
tracker@1.3.4
6 changes: 3 additions & 3 deletions packages/blaze-hot/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'blaze-hot',
summary: "Update files using Blaze's API with HMR",
version: '2.0.0',
version: '2.0.1',
git: 'https://github.com/meteor/blaze.git',
documentation: null,
debugOnly: true
Expand All @@ -10,8 +10,8 @@ Package.describe({
Package.onUse(function (api) {
api.use('modules@0.20.1');
api.use('ecmascript@0.16.9');
api.use('blaze@3.0.0');
api.use('templating-runtime@2.0.0');
api.use('blaze@3.0.3');
api.use('templating-runtime@2.0.2');
api.use('hot-module-replacement@0.5.4', { weak: true });

api.addFiles('hot.js', 'client');
Expand Down
50 changes: 25 additions & 25 deletions packages/blaze-html-templates/.versions
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
babel-compiler@7.11.0
babel-compiler@7.13.0
babel-runtime@1.5.2
base64@1.0.13
blaze@3.0.0
blaze-html-templates@3.0.0
blaze-tools@2.0.0
caching-compiler@2.0.0
caching-html-compiler@2.0.0
check@1.4.2
blaze@3.0.3
blaze-html-templates@3.0.1
blaze-tools@2.0.1
caching-compiler@2.0.1
caching-html-compiler@2.0.1
check@1.5.0
core-runtime@1.0.0
diff-sequence@1.1.3
dynamic-import@0.7.4
ecmascript@0.16.9
ecmascript-runtime@0.8.2
ecmascript-runtime-client@0.12.2
ecmascript@0.17.0
ecmascript-runtime@0.8.3
ecmascript-runtime-client@0.12.3
ecmascript-runtime-server@0.11.1
ejson@1.1.4
fetch@0.1.5
html-tools@2.0.0
htmljs@2.0.1
ejson@1.1.5
fetch@0.1.6
html-tools@2.0.1
htmljs@2.0.2
inter-process-messaging@0.1.2
meteor@2.0.0
modern-browsers@0.1.11
modules@0.20.1
meteor@2.2.0
modern-browsers@0.2.3
modules@0.20.3
modules-runtime@0.13.2
mongo-id@1.0.9
observe-sequence@2.0.0
observe-sequence@2.0.1
ordered-dict@1.2.0
promise@1.0.0
random@1.2.2
react-fast-refresh@0.2.9
react-fast-refresh@0.3.0
reactive-var@1.0.13
spacebars@2.0.0
spacebars-compiler@2.0.0
templating@1.4.4
templating-compiler@2.0.0
templating-runtime@2.0.0
templating-tools@2.0.0
spacebars@2.0.1
spacebars-compiler@2.0.1
templating@1.4.5
templating-compiler@2.0.1
templating-runtime@2.0.2
templating-tools@2.0.1
tracker@1.3.4
6 changes: 3 additions & 3 deletions packages/blaze-html-templates/package.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Package.describe({
name: 'blaze-html-templates',
summary: "Compile HTML templates into reactive UI with Meteor Blaze",
version: '3.0.0',
version: '3.0.1',
git: 'https://github.com/meteor/blaze.git'
});

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

// Compile .html files into Blaze reactive views
'templating@1.4.4'
'templating@1.4.5'
]);
});
61 changes: 30 additions & 31 deletions packages/blaze-tools/.versions
Original file line number Diff line number Diff line change
@@ -1,54 +1,53 @@
allow-deny@2.0.0
babel-compiler@7.11.0
allow-deny@2.1.0
babel-compiler@7.13.0
babel-runtime@1.5.2
base64@1.0.13
binary-heap@1.0.12
blaze-tools@2.0.0
boilerplate-generator@2.0.0
callback-hook@1.6.0
check@1.4.2
blaze-tools@2.0.1
boilerplate-generator@2.1.0
callback-hook@1.6.1
check@1.5.0
core-runtime@1.0.0
ddp@1.4.2
ddp-client@3.0.0
ddp-common@1.4.3
ddp-server@3.0.0
ddp-client@3.1.1
ddp-common@1.4.4
ddp-server@3.1.2
diff-sequence@1.1.3
dynamic-import@0.7.4
ecmascript@0.16.9
ecmascript-runtime@0.8.2
ecmascript-runtime-client@0.12.2
ecmascript@0.17.0
ecmascript-runtime@0.8.3
ecmascript-runtime-client@0.12.3
ecmascript-runtime-server@0.11.1
ejson@1.1.4
ejson@1.1.5
facts-base@1.0.2
fetch@0.1.5
fetch@0.1.6
geojson-utils@1.0.12
html-tools@2.0.0
htmljs@2.0.1
html-tools@2.0.1
htmljs@2.0.2
id-map@1.2.0
inter-process-messaging@0.1.2
local-test:blaze-tools@2.0.0
logging@1.3.5
meteor@2.0.0
minimongo@2.0.0
modern-browsers@0.1.11
modules@0.20.1
local-test:blaze-tools@2.0.1
logging@1.3.6
meteor@2.2.0
minimongo@2.0.5
modern-browsers@0.2.3
modules@0.20.3
modules-runtime@0.13.2
mongo@2.0.0
mongo-decimal@0.1.4-beta300.7
mongo@2.2.0
mongo-decimal@0.2.0
mongo-dev-server@1.1.1
mongo-id@1.0.9
npm-mongo@4.17.3
npm-mongo@6.16.1
ordered-dict@1.2.0
promise@1.0.0
random@1.2.2
react-fast-refresh@0.2.9
react-fast-refresh@0.3.0
reload@1.3.2
retry@1.1.1
routepolicy@1.1.2
socket-stream-client@0.5.3
tinytest@1.3.0
socket-stream-client@0.6.1
tinytest@1.3.2
tracker@1.3.4
typescript@5.4.3
underscore@1.6.4
webapp@2.0.0
typescript@5.9.3
webapp@2.1.0
webapp-hashing@1.1.2
6 changes: 3 additions & 3 deletions packages/blaze-tools/package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package.describe({
name: 'blaze-tools',
summary: "Compile-time tools for Blaze",
version: '2.0.0',
version: '2.0.1',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function (api) {
api.use('ecmascript@0.16.9');
api.use('htmljs@2.0.1');
api.use('htmljs@2.0.2');

api.export('BlazeTools');
api.mainModule('preamble.js');
Expand All @@ -18,7 +18,7 @@ Package.onTest(function (api) {
api.use('ecmascript');

api.use('blaze-tools');
api.use('html-tools@2.0.0');
api.use('html-tools@2.0.1');

api.addFiles([
'token_tests.js'
Expand Down
63 changes: 31 additions & 32 deletions packages/blaze/.versions
Original file line number Diff line number Diff line change
@@ -1,67 +1,66 @@
allow-deny@2.0.0
babel-compiler@7.11.1
allow-deny@2.1.0
babel-compiler@7.13.0
babel-runtime@1.5.2
base64@1.0.13
binary-heap@1.0.12
blaze@3.0.1
blaze-tools@2.0.0
boilerplate-generator@2.0.0
blaze@3.0.3
blaze-tools@2.0.1
boilerplate-generator@2.1.0
caching-compiler@2.0.1
caching-html-compiler@2.0.0
callback-hook@1.6.0
check@1.4.4
callback-hook@1.6.1
check@1.5.0
core-runtime@1.0.0
ddp@1.4.2
ddp-client@3.0.2
ddp-client@3.1.1
ddp-common@1.4.4
ddp-server@3.0.2
ddp-server@3.1.2
diff-sequence@1.1.3
dynamic-import@0.7.4
ecmascript@0.16.9
ecmascript@0.17.0
ecmascript-runtime@0.8.3
ecmascript-runtime-client@0.12.2
ecmascript-runtime-client@0.12.3
ecmascript-runtime-server@0.11.1
ejson@1.1.4
ejson@1.1.5
facts-base@1.0.2
fetch@0.1.5
fetch@0.1.6
geojson-utils@1.0.12
html-tools@2.0.0
htmljs@2.0.1
html-tools@2.0.1
htmljs@2.0.2
id-map@1.2.0
inter-process-messaging@0.1.2
jquery@3.0.2
local-test:blaze@3.0.1
logging@1.3.5
meteor@2.0.1
minimongo@2.0.1
modern-browsers@0.1.11
modules@0.20.2
local-test:blaze@3.0.3
logging@1.3.6
meteor@2.2.0
minimongo@2.0.5
modern-browsers@0.2.3
modules@0.20.3
modules-runtime@0.13.2
mongo@2.0.2
mongo-decimal@0.1.5
mongo@2.2.0
mongo-decimal@0.2.0
mongo-dev-server@1.1.1
mongo-id@1.0.9
npm-mongo@4.17.4
observe-sequence@2.0.0
npm-mongo@6.16.1
observe-sequence@2.0.1
ordered-dict@1.2.0
promise@1.0.0
random@1.2.2
react-fast-refresh@0.2.9
react-fast-refresh@0.3.0
reactive-var@1.0.13
reload@1.3.2
retry@1.1.1
routepolicy@1.1.2
socket-stream-client@0.5.3
socket-stream-client@0.6.1
spacebars@2.0.0
spacebars-compiler@2.0.0
templating@1.4.4
templating-compiler@2.0.0
templating-runtime@2.0.0
templating-tools@2.0.0
test-helpers@2.0.1
tinytest@1.3.0
test-helpers@2.0.3
tinytest@1.3.2
tracker@1.3.4
typescript@5.4.3
underscore@1.6.4
webapp@2.0.3
typescript@5.9.3
webapp@2.1.0
webapp-hashing@1.1.2
Loading