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.
This PR contains the following updates:
v5.1.1->v5.2.0==3.2.6->==3.2.7fb9fc6a->3697819==3.1.3->==3.1.4v1.26.0->v1.27.0Release Notes
actions/setup-python (actions/setup-python)
v5.2.0Compare Source
pylint-dev/pylint (pylint)
v3.2.7Compare Source
What's new in Pylint 3.2.7?
Release date: 2024-08-31
False Positives Fixed
Fixed a false positive
unreachableforNoReturncoroutine functions.Closes #9840
Other Bug Fixes
Fix crash in refactoring checker when calling a lambda bound as a method.
Closes #9865
Fix a crash in
undefined-loop-variablewhen providing theiterableargument toenumerate().Closes #9875
Fix to address indeterminacy of error message in case a module name is same as another in a separate namespace.
Refs #9883
slackapi/slack-github-action (slackapi/slack-github-action)
v1.27.0: Slack Send V1.27.0Compare Source
What's changed
This release introduces an optional
payload-delimiterparameter for flattening nested objects with a customized delimiter before the payload is sent to Slack Workflow Builder when using workflow webhook triggers.- name: Send a custom flattened payload uses: slackapi/[email protected] + with: + payload-delimiter: "_" env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}Setting this value to an underscore (
_) is recommended when using nested inputs within Workflow Builder to match expected input formats of Workflow Builder, but the actual value can be changed to something else! This "flattening" behavior did exist prior to this version, but used a period (.) which is not valid for webook inputs in Workflow Builder.Flattening example
The resulting output of flattened objects is not always clear, but the following can hopefully serve as a quick reference as well as these specs when using
_as the delimiter:Input:
{ "apples": "tree", "bananas": { "truthiness": true } }Output:
{ "apples": "tree", "bananas_truthiness": "true" }Notice that
bananas_truthinessis also stringified in this process, as part of updating values to match the expected inputs of Workflow Builder!Changes
In addition to the changes above, the following lists all of the changes since the prior version with the complete changelog changes found here: slackapi/slack-github-action@v1.26.0...v1.27.0
🎁 Enhancements
📚 Documentation
🔒 Security
🧪 Maintenance
📦 Dependencies
🎉 New contributors
Configuration
📅 Schedule: Branch creation - "every month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.