Skip to content

Commit

Permalink
More History changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Apr 1, 2013
1 parent 37efbe7 commit 7a732d7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
All `meteor` commands accept a `--release` argument to specify which release
to use; `meteor update` changes what release the app is pinned to.

* Variables declared with `var` at the outermost level of a JavaScript
source file are now private to that file. Remove the `var` to share
a value between files.

* Meteor now supports any x86 (32- or 64-bit) Linux system, not just those which
use Debian or RedHat package management.

Expand All @@ -22,9 +26,6 @@
bundle` or `meteor deploy` will contain the components as built for the
developer's platform and may not run on other platforms.)

* Variables declared with a `var` at the outermost level of a JavaScript source
file are now private to that file.

* Meteor's internal package tests (as well as tests you add to your app's
packages with the unsupported `Tinytest` framework) are now run with the new
command `meteor test-packages`.
Expand All @@ -40,8 +41,8 @@

* Allow packages to register file extensions with dots in the filename.

* In a publisher, it is no longer an error to clear a field with `this.changed`
which was not set. #850
* When calling `this.changed` in a publish function, it is no longer an error to
clear a field which was never set. #850

* Deps API
* Add `dep.depend()`, deprecate `Deps.depend(dep)` and
Expand Down

0 comments on commit 7a732d7

Please sign in to comment.