Skip to content

Commit feacd55

Browse files
committed
📦 v2.9.2
- Refactoring and improvements - Fixed typos, mistakes, and bugs - Hardened arguments checking - Improved TS definitions - Improved tests coverage
1 parent 9d0235a commit feacd55

3 files changed

Lines changed: 16 additions & 30 deletions

File tree

.versions

Lines changed: 13 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,54 @@
11
allow-deny@2.1.0
2-
babel-compiler@7.12.2
2+
babel-compiler@7.13.0
33
babel-runtime@1.5.2
44
base64@1.0.13
55
binary-heap@1.0.12
6-
blaze@3.0.2
7-
blaze-html-templates@3.0.0
8-
blaze-tools@2.0.0
9-
boilerplate-generator@2.0.2
10-
caching-compiler@2.0.1
11-
caching-html-compiler@2.0.0
6+
boilerplate-generator@2.1.0
127
callback-hook@1.6.1
13-
check@1.4.4
8+
check@1.5.0
149
core-runtime@1.0.0
1510
ddp@1.4.2
1611
ddp-client@3.1.1
1712
ddp-common@1.4.4
1813
ddp-server@3.1.2
1914
diff-sequence@1.1.3
2015
dynamic-import@0.7.4
21-
ecmascript@0.16.13
16+
ecmascript@0.17.0
2217
ecmascript-runtime@0.8.3
2318
ecmascript-runtime-client@0.12.3
2419
ecmascript-runtime-server@0.11.1
2520
ejson@1.1.5
2621
facts-base@1.0.2
2722
fetch@0.1.6
2823
geojson-utils@1.0.12
29-
html-tools@2.0.0
30-
htmljs@2.0.1
3124
http@1.4.2
3225
id-map@1.2.0
3326
inter-process-messaging@0.1.2
34-
local-test:ostrio:cookies@2.9.1
27+
local-test:ostrio:cookies@2.9.2
3528
logging@1.3.6
36-
meteor@2.1.1
37-
minimongo@2.0.4
29+
meteor@2.2.0
30+
minimongo@2.0.5
3831
modern-browsers@0.2.3
3932
modules@0.20.3
4033
modules-runtime@0.13.2
41-
mongo@2.1.4
34+
mongo@2.2.0
4235
mongo-decimal@0.2.0
4336
mongo-dev-server@1.1.1
4437
mongo-id@1.0.9
4538
npm-mongo@6.16.1
46-
observe-sequence@2.0.0
4739
ordered-dict@1.2.0
48-
ostrio:cookies@2.9.1
40+
ostrio:cookies@2.9.2
4941
promise@1.0.0
5042
random@1.2.2
51-
react-fast-refresh@0.2.9
52-
reactive-var@1.0.13
43+
react-fast-refresh@0.3.0
5344
reload@1.3.2
5445
retry@1.1.1
5546
routepolicy@1.1.2
5647
socket-stream-client@0.6.1
57-
spacebars@2.0.0
58-
spacebars-compiler@2.0.0
59-
templating@1.4.4
60-
templating-compiler@2.0.0
61-
templating-runtime@2.0.1
62-
templating-tools@2.0.0
6348
tinytest@1.3.2
6449
tracker@1.3.4
65-
typescript@5.6.6
50+
typescript@5.9.3
6651
url@1.3.5
67-
webapp@2.0.7
52+
webapp@2.1.0
6853
webapp-hashing@1.1.2
54+
zodern:types@1.0.13

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Isomorphic and bulletproof 🍪 cookie management for Meteor applications with s
99

1010
- 👨‍💻 Stable codebase
1111
- 🚀 400,000+ downloads
12-
- 👨‍🔬 **99.9% tests coverage** / TDD
12+
- 👨‍🔬 **99.95% tests coverage** / TDD
1313
- 📦 No external dependencies (no `underscore`, `jQuery`, or `Blaze`)
1414
- 🖥 Consistent API across *Server* and *Client* environments
1515
- 📱 Compatible with *Cordova*, *Browser*, *Meteor-Desktop*, and other client platforms

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'ostrio:cookies',
3-
version: '2.9.1',
3+
version: '2.9.2',
44
summary: 'Isomorphic bulletproof Server, Client, Browser, and Cordova cookies',
55
git: 'https://github.com/veliovgroup/Meteor-Cookies',
66
documentation: 'README.md'
@@ -21,7 +21,7 @@ Package.onUse((api) => {
2121

2222
Package.onTest((api) => {
2323
api.use('tinytest');
24-
api.use(['ecmascript', 'http', 'random', 'zodern:types', 'typescript', 'ostrio:cookies@2.9.1'], ['client', 'server']);
24+
api.use(['ecmascript', 'http', 'random', 'zodern:types', 'typescript', 'ostrio:cookies@2.9.2'], ['client', 'server']);
2525
api.use(['ejson', 'webapp'], 'server');
2626
api.addFiles('tests/both.js', ['client', 'server']);
2727
api.addFiles('tests/server.js', 'server');

0 commit comments

Comments
 (0)