Commit Graph

618 Commits

Author SHA1 Message Date
David Glasser
dbea793f6a History.md updates 2015-01-29 17:07:09 -08:00
Sashko Stubailo
633cfc21ae Add a way to reproduce previous behavior to History.md 2015-01-28 11:31:53 -08:00
Sashko Stubailo
6b0f3d03b6 Improve History.md entry 2015-01-28 10:43:09 -08:00
Sashko Stubailo
368e8798a7 Update README.md 2015-01-28 10:21:24 -08:00
David Glasser
f8f90f949c Add a comment explaining why this file is so weird 2015-01-27 17:48:33 -08:00
David Glasser
074087be8a meteor login --email was supposed to be boolean!
See #3532.

We honestly should probably just drop the option and allow you to type
either a username or a password, just like in accounts-ui.

Because options have to be consistently bool or not across commands (so
that you can put them before the command name), change the testing-only
dummy command's string option to a different nonsense name.
2015-01-27 14:17:41 -08:00
David Glasser
e2706b1390 History update. 2015-01-26 15:57:10 -08:00
David Glasser
c51eed9330 Clone return value from server-side method call
The server-side Meteor.call abstraction is "RPC", not "function call",
so you shouldn't be able to mutate internal state using it. This is a
similar change to that done in e91713d9 with function parameters.

Fixes #3201.
2015-01-26 15:36:48 -08:00
David Glasser
5ca2fb0f36 history notes and shorten lines 2015-01-26 15:23:06 -08:00
David Glasser
0c7b6dd460 History updates 2015-01-26 15:18:02 -08:00
David Glasser
10173c0ca5 Stop semi-supporting Npm.require in package.js
It can be used to get things like `path` (though you can just use '/'),
but trying to require the packages whose list is determined by running
the file while running the file just doesn't make any sense.
2015-01-23 16:58:33 -08:00
David Glasser
6bb5516010 history update 2015-01-23 16:49:19 -08:00
Ekaterina Kuznetsova
8ac477a19b Change latest History.md version to 1.0.3.1
We never released 1.0.3, since there was a race condition around creating bootstrap tarballs. The latest version in History.md should be 1.0.3.1
2015-01-23 12:07:30 -08:00
ekatek
87a9c59c64 fix History.md and banners.json 2015-01-20 10:13:36 -08:00
ekatek
c123b89c4e history.md update 2015-01-15 11:22:56 -08:00
ekatek
066e4fb435 update History.md 2015-01-14 12:21:18 -08:00
David Glasser
e5130bdcea History: rough draft of changes since 1.0.3 2015-01-14 12:06:34 -08:00
David Glasser
1f9648cd23 Upgrade jquery to 1.11.2 from 1.11.0
Closes #2386.
2015-01-09 16:36:58 -08:00
David Glasser
9023cccc28 Clean up PR 2015-01-09 15:53:49 -08:00
David Glasser
315fa640ea Add release dates to History.md
Note that "backport" here doesn't just mean "patch release"; it means
"patch release to a release that was not the newest release" (ie, an
out-of-order entry in history)
2015-01-02 14:39:32 -08:00
David Glasser
995a57d0c2 Merge branch 'master' into devel
Conflicts:
	tools/safe-pathwatcher.js
2014-12-22 17:48:12 -08:00
David Glasser
36d49dc61e History.md update for 1.0.2.1 2014-12-22 12:30:14 -08:00
Dan Dascalescu
19733f19d7 rm double mention of mitar for 1.0.2 2014-12-19 14:05:51 -08:00
David Glasser
6320acabc4 Merge branch 'master' into devel
Conflicts:
	History.md
	tools/safe-pathwatcher.js
	tools/tests/old.js
	tools/watch.js
