redis-smq-common 8.0.1 → 8.0.2

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,17 @@
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
+ ## [8.0.2](https://github.com/weyoss/redis-smq/compare/v8.0.1...v8.0.2) (2025-04-14)
7
+
8
+ ### 🚀 Chore
9
+
10
+ - **redis-smq-common:** update Valkey server binary URLs to v7.2.8-2 ([e6b9b8d](https://github.com/weyoss/redis-smq/commit/e6b9b8d31af9d321b3ad208bebabd09171932822))
11
+
12
+ ### 📝 Documentation
13
+
14
+ - **redis-smq-common:** update package description and documentation link ([3a5d91c](https://github.com/weyoss/redis-smq/commit/3a5d91c05faed92c395eaa541c346d8ecb5273b7))
15
+ - reorganize and enhance documentation across packages ([212fe75](https://github.com/weyoss/redis-smq/commit/212fe75143f1c446045c346e460065215e98f1d7))
16
+
6
17
  ## [8.0.1](https://github.com/weyoss/redis-smq/compare/v8.0.0...v8.0.1) (2025-04-13)
7
18
 
8
19
  **Note:** Version bump only for package redis-smq-common
package/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  [![Latest Release](https://img.shields.io/github/v/release/weyoss/redis-smq?include_prereleases&label=release&color=green&style=flat-square)](https://github.com/weyoss/redis-smq/releases)
4
4
  [![Code Coverage](https://img.shields.io/codecov/c/github/weyoss/redis-smq?flag=redis-smq-common&style=flat-square)](https://app.codecov.io/github/weyoss/redis-smq/tree/master/packages/redis-smq-common)
5
5
 
6
- This package provides essential components that are used by RedisSMQ and other RedisSMQ-based packages.
6
+ This package provides essential components that are used by RedisSMQ and other RedisSMQ-related packages.
7
7
 
8
- For more detailed information about the package's components and their usage, visit the [documentation page](docs/README.md).
8
+ For more detailed information about the package's components and their usage, visit the [documentation page](https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-common/docs).
9
+
10
+ ## License
11
+
12
+ This project is licensed under is released under the [MIT License](https://github.com/weyoss/redis-smq/blob/master/LICENSE).
@@ -23,12 +23,12 @@ const constants_js_1 = require("./constants.js");
23
23
  const index_js_4 = require("./errors/index.js");
24
24
  const tarballs = {
25
25
  linux: {
26
- x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-linux-x64-v7.2.8-1.tar.gz',
27
- arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-linux-arm64-v7.2.8-1.tar.gz',
26
+ x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-linux-x64-v7.2.8-2.tar.gz',
27
+ arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-linux-arm64-v7.2.8-2.tar.gz',
28
28
  },
29
29
  darwin: {
30
- x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-macos-x64-v7.2.8-1.tar.gz',
31
- arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-macos-arm64-v7.2.8-1.tar.gz',
30
+ x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-macos-x64-v7.2.8-2.tar.gz',
31
+ arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-macos-arm64-v7.2.8-2.tar.gz',
32
32
  },
33
33
  };
34
34
  function downloadAndExtractRedis(downloadPath) {
@@ -8,12 +8,12 @@ import { REDIS_BINARY_PATH, REDIS_CACHE_DIRECTORY, REDIS_SETUP_LOCK_FILE, } from
8
8
  import { RedisServerUnsupportedPlatformError } from './errors/index.js';
9
9
  const tarballs = {
10
10
  linux: {
11
- x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-linux-x64-v7.2.8-1.tar.gz',
12
- arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-linux-arm64-v7.2.8-1.tar.gz',
11
+ x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-linux-x64-v7.2.8-2.tar.gz',
12
+ arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-linux-arm64-v7.2.8-2.tar.gz',
13
13
  },
14
14
  darwin: {
15
- x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-macos-x64-v7.2.8-1.tar.gz',
16
- arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-1/valkey-server-macos-arm64-v7.2.8-1.tar.gz',
15
+ x64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-macos-x64-v7.2.8-2.tar.gz',
16
+ arm64: 'https://github.com/weyoss/valkey/releases/download/v7.2.8-2/valkey-server-macos-arm64-v7.2.8-2.tar.gz',
17
17
  },
18
18
  };
19
19
  async function downloadAndExtractRedis(downloadPath) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq-common",
3
- "version": "8.0.1",
3
+ "version": "8.0.2",
4
4
  "description": "RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.",
5
5
  "author": "Weyoss <weyoss@protonmail.com>",
6
6
  "license": "MIT",