Update README files for autopublish and insecure packages to reflect changes in Meteor 3.x.

This commit is contained in:
Frederico Maia
2026-03-31 06:00:11 -03:00
parent 5d4893f51c
commit 0c5e43ca73
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`.