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
* Java: Restore shading and relocation of protobuf ([#5031](https://github.com/valkey-io/valkey-glide/pull/5031))
31
32
* CORE: Remove DEFAULT_CLIENT_CREATION_TIMEOUT and honor user-provided connection timeout by centralizing timeout logic in ConnectionRequest ([#5183](https://github.com/valkey-io/valkey-glide/issues/5183))
33
+
* Java: Fix mget large binary data issue and add test case ([#5341](https://github.com/valkey-io/valkey-glide/pull/5341))
34
+
* Java: Fix resource leak in integration tests where clients created via @MethodSource were never closed ([#5347](https://github.com/valkey-io/valkey-glide/issues/5347))
32
35
33
36
#### Operational Enhancements
34
37
* Docs: Add missing references to windows-x86_64 classifier ([#5028](https://github.com/valkey-io/valkey-glide/pull/5028))
0 commit comments