Skip to content

RRD 1.3.6 release changelog updates#215

Closed
nhanasi wants to merge 3 commits into
mainfrom
release/1.3.6
Closed

RRD 1.3.6 release changelog updates#215
nhanasi wants to merge 3 commits into
mainfrom
release/1.3.6

Conversation

@nhanasi

@nhanasi nhanasi commented Jun 11, 2026

Copy link
Copy Markdown
Contributor

No description provided.

naveenkumarhanasi and others added 3 commits June 9, 2026 16:52
RRD  release for 1.3.5 version
…is leading RDM crash (#211)

* Update rrd_config.c

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* Update rrd_config.c

* Update rrd_config.c

* Update rrd_config.c

* Update rrd_config.c

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings June 11, 2026 15:48
@nhanasi
nhanasi requested a review from a team as a code owner June 11, 2026 15:48
@github-actions

Copy link
Copy Markdown

Code Coverage Summary

                               Total:|84.1%   6263|97.3%  1668|    -      0

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates release documentation for RRD 1.3.6, and includes a small behavior change in configuration file detection used by the C implementation of the uploadRRDLogs flow.

Changes:

  • Add a new 1.3.6 section to CHANGELOG.md and add a release date line for 1.3.5.
  • Tighten file_exists() in src/rrd_config.c to require a regular file and (currently) non-zero size.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.

File Description
src/rrd_config.c Changes the helper used to detect config/tool files during configuration loading.
CHANGELOG.md Adds the 1.3.6 release notes and adjusts release metadata formatting.

Comment thread src/rrd_config.c
Comment on lines +82 to +86
// Helper: check if file exists and has non-zero size
static bool file_exists(const char *filepath) {
if (!filepath) return false;
struct stat st;
return (stat(filepath, &st) == 0);
return (stat(filepath, &st) == 0 && S_ISREG(st.st_mode) && st.st_size > 0);
Comment thread CHANGELOG.md
Comment on lines +7 to +8
#### [1.3.6](https://github.com/rdkcentral/remote_debugger/compare/1.3.5...1.3.6)

Comment thread CHANGELOG.md

#### [1.3.6](https://github.com/rdkcentral/remote_debugger/compare/1.3.5...1.3.6)

- RDKEMW-17573: Triggering a issue type with more than 35 chars in RRD is leading RDM crash [`#211`](https://github.com/rdkcentral/remote_debugger/pull/211)
@nhanasi nhanasi closed this Jun 11, 2026
@nhanasi
nhanasi deleted the release/1.3.6 branch June 11, 2026 15:51
@github-actions github-actions Bot locked and limited conversation to collaborators Jun 11, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants