Skip to content

Commit

Permalink
Published alanning:roles@1.3.0
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
allow-deny@1.1.0
babel-compiler@7.3.4
babel-runtime@1.3.0
base64@1.0.11
babel-compiler@7.6.2
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
boilerplate-generator@1.6.0
callback-hook@1.1.0
boilerplate-generator@1.7.1
callback-hook@1.3.1
check@1.3.1
ddp@1.4.0
ddp-client@2.3.3
ddp-client@2.5.0
ddp-common@1.4.0
ddp-rate-limiter@1.0.7
ddp-server@2.3.0
ddp-rate-limiter@1.1.0
ddp-server@2.4.0
diff-sequence@1.1.1
dynamic-import@0.5.1
ecmascript@0.12.4
dynamic-import@0.7.1
ecmascript@0.15.2
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
ejson@1.1.0
email@1.2.3
ecmascript-runtime-client@0.11.1
ecmascript-runtime-server@0.10.1
ejson@1.1.1
email@2.1.1
fetch@0.1.1
geojson-utils@1.0.10
id-map@1.1.0
inter-process-messaging@0.1.0
local-test:alanning:roles@1.2.19
id-map@1.1.1
inter-process-messaging@0.1.1
local-test:alanning:roles@1.3.0
localstorage@1.2.0
logging@1.1.20
logging@1.2.0
meteor@1.9.3
minimongo@1.4.5
modern-browsers@0.1.4
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
mongo-decimal@0.1.1
minimongo@1.7.0
modern-browsers@0.1.5
modules@0.16.0
modules-runtime@0.12.0
mongo@1.12.0
mongo-decimal@0.1.2
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-bcrypt@0.9.3
npm-mongo@3.1.2
mongo-id@1.0.8
npm-mongo@3.9.0
ordered-dict@1.1.0
promise@0.11.2
random@1.1.0
promise@0.12.0
random@1.2.0
rate-limit@1.0.9
react-fast-refresh@0.1.1
reactive-var@1.0.11
reload@1.3.0
reload@1.3.1
retry@1.1.0
routepolicy@1.1.0
service-configuration@1.0.11
routepolicy@1.1.1
service-configuration@1.1.0
sha@1.0.9
socket-stream-client@0.2.2
srp@1.0.12
tinytest@1.1.0
socket-stream-client@0.4.0
tinytest@1.1.1
tracker@1.2.0
underscore@1.0.10
webapp@1.7.3
webapp-hashing@1.0.9
url@1.3.2
webapp@1.11.1
webapp-hashing@1.1.0
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("METEOR@1.8.1");
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("METEOR@1.8.1");
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.