Commit Graph

11155 Commits

Author SHA1 Message Date
Slava Kim
650ca70fe6 Reset the state of regex in minimongo on matching
Fixes #2817. Regular Expressions in JavaScript keep the state when matching for
the same string. When there are two documents with the same value of the
matching field, the minimongo can incorrectly filter collection because regexp
would return different values on different calls.
2014-10-14 21:53:01 -07:00
ekatek
f83c08e8fa introduces the 'meteor admin get-machine' command; changes publish not to publish binary builds
This commit does the following:
- Introduces the get-machine command. This command contacts the build farm server
 gets back a machine reservation and then opens    a secure shell to the machine (Alternatively,
 you can ask for a json). This also involved factoring out some   commands to deal with authenticated
 ddp from package-client into a more general auth-client.

- No longer publish binary builds in publish or publish-release; instead give the user a warning
to run get-machine and then publish-for-arch. Someone could ignore this: --existing-version and
publish-for-arch both publish binary builds, but you need to be    at least somewhat familiar with
what you are doing to run them.      Hopefully, you are running them  from a certified build machine,   but
if you are not,    then, well, it    is your    package.

Stuff remaining:
  - We are going to have a url to external documentation, but I haven't written it yet.
  - We are currently talking to   the test-build server, instead of the build server, so mac doesn't
work.
(Neither of those changes require significant tool changes)
2014-10-14 16:49:50 -07:00
Avital Oliver
50c3c3e78b Code review changes on launch-screen package 2014-10-14 16:23:21 -07:00
Ben Newman
647f13cabb Only require a ctl program when deploying to Galaxy. 2014-10-14 18:32:59 -04:00
Slava Kim
efa8a45536 Fix the link to jade package 2014-10-14 12:55:03 -07:00
Nick Martin
bd3b61a571 Linewrap History.md 2014-10-13 23:28:40 -07:00
Nick Martin
03a27a4b54 Merge remote-tracking branch 'readmes' into devel 2014-10-13 22:54:00 -07:00
Geoff Schmidt
e52be2a2df typo fix 2014-10-13 22:51:09 -07:00
Geoff Schmidt
5d2f9fe640 short readme for routepolicy 2014-10-13 22:49:56 -07:00
Geoff Schmidt
ebf14581a7 move force-ssl writeup from docs.meteor.com to a README 2014-10-13 22:33:05 -07:00
Geoff Schmidt
82297964af fix typo 2014-10-13 22:00:18 -07:00
Geoff Schmidt
34505c8356 Move browser-policy docs from docs.meteor.com to the browser-policy readme. Also create placeholder readmes for the other browser-policy-* packages. 2014-10-13 21:54:04 -07:00
Geoff Schmidt
25205a2f61 short readmes for autoupdate, reload, webapp, webapp-hashing 2014-10-13 21:23:07 -07:00
Geoff Schmidt
cdbc57c0ce Move appcache docs from docs.meteor.com to package readme 2014-10-13 20:21:23 -07:00
Geoff Schmidt
a0fe7cb0b9 one more try to make session readme look its best on atmosphere 2014-10-13 20:10:36 -07:00
Geoff Schmidt
4b7312b556 session readme fixes take 2 2014-10-13 20:09:30 -07:00
Geoff Schmidt
8fc4e3cfeb session readme fixes 2014-10-13 20:08:44 -07:00
Geoff Schmidt
b90d87e56a Readmes for reactive-dict, reactive-var, session 2014-10-13 20:05:40 -07:00
Geoff Schmidt
5661a590f2 Move spiderable docs from docs.meteor.com to readme 2014-10-13 18:37:23 -07:00
Nick Martin
620c6cbe1b Merge branch 'pr-2807' into devel 2014-10-13 18:05:41 -07:00
Nick Martin
619faab29f fix another typeof 2014-10-13 18:04:14 -07:00
Rahul
bd9dcf9643 Fix the typeof check
Encountered this bug when I tried to update an app that was generating Blaze warnings about the deprecated old-style helper to a 0.9.4 RC. The problem is that the type of the string `'Log'` is being checked rather than the value of the `Log` variable, which obviously returns true, and then the code breaks on the `&& Log` check, which is undefined.
2014-10-13 18:00:25 -07:00
Slava Kim
98f5445f37 Remove the underscore dep from launch screen package 2014-10-13 17:50:13 -07:00
Slava Kim
3ec522f9e4 Additional configs for Android's splash screens
Who knows why it doesn't just work when you add the cordova plugin.
2014-10-13 17:49:06 -07:00
Geoff Schmidt
3c98e47709 fix tracker readme formatting typo 2014-10-13 17:43:39 -07:00
Denis Gorbachev
504574876e Fix directory lists
My wife was confused by the previous wording of which directories are loaded where. Explicitly stating the directory lists should remove the confusion.
2014-10-13 17:40:54 -07:00
David Glasser
8f3966fbf4 Format deploy console messages to include protocol 2014-10-13 17:36:40 -07:00
Slava Kim
51a23fc346 Another pass on LaunchScreens 2014-10-13 17:30:50 -07:00
Sander van den Akker
441d35dc38 Added missing underscore package dependency. 2014-10-13 17:30:42 -07:00
Geoff Schmidt
4d64c493d6 README.md: port Tracker chapter over from Meteor Manual 2014-10-13 17:29:10 -07:00
David Glasser
dbef8b7247 Improve error message for limited ordered observe
See #1643.
2014-10-13 17:26:09 -07:00
Geoff Schmidt
ba41957243 another image from Meteor Manual 2014-10-13 17:25:35 -07:00
Geoff Schmidt
364b09ffda Add image from Meteor Manual 2014-10-13 17:20:50 -07:00
David Glasser
16e9196a8e Include loginStyle in sample ServiceConfiguration
Fixes #2758.
2014-10-13 17:07:14 -07:00
Maxime Quandalle
6c793b427c Fix emailTemplates locus
close #2748
2014-10-13 16:42:04 -07:00
Stephan Hochhaus
4462c18964 Deps.autorun becomes Tracker.autorun
Updated wordplay and parties example to use Tracker.autorun instead of
legacy Deps
2014-10-13 16:27:05 -07:00
Justin SB
d46e14a0aa Don't print 'expected' error-exit from phantomjs 2014-10-13 16:24:32 -07:00
David Glasser
3ff1ca06b8 Clarify Session.setDefault docs.
Wording suggested by @PeppeL-G.

