From 0e44b9e37d20ab2c7a294245775393a06803f86f Mon Sep 17 00:00:00 2001 From: "dr.dimitru" Date: Sun, 1 Mar 2020 17:57:10 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20v3.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Compatibility with `meteor@1.9.*`; - Minor update to the test-suite; - This is maintenance release. --- .versions | 30 +++++++++++++++--------------- client-storage-tests.js | 2 +- package.js | 4 ++-- package.json | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.versions b/.versions index 738d3b8..c78178e 100644 --- a/.versions +++ b/.versions @@ -1,10 +1,10 @@ allow-deny@1.1.0 -babel-compiler@7.3.4 -babel-runtime@1.3.0 -base64@1.0.11 +babel-compiler@7.5.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 +callback-hook@1.3.0 check@1.3.1 ddp@1.4.0 ddp-client@2.3.3 @@ -12,29 +12,29 @@ ddp-common@1.4.0 ddp-server@2.3.0 diff-sequence@1.1.1 dynamic-import@0.5.1 -ecmascript@0.12.4 +ecmascript@0.14.2 ecmascript-runtime@0.7.0 -ecmascript-runtime-client@0.8.0 -ecmascript-runtime-server@0.7.1 -ejson@1.1.0 +ecmascript-runtime-client@0.10.0 +ecmascript-runtime-server@0.9.0 +ejson@1.1.1 fetch@0.1.1 geojson-utils@1.0.10 id-map@1.1.0 inter-process-messaging@0.1.0 -local-test:ostrio:cstorage@3.0.0 +local-test:ostrio:cstorage@3.0.1 logging@1.1.20 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 +modules@0.15.0 +modules-runtime@0.12.0 +mongo@1.8.0 mongo-decimal@0.1.1 mongo-dev-server@1.1.0 mongo-id@1.0.7 -npm-mongo@3.1.2 +npm-mongo@3.3.0 ordered-dict@1.1.0 -ostrio:cstorage@3.0.0 +ostrio:cstorage@3.0.1 promise@0.11.2 random@1.1.0 reload@1.3.0 @@ -44,5 +44,5 @@ socket-stream-client@0.2.2 tinytest@1.1.0 tracker@1.2.0 underscore@1.0.10 -webapp@1.7.3 +webapp@1.8.0 webapp-hashing@1.0.9 diff --git a/client-storage-tests.js b/client-storage-tests.js index accc122..f6350fe 100644 --- a/client-storage-tests.js +++ b/client-storage-tests.js @@ -1,4 +1,4 @@ -import { ClientStorage, clientStorage } from 'meteor/ostrio:cstorage'; +import { ClientStorage, clientStorage } from './client-storage.js'; Tinytest.add('ClientStorage - set() / get() / has() - Void (Should fail for localStorage)', function (test) { ClientStorage.empty(); diff --git a/package.js b/package.js index 680d8dc..efff324 100755 --- a/package.js +++ b/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ostrio:cstorage', - version: '3.0.0', + version: '3.0.1', summary: 'Bulletproof persistent Client (Browser) storage, works with disabled Cookies and/or localStorage', git: 'https://github.com/VeliovGroup/Client-Storage', documentation: 'README.md' @@ -14,6 +14,6 @@ Package.onUse((api) => { Package.onTest((api) => { api.use('tinytest'); - api.use(['ecmascript', 'ostrio:cstorage'], 'client'); + api.use('ecmascript', 'client'); api.addFiles('client-storage-tests.js', 'client'); }); diff --git a/package.json b/package.json index c07ef4b..12b5839 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ClientStorage", - "version": "3.0.0", + "version": "3.0.1", "description": "Bulletproof persistent browser storage, works with disabled Cookies and/or localStorage", "main": "./client-storage.js", "scripts": {