Commit Graph

7409 Commits

Author SHA1 Message Date
Emily Stark
110ba942ee Update history for 107e9087 release/0.8.1.3 release/0.8.1.3-rc3 2014-05-22 09:27:08 -07:00
Emily Stark
ca12a9842d Update History, banner, notices 2014-05-21 21:10:03 -07:00
Emily Stark
560ba659e1 Use ROOT_URL instead of Host header in spiderable 2014-05-21 20:40:40 -07:00
Emily Stark
1e882d786d Update History for 2db7490 release/0.8.1.3-rc2 2014-05-21 20:30:02 -07:00
David Glasser
f3ae43a194 Fix IE8 minification bug
The minifier changed the two uses of HTMLTag into two different symbols:

  var n = function r() {
    var t = this instanceof e.Tag ? this : new r(), n = 0, o = arguments.length && arguments[0];
    return o && "object" == typeof o && o.constructor === Object && (t.attrs = o, n++),
    n < arguments.length && (t.children = Array.prototype.slice.call(arguments, n)),
    t;
  };
  return n.prototype = new e.Tag(), n.prototype.constructor = n, n.prototype.tagName = t,
  n;

Then, IE8 apparently actually creates two separate objects for 'n' and
'r'; see #3 at http://kiro.me/blog/nfe_dilemma.html

So just because n.prototype is an e.Tag doesn't make r.prototype a e.Tag

This means that `new r() instanceof e.Tag` is false, and so the first
line of the function leads to infinite recursion.

I'm not sure if this is an uglify bug as well; dealing well with
multiple declarations of the same function may be out of spec.

Fixes #2037.
2014-05-21 20:28:34 -07:00
Emily Stark
107e908757 Remove short aliases for meteor authorized in help text.
Fixes #2155.
2014-05-21 11:21:01 -07:00
Emily Stark
6189a92536 Revert "Add short aliases for '--add' and '--remove' options in "meteor authorized""
This reverts commit 32fc06e7f8.

As Glasser points out, our command option parsing is such that all `-a`
flags for commands have to be consistent in whether they are boolean or
not. Since we could easily imagine wanting a boolean `-a` or `-r` flag
in the future, we should be careful about adding these aliases. We'll
update the docs to remove `-a` and `-r` instead.
2014-05-21 11:08:46 -07:00
Emily Stark
db4c344e83 Tweak history 2014-05-21 10:39:22 -07:00
Emily Stark
22f4ca0c21 Add 0.8.1.3 section header to History 2014-05-20 19:43:21 -07:00
Emily Stark
7fd89078e5 Update History for 1a9509 release/0.8.1.3-rc1 2014-05-20 17:36:41 -07:00
Emily Stark
1a9509650a Use underscore in oauth-encryption package 2014-05-20 17:35:57 -07:00
Emily Stark
c0cc0ece2f Update History 2014-05-20 17:35:50 -07:00
Emily Stark
cc79a7cc0a Add History item for e86578e5.
Conflicts:
	History.md
2014-05-20 17:34:41 -07:00
Slava Kim
32fc06e7f8 Add short aliases for '--add' and '--remove' options in "meteor authorized"
Fixes #2155
2014-05-20 17:32:25 -07:00
Emily Stark
10d8894842 Fix accidentally-hardcoded Twitter URL in oauth1
Fixes #2154.
2014-05-20 17:32:15 -07:00
Emily Stark
aa0552d847 Add credentialSecret to Google.retrieveCredential
I missed this one in 0fa591bc5.
2014-05-20 17:32:04 -07:00
Avital Oliver
910f75f359 Document UI.getElementData
While doing this, I realized that this function
can be called on text nodes as well, so it's probably
better named UI.getNodeData?
2014-05-13 11:27:19 -07:00
Emily Stark
c8bfff8959 Merge branch 'release-0.8.1.2' 2014-05-12 17:15:08 -07:00
Emily Stark
1b1892fadd Update examples to 0.8.1.2 2014-05-12 17:14:40 -07:00
Emily Stark
1b1a4d7c25 Update docs to 0.8.1.2 2014-05-12 17:09:41 -07:00
Emily Stark
5dc48badef Update banner and notices 2014-05-12 17:01:34 -07:00
Avital Oliver
ec170b7c3c docs: turn off appcache on safari
Turns out AppCache on Safari 7 is totally broken (see
http://stackoverflow.com/questions/22888945/safari-7-application-cache-does-not-work).
This, combined with our "reload if you can't load CSS or JS" strategy for
multi-server deploy causes infinite reloads in some cases.

Hopefully this will resolve the sporadic complaints we get
from some users about infinite reloads.
2014-05-09 18:34:39 -07:00
Emily Stark
ac3086cdb5 Make a History sentence more sentence-y 2014-05-09 14:54:38 -07:00
Emily Stark
cdbc135e7c Update History.md release/0.8.1.2 release/0.8.1.2-rc1 2014-05-09 14:23:36 -07:00
Emily Stark
247ab62ebb Unregister sessions from server when their heartbeats time out.
Conflicts:
	History.md
2014-05-09 14:21:06 -07:00
Emily Stark
0fa591bc5f Add credential secret argument to retrieveCredential functions.
Fixes #2118.
2014-05-09 14:18:11 -07:00
David Glasser
32496511bb Fix 0.8.1 regression in ROOT_URL with path
Fixes #2109.
2014-05-09 14:17:47 -07:00
Emily Stark
399629e941 Merge branch 'release-0.8.1.1'
The large number of conflicts is because release-0.8.1.1 was branched
off of release/0.8.1 instead of master.

Conflicts:
	History.md
	docs/.meteor/release
	docs/lib/release-override.js
	examples/clock/.meteor/release
	examples/leaderboard/.meteor/release
	examples/parties/.meteor/release
	examples/todos/.meteor/release
	examples/wordplay/.meteor/release
	scripts/admin/banner.txt
	scripts/admin/notices.json
2014-05-01 12:37:41 -07:00
Emily Stark
53c4a32d7e Update docs and examples 2014-05-01 12:31:27 -07:00
Emily Stark
629423d514 Update banner and notices release/0.8.1.1 release/0.8.1.1-rc6 2014-05-01 12:17:24 -07:00
Emily Stark
d59f026363 Remove stray console.log in test 2014-05-01 12:17:06 -07:00
Emily Stark
63b3119127 Treat Buffers as Arrays when rewriting MongoDB atoms.
mongodb 1.4.0-rc9 has a `binId` field of type Buffer on ObjectIDs, which
caused Meteor to crash when retrieving a document that was made up of
just an EJSON user-defined type. (Which should not necessarily be
supported, but `replaceNames` should probably treat Buffers as Arrays
regardless.)

Fixes #2095.
release/0.8.1.1-rc5
2014-05-01 11:49:07 -07:00
Emily Stark
56050500e4 Update History 2014-05-01 09:51:55 -07:00
David Glasser
1d4004650f Follow-up to 4777e64: fix client-specified _id
This was a regression in 0.8.1 which caused client-specified `_id` to
always be ignored for collections with at least one allow/deny rule.

Fixes #2097. Fixes #2099.
release/0.8.1.1-rc4
2014-05-01 00:17:11 -07:00
Slava Kim
d1b58e57dd Fix a typo in test descr 2014-04-30 23:29:23 -07:00
Emily Stark
673a285dfc Allow undefined values in Collection.find options check.
At some point we might want to just make `Match.Optional` accept
explicit undefined values in objects, but that will take a little more
thought.
release/0.8.1.1-rc2
2014-04-30 15:53:59 -07:00
Emily Stark
671e526bc2 Fix test for #2093 release/0.8.1.1-rc1 2014-04-30 14:45:59 -07:00
Avital Oliver
05c7a1662c Test for #2093 2014-04-30 14:32:36 -07:00
Avital Oliver
87510807e8 Try to fix #2093 2014-04-30 14:32:24 -07:00
Avital Oliver
c67ce10722 Merge branch 'release-0.8.1' 2014-04-30 11:49:23 -07:00
Avital Oliver
965e3f6dec Add v0.8.1 to History.md 2014-04-30 11:46:12 -07:00
Emily Stark
f4044c2fde Merge branch 'release-0.8.1' 2014-04-30 11:02:42 -07:00
Emily Stark
532e9f32a8 Update docs and examples 2014-04-30 11:02:18 -07:00
Emily Stark
4b6d88828e tweak notices 2014-04-30 10:47:37 -07:00
Emily Stark
68f4425841 tweak banner 2014-04-30 10:28:40 -07:00
Emily Stark
9cd32c85ec add line break in notices 2014-04-30 10:23:01 -07:00
Emily Stark
2978ceb96d Update History, banner, notices 2014-04-30 10:21:40 -07:00
Emily Stark
cb6113170f Generate a fresh secret at end of OAuth, and require that secret on login.
Ensures that only the user who completed the OAuth flow can log in over DDP.
release/0.8.1-rc3 release/0.8.1
2014-04-30 10:08:16 -07:00
Emily Stark
bea8e9c5d0 Add showdown version in History 2014-04-29 23:26:35 -07:00
Emily Stark
2ee6fa383c Update license file more 2014-04-29 23:25:43 -07:00