2014-12-19 11:42:50 -08:00
David Glasser
c49e7f97a1 Update contributor list again 2014-12-18 10:47:14 -08:00
David Glasser
6256122784 Update mailmap/contributors 2014-12-18 10:44:24 -08:00
David Glasser
8dc1567cc2 Explain why you'd set METEOR_WATCH_FORCE_POLLING 2014-12-18 10:15:12 -08:00
Ben Newman
cfe07d898c Mention meteor shell in History.md. 2014-12-18 10:56:06 -05:00
Nick Martin
37781be2e0 Minor History.md tweaks. 2014-12-18 01:34:47 -08:00
Emily Stark
2dc8464cf7 Add History entry for OAuth1 query parameter change 2014-12-17 20:31:55 -08:00
David Glasser
6527e669ab Reorganize History.md 2014-12-17 18:21:45 -08:00
David Glasser
934bfca426 More History.md cleanup 2014-12-17 18:17:58 -08:00
David Glasser
06f65cff50 Clear two types of tokens on Accounts.setPassword 2014-12-16 17:46:59 -08:00
David Glasser
6c43678bc0 Clear two types of tokens on Accounts.setPassword 2014-12-16 17:46:26 -08:00
Emily Stark
747dd88bbf Clear password reset tokens on password change
Conflicts from devel:
	History.md
2014-12-16 17:16:02 -08:00
Emily Stark
98003cbc3d Add History entry for a16d0cb7 2014-12-16 14:29:11 -08:00
Emily Stark
7461cab726 Clear password reset tokens on password change 2014-12-16 13:55:28 -08:00
David Glasser
56ceae09aa rough draft of History.md for 1.0.2 2014-12-12 18:19:53 -08:00
David Greenspan
f9339a8f26 Merge branch 'blaze-render-with-data-gc' into devel 2014-12-09 13:18:26 -08:00
David Greenspan
ab92f117ae Expand fix for #3130
If you Blaze.remove a View that is a template rendered by Blaze.renderWithData, or included with an implicit “with” as in `{{> myTemplate someData}}`, Blaze will now remove the DOM of the template, and also remove the implicit “with” (in both cases).

As background, Blaze.remove only works on Views that were attached directly under a DOM element, not inside another View.  Blaze.render always attaches the resulting View directly under a DOM element, but Blaze.renderWithData creates a “with” View around the template View.  Previously, you could Blaze.remove the “with” View (which is returned by renderWithData), but if you got access to the template’s View some other way and tried to remove it directly, nothing would happen.  Now, the correct thing happens (the View is destroyed and the DOM is removed).

In the future, we should consider whether Blaze.remove should work on arbitrary Views, not just Views attached under a DOM element.
2014-12-09 13:17:12 -08:00
Emily Stark
0d33cbbfca remove history entry for nonexistent 0.6.4.2 2014-12-09 13:16:28 -08:00
Emily Stark
71652f9b9f Merge branch 'master' into devel
Conflicts:
	History.md
	docs/client/data.js
	docs/client/full-api/concepts.html
	docs/client/full-api/tableOfContents.js
	examples/localmarket/.meteor/packages
	packages/ddp/package.js
	packages/meteor-tool/package.js
	packages/mongo/package.js
	scripts/admin/manifest.json
2014-12-09 13:15:29 -08:00
David Glasser
e73ae0e41c oops, some previous backports were missing 2014-12-09 11:42:41 -08:00
David Greenspan
3aadefa71d History.md and docs tweaks 2014-12-08 14:01:03 -08:00
Emily Stark
708d63bee5 update History to note backports 2014-12-08 10:26:07 -08:00
Emily Stark
9a30d5cbeb Update History for all the other releases too 2014-12-08 08:57:50 -08:00
Emily Stark
9bacc49a46 Update History and banners 2014-12-08 08:51:31 -08:00
Emily Stark
24d8fec98f Check for parent process only every few seconds.
Fixes #3252. Also probably fixes #2890, which we might have misattribued
to file watching in the tool process.
2014-12-07 09:34:45 -08:00
David Glasser
2a2bf8a460 Improve comment and add History note 2014-12-03 14:46:05 -08:00
David Glasser
b96c5d7962 include a few more non-core packages 2014-11-12 17:28:46 -08:00