Skip to content

Commit e466de8

Browse files
committed
v0.0.42 security fix (deny functions) Fixes #63
1 parent bf834f0 commit e466de8

File tree

5 files changed

+37
-15
lines changed

5 files changed

+37
-15
lines changed

History.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## vNEXT
22

3+
## v0.0.42
4+
5+
* Critical security bug fixed (deny function were not enforced)
6+
7+
## v0.0.41
8+
9+
* fix compat with 0.8.3
10+
* initial but broken laika 0.9 support
11+
* fix for tests
12+
313
## v0.0.40
414

515
* Fixes for breaking changes in private Blaze API in Meteor 0.9.1

lib/mfPkg/messageformat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ mfPkg = {
8484
},
8585
denied: function() {
8686
var self = this, args = arguments;
87-
return _.every(mfPkg.webUI.allowFuncs, function(func) {
87+
return _.every(mfPkg.webUI.denyFuncs, function(func) {
8888
return !func.apply(self, args);
8989
});
9090
}

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: "gadicohen:messageformat",
3-
version: "0.0.41",
3+
version: "0.0.42",
44
summary: "MessageFormat support, the Meteor way",
55
git: "https://github.com/gadicc/meteor-messageformat.git",
66
});

smart.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "MessageFormat support, i18n the Meteor way",
44
"homepage": "https://github.com/gadicohen/meteor-messageformat",
55
"author": "Gadi Cohen <dragon@wastelands.net>",
6-
"version": "0.0.41",
6+
"version": "0.0.42",
77
"git": "https://github.com/gadicohen/meteor-messageformat.git",
88
"packages": {
99
"headers": "0.0.24"

versions.json

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"dependencies": [
33
[
44
"application-configuration",
5-
"1.0.1"
5+
"1.0.2"
6+
],
7+
[
8+
"base64",
9+
"1.0.0"
610
],
711
[
812
"binary-heap",
@@ -16,6 +20,10 @@
1620
"blaze-tools",
1721
"1.0.0"
1822
],
23+
[
24+
"boilerplate-generator",
25+
"1.0.0"
26+
],
1927
[
2028
"callback-hook",
2129
"1.0.0"
@@ -34,7 +42,7 @@
3442
],
3543
[
3644
"ejson",
37-
"1.0.1"
45+
"1.0.2"
3846
],
3947
[
4048
"follower-livedata",
@@ -58,7 +66,7 @@
5866
],
5967
[
6068
"htmljs",
61-
"1.0.0"
69+
"1.0.1"
6270
],
6371
[
6472
"id-map",
@@ -94,23 +102,23 @@
94102
],
95103
[
96104
"logging",
97-
"1.0.2"
105+
"1.0.3"
98106
],
99107
[
100108
"meteor",
101-
"1.0.3"
109+
"1.1.0"
102110
],
103111
[
104112
"minifiers",
105-
"1.0.2"
113+
"1.1.0"
106114
],
107115
[
108116
"minimongo",
109-
"1.0.2"
117+
"1.0.3"
110118
],
111119
[
112120
"mongo",
113-
"1.0.4"
121+
"1.0.5"
114122
],
115123
[
116124
"observe-sequence",
@@ -138,7 +146,7 @@
138146
],
139147
[
140148
"routepolicy",
141-
"1.0.0"
149+
"1.0.1"
142150
],
143151
[
144152
"session",
@@ -154,7 +162,7 @@
154162
],
155163
[
156164
"templating",
157-
"1.0.5"
165+
"1.0.6"
158166
],
159167
[
160168
"tracker",
@@ -170,10 +178,14 @@
170178
],
171179
[
172180
"webapp",
173-
"1.0.3"
181+
"1.1.1"
182+
],
183+
[
184+
"webapp-hashing",
185+
"1.0.0"
174186
]
175187
],
176188
"pluginDependencies": [],
177-
"toolVersion": "meteor-tool@1.0.28",
189+
"toolVersion": "meteor-tool@1.0.31",
178190
"format": "1.0"
179191
}

0 commit comments

Comments
 (0)