systemic-redis
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -5,2 +5,30 @@ # Changelog | ||
### [3.0.1](https://github.com/guidesmiths/systemic-redis/compare/v3.0.0...v3.0.1) (2022-09-19) | ||
### 🔬 Tests | ||
* e2e ([1e26e8b](https://github.com/guidesmiths/systemic-redis/commit/1e26e8be5caf3345958d7b9bf3c936869bf6611f)) | ||
### 🐛 Bug Fixes | ||
* update npm deps locks ([37298d8](https://github.com/guidesmiths/systemic-redis/commit/37298d87d94bb41db89f3bc19eeef4c6b3e0dcce)) | ||
### ☁️ CI | ||
* branch action ([f54f8b4](https://github.com/guidesmiths/systemic-redis/commit/f54f8b48b1e6120436f4c037966e7791c196c9b2)) | ||
* container names ([cd95e04](https://github.com/guidesmiths/systemic-redis/commit/cd95e04d8c4fd729e7c1b66a77d81ecb512585c7)) | ||
* docker commands ([35b85be](https://github.com/guidesmiths/systemic-redis/commit/35b85be749cd242882380cbfe8d76e5ed62020bd)) | ||
* multiple node versions ([43a8862](https://github.com/guidesmiths/systemic-redis/commit/43a8862447acaf54f51d54fe1f3fd97787dedfd0)) | ||
* node matri versions ([94fbd83](https://github.com/guidesmiths/systemic-redis/commit/94fbd83f3981aa3d43e2d499ea4fa89099a7a15c)) | ||
### 🔧 Others | ||
* regenerate package deps lock ([9c80fc8](https://github.com/guidesmiths/systemic-redis/commit/9c80fc8dcf903ece4d2f7465d2c43b7e004ce927)) | ||
* removed duplicated info in CHAGELOG ([803729b](https://github.com/guidesmiths/systemic-redis/commit/803729ba8d08017d68bbb23defd2cc04e9508170)) | ||
* update package version ([dbdca39](https://github.com/guidesmiths/systemic-redis/commit/dbdca3934d917ec76e09b252e2cf2bd640d6ff08)) | ||
## [3.0.0](https://github.com/guidesmiths/systemic-redis/compare/v2.2.0...v3.0.0) (2022-09-16) | ||
@@ -24,13 +52,1 @@ | ||
* **release:** 2.2.0 ([1726393](https://github.com/guidesmiths/systemic-redis/commit/1726393a0200d3fa62be1c545129af6e99b8de01)) | ||
# Changelog | ||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. | ||
# Changelog | ||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. | ||
# Changelog | ||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. |
@@ -0,1 +1,3 @@ | ||
const debug = require('debug')('systemic:redis'); | ||
module.exports = (options) => { | ||
@@ -7,5 +9,6 @@ let redis = (options && options.redis) || require('redis'); | ||
const connectToRedis = () => client.connect(); | ||
const connectToRedis = async () => client.connect(); | ||
const start = async (dependencies) => { | ||
debug(dependencies); | ||
config = { ...dependencies.config }; | ||
@@ -12,0 +15,0 @@ |
{ | ||
"name": "systemic-redis", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "A systemic redis component", | ||
@@ -14,3 +14,5 @@ "main": "index.js", | ||
"lint:fix": "npm run lint -- --fix", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"test": "npx jest", | ||
"docker:start": "docker-compose up -d", | ||
"docker:stop": "docker-compose down", | ||
"release": "commit-and-tag-version" | ||
@@ -25,2 +27,3 @@ }, | ||
"dependencies": { | ||
"debug": "^4.3.4", | ||
"redis": "^4.3.1" | ||
@@ -33,3 +36,5 @@ }, | ||
"eslint": "^8.23.1", | ||
"husky": "^8.0.1" | ||
"husky": "^8.0.1", | ||
"jest": "^29.0.3", | ||
"systemic": "^4.1.2" | ||
}, | ||
@@ -36,0 +41,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
11021
17
104
0
2
7
+ Addeddebug@^4.3.4
+ Addeddebug@4.3.7(transitive)
+ Addedms@2.1.3(transitive)