You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (from && to && (semver.major(from) === 0 || semver.major(to) === 0)) {
215
215
console.log(` 0.x version detected - not auto-approving minor update`);
216
216
return false;
@@ -251,9 +251,9 @@ jobs:
251
251
252
252
// Add basic changelog information
253
253
const changelog = `## Changelog\n\nUpdated ${depName} from ${fromVersion} to ${toVersion}\n\n📋 To view detailed changes, visit the package repository or release notes.`;
254
-
254
+
255
255
const newBody = `${body}\n\n${changelog}`;
256
-
256
+
257
257
if (!dryRun) {
258
258
await octokit.rest.pulls.update({
259
259
owner,
@@ -273,7 +273,7 @@ jobs:
273
273
async function applyLabels(pr, updateType) {
274
274
try {
275
275
const labels = ['dependencies'];
276
-
276
+
277
277
// Add update type label
278
278
if (updateType !== 'unknown') {
279
279
labels.push(`dependency-${updateType}`);
@@ -311,7 +311,7 @@ jobs:
311
311
});
312
312
313
313
// Only allow auto-approval if all checks have concluded successfully
* Python: Add inflight request limit support to sync client
18
19
* Python Sync: Add OpenTelemetry support with traces and metrics configuration
19
20
* Python: Move OpenTelemetry config classes to glide_shared for code reuse between async and sync clients
20
21
* JAVA: Add dynamic PubSub methods (subscribe, psubscribe, unsubscribe, punsubscribe, ssubscribe, sunsubscribe), getSubscriptions() for subscription state tracking, pubsubReconciliationIntervalMs configuration option, and subscription_out_of_sync_count and subscription_last_sync_timestamp metrics ([#5267](https://github.com/valkey-io/valkey-glide/issues/5267))
21
22
* Go: Add ALLOW_NON_COVERED_SLOTS flag support for cluster scan ([#4895](https://github.com/valkey-io/valkey-glide/issues/4895))
23
+
* CORE: Track HELLO and AUTH state for reconnection ([#5145](https://github.com/valkey-io/valkey-glide/issues/5145))
22
24
23
25
#### Fixes
26
+
* CORE: Fix empty hostname in CLUSTER SLOTS metadata causing AllConnectionsUnavailable ([#5367](https://github.com/valkey-io/valkey-glide/issues/5367)). AWS ElastiCache (plaintext, cluster mode) returns `hostname: ""` in node metadata, which was used as the connection address instead of falling back to the IP.
24
27
* Node: Fix to handle non-string types in toBuffersArray ([#4842](https://github.com/valkey-io/valkey-glide/issues/4842))
25
28
* CORE: Enforce connection_timeout for initial standalone connection failures ([#4991](https://github.com/valkey-io/valkey-glide/issues/4991))
26
29
* Node: Fixed `Failed to convert napi value Undefined into rust type u32` error ([#5128](https://github.com/valkey-io/valkey-glide/pull/5128))
0 commit comments