Update releases.properties from release 2026.6.2#29
Merged
Conversation
Auto-generated from release 2026.6.2
Review Summary by QodoAdd PostgreSQL versions from release 2026.6.2
WalkthroughsDescription• Added 5 new PostgreSQL versions from release 2026.6.2 • Updated existing version entries with newer release URLs • Maintained semver ordering with newest versions first • New versions: 18.4, 17.10, 16.14, 15.18, 14.23 Diagramflowchart LR
A["Release 2026.6.2"] -->|"Extract .7z assets"| B["New Versions"]
B -->|"18.4, 17.10, 16.14, 15.18, 14.23"| C["Update releases.properties"]
C -->|"Maintain semver order"| D["Updated Configuration"]
File Changes1. releases.properties
|
Code Review by Qodo
1. CI skips release update
|
Contributor
🐘 PostgreSQL Module Tests - ResultsTest Date: 2026-06-03 04:23:43 UTC ℹ️ Why were tests skipped? Tests are only run when:
To trigger tests:
|
Comment on lines
+1
to
+4
| 18.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.6.2/bearsampp-postgresql-18.4-2025.6.2.7z | ||
| 18.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-18.3-2025.3.8.7z | ||
| 18.1 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-18.1-2025.7.2.7z | ||
| 18.1 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.6.2/bearsampp-postgresql-18.1-2025.6.2.7z | ||
| 17.10 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.6.2/bearsampp-postgresql-17.10-2025.6.2.7z |
There was a problem hiding this comment.
1. Ci skips release update 🐞 Bug ☼ Reliability
For pull_request events, the postgresql-test workflow only derives versions from changed /bin paths or from numeric patterns in the PR title; a PR that only edits releases.properties will typically produce an empty version list and skip the Windows download/extract smoke tests for the newly added versions.
Agent Prompt
### Issue description
`postgresql-test.yml` skips testing when a PR only updates `releases.properties`, because version detection does not look at that file’s changes and the PR-title regex commonly extracts unrelated numbers (e.g., release tag fragments), resulting in `VERSIONS="[]"` and the test job being skipped.
### Issue Context
This PR adds new top versions in `releases.properties`, but the PR-based version detection in the CI workflow only checks changed `/bin` paths and then falls back to extracting `X.Y` patterns from the PR title.
### Fix Focus Areas
- .github/workflows/postgresql-test.yml[75-165]
### Implementation notes
- Add a detection path for PRs that parses added/modified keys in `releases.properties` (e.g., via `git diff` against the base SHA and extracting `^[0-9]+\.[0-9]+` keys from added lines).
- Use those detected keys to populate `VERSIONS` (and optionally cap to the newest N).
- Keep the existing `/bin` and title-based fallbacks as secondary paths.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Releases Properties Update
This PR updates the
releases.propertiesfile with new versions from release2026.6.2.Changes:
Release URL: https://github.com/Bearsampp/module-postgresql/releases/tag/2026.6.2
Next Steps: