Commit Graph

56 Commits

Author SHA1 Message Date
Pradel Léo
95dca1676e Add released and development links 2016-08-30 15:40:14 -07:00
Ben Newman
83c2f7a790 Bump package versions for the official 1.3.2 release. 2016-04-15 11:05:16 -04:00
Ben Newman
f5ced99eb2 Bump package versions for 1.3.2-rc.6 release. 2016-04-13 19:59:33 -04:00
Ben Newman
4826b323a1 Bump package versions for 1.3.2-rc.5 release. 2016-04-12 12:29:05 -04:00
Ben Newman
d8bed6d491 Bump package versions for 1.3.2-rc.4 release. 2016-04-11 19:36:25 -04:00
Ben Newman
901e4a5c01 Bump package versions for 1.3.1-rc.2 release. 2016-04-11 13:59:22 -04:00
Ben Newman
7722ace625 Bump package versions for 1.3.2-rc.1 release. 2016-04-10 19:55:11 -04:00
Ben Newman
41b58b32d9 Bump package versions for 1.3.2-rc.0 release. 2016-04-08 19:47:29 -04:00
Ben Newman
117863fcdd Bump package versions for the official 1.3.1 release. 2016-04-03 20:26:26 -04:00
Ben Newman
ccbbb006f8 Bump package versions for 1.3.1-rc.3 release. 2016-04-02 21:08:51 -04:00
Ben Newman
9c01610b1f Bump package versions for 1.3.1-rc.1 release. 2016-04-01 21:39:32 -04:00
Ben Newman
bff3f0c9ea Bump package versions for 1.3.1-rc.0 release. 2016-04-01 20:01:45 -04:00
Ben Newman
23c1deb2f2 Bump package versions for official 1.3 release. 2016-03-27 22:15:16 -04:00
Ben Newman
79829702a0 Bump package versions for 1.3-rc.13 release 2016-03-26 12:46:46 -04:00
Ben Newman
c14cd9aed5 Bump package versions for 1.3-rc.12 release 2016-03-24 16:08:56 -04:00
Ben Newman
5ea76e34bc Bump package versions for 1.3-rc.11 release 2016-03-24 14:19:23 -04:00
Ben Newman
005b97a122 Bump package versions for 1.3-rc.10 release 2016-03-24 11:55:22 -04:00
Martijn Walraven
7650bb0a01 Bump package versions for 1.3-rc.9 release 2016-03-23 18:55:23 -04:00
Ben Newman
2239ca87e7 Bump package versions for 1.3-rc.8 release. 2016-03-22 18:17:43 -04:00
Ben Newman
29903ce2db Bump package versions for 1.3-rc.7 release. 2016-03-22 14:41:32 -04:00
Ben Newman
bb5ec2cb3d Bump package versions for 1.3-rc.6 release. 2016-03-22 11:55:13 -04:00
Ben Newman
a0151c1706 Bump package versions for 1.3-rc.4 release. 2016-03-20 13:44:10 -04:00
Ben Newman
41ca4534a0 Bump package versions for 1.3-rc.3 release. 2016-03-18 15:01:14 -04:00
Ben Newman
a9c32ed699 Bump package versions for 1.3-rc.2 release. 2016-03-15 23:12:08 -04:00
Ben Newman
5fb055e9e0 Bump package versions for 1.3-rc.1 release. 2016-03-15 01:30:05 -04:00
Ben Newman
541db059cc Bump package versions for 1.3-rc.0 release. 2016-03-14 23:21:44 -04:00
Ben Newman
4f5cb1d7a0 Bump package versions for 1.3-beta.16 release.
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered
from problems that made it either impossible or unwise to upgrade to those
versions.
2016-03-09 12:13:18 -05:00
Ben Newman
2cc42128a6 Bump package versions for 1.3-beta.13 release 2016-03-08 22:48:49 -05:00
Sashko Stubailo
cf6d7f109b Remove RC qualifier from all version numbers 2015-09-21 15:43:03 -04:00
David Greenspan
ca9b8f571f Version bumps
Tried to get everything to an rc.0 of the very latest version,
which required some research in some cases about the published
versions.  For example, some packages had version histories like:

```
...
  1.0.3-winr.2               January 20th, 2015
  1.0.3-winr.3               February 24th, 2015   installed
  1.0.3                      March 17th, 2015      installed
  1.0.4-anubhav.0            August 6th, 2015
  1.0.4-plugins.0            July 22nd, 2015
  1.0.5-galaxy.0             July 17th, 2015
```

In this case, I would bump the version from `1.0.4-plugins.0`
to `1.0.5-rc.0`, skipping `1.0.4`.
2015-08-10 22:10:52 -07:00
Sashko Stubailo
3cfb718a91 Split meteor-platform into smaller umbrella packages
Discussion/plan here: https://github.com/meteor/meteor/pull/4851

`meteor-platform will no longer be a part of future Meteor releases. Apps
`upgraded to Meteor 1.2 will be automatically updated to use the packages listed
`above instead of meteor-platform. (Along with a set of packages like EJSON and
`Random that used to be in meteor platform but probably shouldn’t have been)

After this project, here is the set of packages that will be included by default
in a newly created Meteor app:

1. `meteor-base` is the set of packages that basically every single Meteor app will have. If you don’t have these packages, you are probably doing something that isn’t really supported, like building a command line tool or switching out the whole web server stack. It comes with the following packages:
    1. `meteor` - this includes stuff like `Meteor.isClient`, a default handler for `css` files, etc.
    2. `webapp` - this is responsible for handling actual HTTP connections, Websockets, and serving files
    3. `underscore` - almost all of Meteor is built on top of underscore, so it makes sense to let people assume that most or all Meteor apps right now will have this included
    4. `autoupdate` - refreshing the client is a core part of the Meteor development experience, and it’s integrated into several layers of the stack
    5. `ddp` - lots of core parts of Meteor assume that DDP can be used to communicate between client and server
2. `standard-minifiers` minifies your JS and CSS code in production
3. `ecmascript` allows you to write your app using new ES2015 JavaScript features
4. `es5-shim` polyfills some newer APIs in old and non-compliant browsers, in particular IE8
5. `mobile-experience` is a set of cordova-specific packages that set some good defaults when building for mobile. These packages only activate when you are building a native Android or iOS app.
    1. `fastclick` - avoid the 300ms touch delay
    2. `mobile-status-bar` - avoid the status bar information covering up your app content
    3. `launch-screen` - cover the app with a launch image so that people don’t have to see things loading
6. `mongo` is the package that enables Meteor to connect to MongoDB on the server and watch queries in real-time. It also includes Minimongo for the client so that you can publish Mongo documents over DDP. This package will be removable in case you want to use one of the community-supported drivers for alternate databases, and for the desirable future where Meteor supports other databases officially.
7. `blaze-html-templates` compiles your `html` files with Spacebars and includes the Blaze runtime on the client so that the templates can run. If you remove this, you might want to include a different view layer like `react`, or `angular`, and use a package for rendering the starter HTML like `static-html` (also coming out in Meteor 1.2)
8. `tracker` the package that powers a lot of Meteor’s reactive APIs on the client. Including it in the app allows you to use `Tracker.autorun` directly.
9. `session` a simple global reactive dictionary for the client.
10. `jquery` a convenient utility library for the client.
11. `insecure` a prototyping package that lets you make any database modifications from the client.
12. `autopublish` a prototyping package that lets you access the whole database (except sensitive user data) from the client.
2015-08-04 10:15:04 -07:00
David Glasser
43b4b30205 Release PLUGINS-PREVIEW@1
This included removing some internal version constraints. It would be
nice if package A could say "use B@2.0.0" (when both have changed), but
when they're both in the release, we need to make a release that has a
B@2.0.0-rc in it, which doesn't match that constraint. Fortunately,
constraints aren't necessary within a release anyway.
2015-07-22 23:19:11 -07:00
David Glasser
4daaa76b12 METEOR@1.0.4 2015-03-17 13:06:07 -07:00
David Glasser
af0469da35 Bump other packages to -rc.0 2015-03-05 22:54:07 -08:00
Slava Kim
27f249bfed A lot of crazy package bumps 2015-01-21 14:03:55 -08:00
David Glasser
6b204ca73a Bump package versions for 1.0.2 2014-12-19 10:31:59 -08:00
David Glasser
73b809c122 Bump versions for 1.0.2. 2014-12-11 22:44:41 -08:00
David Glasser
de5f68cf70 bump all versions (due to source-map upgrade) 2014-11-25 09:06:26 -08:00
Sashko Stubailo
dda0c44b52 Add a bunch of READMEs 2014-10-23 15:06:33 -07:00
Sashko Stubailo
36da5aecb4 Make all version numbers not have rc 2014-10-13 14:09:37 -07:00
Sashko Stubailo
698fbedb10 Bump all of the version numbers to rc.0 2014-10-07 17:10:48 -07:00
Sashko Stubailo
1e53f6b598 Bump all version numbers again after cherry-picking unipackage fix 2014-10-01 17:06:57 -07:00
Sashko Stubailo
0129c3f5ac Bump all of the version numbers again, to republish with the unipackage.json fix 2014-10-01 15:43:05 -07:00
Sashko Stubailo
eecc272e4a Bump every single package version number due to a change in compilation 2014-09-29 23:44:50 -07:00
ekatek
fb709c9563 remove versions files from core packages 2014-06-16 22:11:31 -07:00
ekatek
beb0e59b9d new version files from teh new solver? Also, package.js correct with tests 2014-05-09 17:36:25 -07:00
ekatek
031890d2c5 don't store buildtime deps in the catalog 2014-05-04 16:56:58 -07:00
ekatek
23ad149a78 better versions files 2014-04-25 15:06:45 -07:00
ekatek
10d2047d12 clean up 2014-04-25 15:01:20 -07:00
ekatek
c84c8d6097 alphabetize package version lock files 2014-04-24 18:18:21 -07:00