-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
113 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
# Change Log | ||
|
||
## 4.0.2 | ||
|
||
Updated dependencies for `aldeed:[email protected]` | ||
|
||
Added compatibility for `aldeed:[email protected]` | ||
|
||
Api versions from now include Meteor `3.0.1` and `3.1` | ||
|
||
## 4.0.1 | ||
|
||
Updated to depend on `aldeed:[email protected]` | ||
|
||
Updated to be compatible with Meteor 3.0-rc.0 | ||
|
||
## 4.0.0 | ||
|
||
Update to depend on `aldeed:[email protected]` | ||
|
||
Switched back to using `aldeed:simple-schema` instead of the NPM version as per `[email protected]` requirements. | ||
|
||
Minimum Meteor version is `2.8.1` and added compatibility for Meteor 3. | ||
|
||
## 3.1.0 | ||
|
||
Update to depend on `aldeed:[email protected]`. Add the appropriate Meteor version constraints, starting lowest with Meteor v1.12.1. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
Package.describe({ | ||
name: "aldeed:schema-deny", | ||
summary: "Deny inserting or updating certain properties through schema options", | ||
version: "3.1.0", | ||
version: "4.0.2", | ||
documentation: '../../README.md', | ||
git: "https://github.com/aldeed/meteor-schema-deny.git" | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom(['1.12.1', '2.3.6', '2.8.1']); | ||
api.use('aldeed:[email protected]'); | ||
api.versionsFrom(['2.8.1', '3.0.1', '3.1']); | ||
api.use('aldeed:[email protected]'); | ||
api.use('aldeed:[email protected] || 2.0.0'); | ||
api.use('ecmascript'); | ||
|
||
api.mainModule('deny.js'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,8 @@ [email protected] # Server-side component of the `meteor shell` comm | |
[email protected] # Publish all data to the clients (for prototyping) | ||
[email protected] # Allow all DB writes from clients (for prototyping) | ||
|
||
underscore@1.0.13 | ||
underscore@1.6.0 | ||
aldeed:schema-deny | ||
[email protected] | ||
meteortesting:mocha | ||
aldeed:collection2@3.0.0 | ||
aldeed:collection2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@2.14 | ||
METEOR@2.15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
aldeed:[email protected] | ||
aldeed:[email protected] | ||
aldeed:[email protected] | ||
aldeed:[email protected] | ||
aldeed:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
@@ -39,7 +40,7 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected].4 | ||
[email protected].5 | ||
[email protected] | ||
meteortesting:[email protected] | ||
meteortesting:[email protected] | ||
|
@@ -77,11 +78,10 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
[email protected] | ||
tmeasday:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
underscore@1.0.13 | ||
underscore@1.6.1 | ||
[email protected] | ||
[email protected].6 | ||
[email protected].8 | ||
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../package/deny/ |