@alwatr/crypto 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.8](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/crypto@1.1.7...@alwatr/crypto@1.1.8) (2023-10-23)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **crypto:** compatible with new logger api ([f867317](https://github.com/AliMD/alwatr-eslib/commit/f8673178d18f14276e13dcb35a7d973f301a722b)) by @AliMD
11
+
6
12
  ## [1.1.7](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/crypto@1.1.6...@alwatr/crypto@1.1.7) (2023-10-23)
7
13
 
8
14
  **Note:** Version bump only for package @alwatr/crypto
package/index.js CHANGED
@@ -1,11 +1,8 @@
1
- import { globalAlwatr } from '@alwatr/logger';
1
+ import { definePackage } from '@alwatr/logger';
2
2
  export * from './hash.js';
3
3
  export * from './token.js';
4
4
  export * from './user.js';
5
5
  export * from './type.js';
6
6
  export * from './pre-config.js';
7
- globalAlwatr.registeredList.push({
8
- name: '@alwatr/crypto',
9
- version: _ALWATR_VERSION_,
10
- });
7
+ definePackage('crypto', '1.x');
11
8
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAC;AAE5C,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAEhC,YAAY,CAAC,cAAc,CAAC,IAAI,CAAC;IAC/B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,gBAAgB;CAC1B,CAAC,CAAC","sourcesContent":["import {globalAlwatr} from '@alwatr/logger';\n\nexport * from './hash.js';\nexport * from './token.js';\nexport * from './user.js';\nexport * from './type.js';\nexport * from './pre-config.js';\n\nglobalAlwatr.registeredList.push({\n name: '@alwatr/crypto',\n version: _ALWATR_VERSION_,\n});\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAEhC,aAAa,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC","sourcesContent":["import {definePackage} from '@alwatr/logger';\n\nexport * from './hash.js';\nexport * from './token.js';\nexport * from './user.js';\nexport * from './type.js';\nexport * from './pre-config.js';\n\ndefinePackage('crypto', '1.x');\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/crypto",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Secure authentication HOTP token generator (the HMAC-based One-Time Password algorithm) and crypto utils written in tiny TypeScript module.",
5
5
  "keywords": [
6
6
  "crypto",
@@ -40,9 +40,9 @@
40
40
  "url": "https://github.com/AliMD/alwatr-eslib/issues"
41
41
  },
42
42
  "dependencies": {
43
- "@alwatr/logger": "^1.2.0",
44
- "@alwatr/math": "^1.1.7",
43
+ "@alwatr/logger": "^2.0.0",
44
+ "@alwatr/math": "^1.1.8",
45
45
  "tslib": "^2.6.2"
46
46
  },
47
- "gitHead": "26313bbc24641dcfdaa3a0f94159218e634f390d"
47
+ "gitHead": "66a820931d638c8e4b465c86bf5c6ad0771d62ad"
48
48
  }