Skip to content

Commit

Permalink
Published alanning:[email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Aug 10, 2021
1 parent 0943848 commit 10687c2
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 46 deletions.
80 changes: 40 additions & 40 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
accounts-base@1.4.3
accounts-password@1.5.1
alanning:roles@1.2.19
accounts-base@2.0.0
accounts-password@2.0.0
alanning:roles@1.3.0
[email protected]
babel-compiler@7.3.4
babel-runtime@1.3.0
[email protected].11
babel-compiler@7.6.2
babel-runtime@1.5.0
[email protected].12
[email protected]
boilerplate-generator@1.6.0
callback-hook@1.1.0
boilerplate-generator@1.7.1
callback-hook@1.3.1
[email protected]
[email protected]
ddp-client@2.3.3
ddp-client@2.5.0
[email protected]
ddp-rate-limiter@1.0.7
ddp-server@2.3.0
ddp-rate-limiter@1.1.0
ddp-server@2.4.0
[email protected]
dynamic-import@0.5.1
ecmascript@0.12.4
dynamic-import@0.7.1
ecmascript@0.15.2
[email protected]
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
[email protected].0
email@1.2.3
ecmascript-runtime-client@0.11.1
ecmascript-runtime-server@0.10.1
[email protected].1
email@2.1.1
[email protected]
[email protected]
[email protected].0
[email protected].0
local-test:alanning:roles@1.2.19
[email protected].1
[email protected].1
local-test:alanning:roles@1.3.0
[email protected]
logging@1.1.20
logging@1.2.0
[email protected]
minimongo@1.4.5
[email protected].4
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
[email protected].1
minimongo@1.7.0
[email protected].5
modules@0.16.0
modules-runtime@0.12.0
mongo@1.12.0
[email protected].2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
promise@0.11.2
random@1.1.0
promise@0.12.0
random@1.2.0
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected].0
service-configuration@1.0.11
[email protected].1
service-configuration@1.1.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
8 changes: 8 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Changelog

## v1.3.0

* Make compatible both with v1.9 and v2 of `accounts-base`
* Raised `versionsFrom` to Meteor v1.9
* Blaze updated to v2.5

## v1.2.19

* Fixed `getGroupsForUser` to work with `.` in a role name.
Expand Down
12 changes: 6 additions & 6 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
Package.describe({
summary: "Authorization package for Meteor",
version: "1.2.19",
version: "1.3.0",
git: "https://github.com/Meteor-Community-Packages/meteor-roles.git",
name: "alanning:roles"
});

Package.onUse(function (api) {
api.versionsFrom("[email protected]");
api.versionsFrom("1.9");

var both = ['client', 'server'];

api.use(['underscore',
'accounts-base',
'accounts-base@1.9.0 || 2.0.0',
'tracker',
'mongo',
'check'], both);

api.use(['blaze@2.3.3'], 'client', {weak: true});
api.use(['blaze@2.5.0'], 'client', {weak: true});

api.export('Roles');

Expand All @@ -28,14 +28,14 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.versionsFrom("[email protected]");
api.versionsFrom("1.9");

var both = ['client', 'server'];

// `accounts-password` is included so `Meteor.users` exists

api.use(['alanning:roles',
'accounts-password',
'accounts-password@1.7.1 || 2.0.0',
'underscore',
'tinytest'], both);

Expand Down

0 comments on commit 10687c2

Please sign in to comment.