Fixes #2725.
2014-10-13 16:08:47 -07:00
Sashko Stubailo
101b96bdcc Merge branch 'master' into devel 2014-10-13 14:51:41 -07:00
Sashko Stubailo
8029ed8774 Merge branch '0.9.4'
Conflicts:
	docs/client/data.js
2014-10-13 14:51:06 -07:00
Sashko Stubailo
6b060010f6 Bump releases for all examples 2014-10-13 14:50:08 -07:00
Sashko Stubailo
d10491c0b1 Add platforms file for docs 2014-10-13 14:48:19 -07:00
Sashko Stubailo
e65c1e02d7 Bump docs 2014-10-13 14:47:07 -07:00
Sashko Stubailo
924cced1cb Bump version in official release json release/METEOR@0.9.4 2014-10-13 14:11:11 -07:00
Sashko Stubailo
36da5aecb4 Make all version numbers not have rc 2014-10-13 14:09:37 -07:00
Sashko Stubailo
d00d474837 Fix banner indentation 2014-10-13 14:04:27 -07:00
David Glasser
aac410cbb2 fix make-bootstrap-tarballs for sqlite world 2014-10-13 13:55:36 -07:00
Sashko Stubailo
667f3b8a91 Bump package versions for rc.8 release/METEOR@0.9.4-rc.8 2014-10-13 13:35:03 -07:00
Sashko Stubailo
4a657a1bd0 Bump rc version 2014-10-13 13:31:59 -07:00
Sashko Stubailo
44b15960c8 Specify defaults for --mobile-server 2014-10-13 13:28:37 -07:00