Merge pull request #14292 from meteor/prototype-meteor-3-era

DOCS: Update README files for `autopublish` and `insecure` packages
This commit is contained in:
Gabriel Grubba
2026-04-01 09:41:45 -03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -4,4 +4,4 @@
Publish all server collections to the client. This package is useful for prototyping an app without worrying about which clients have access to certain data, but should be removed as soon as the app needs to restrict which data is seen by the client.
The `autopublish` package is automatically added to every Meteor app by `meteor create`.
As of Meteor 3.x, the `autopublish` package is **not** included in new projects by default. To add it for prototyping, run `meteor add autopublish`.

View File

@@ -4,4 +4,4 @@
Allow almost all collection methods, such as `insert`, `update`, and `remove`, to be called from the client. This package is useful for prototyping an app without worrying about database permissions, but should be removed as soon as the app needs to restrict database access.
The `insecure` package is automatically added to every Meteor app by `meteor create`.
As of Meteor 3.x, the `insecure` package is **not** included in new projects by default. To add it for prototyping, run `meteor add insecure`.