@bejibun/redis 0.1.27 → 0.1.28
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 +17 -0
- package/builders/RedisBuilder.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
## [v0.1.27](https://github.com/crenata/bejibun-redis/compare/v0.1.26...v0.1.27) - 2025-10-20
|
|
7
|
+
|
|
8
|
+
### 🩹 Fixes
|
|
9
|
+
|
|
10
|
+
### 📖 Changes
|
|
11
|
+
Chore :
|
|
12
|
+
- Refactor some codes to bun native
|
|
13
|
+
- Adding log when throwing redis exception
|
|
14
|
+
|
|
15
|
+
### ❤️Contributors
|
|
16
|
+
- Havea Crenata ([@crenata](https://github.com/crenata))
|
|
17
|
+
- Ghulje ([@ghulje](https://github.com/ghulje))
|
|
18
|
+
|
|
19
|
+
**Full Changelog**: https://github.com/crenata/bejibun-redis/blob/master/CHANGELOG.md
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
6
23
|
## [v0.1.26](https://github.com/crenata/bejibun-redis/compare/v0.1.24...v0.1.26) - 2025-10-18
|
|
7
24
|
|
|
8
25
|
### 🩹 Fixes
|
package/builders/RedisBuilder.js
CHANGED
|
@@ -133,7 +133,7 @@ export default class RedisBuilder {
|
|
|
133
133
|
const connectionName = defineValue(name, config.default);
|
|
134
134
|
const connection = config.connections[connectionName];
|
|
135
135
|
if (isEmpty(connection))
|
|
136
|
-
throw new RedisException(`
|
|
136
|
+
throw new RedisException(`Connection "${connectionName}" not found.`);
|
|
137
137
|
return connection;
|
|
138
138
|
}
|
|
139
139
|
static getClient(name) {
|