Conversation
Bumps [com.github.mwiede:jsch](https://github.com/mwiede/jsch) from 2.28.1 to 2.28.2. - [Release notes](https://github.com/mwiede/jsch/releases) - [Changelog](https://github.com/mwiede/jsch/blob/master/ChangeLog) - [Commits](mwiede/jsch@jsch-2.28.1...jsch-2.28.2) --- updated-dependencies: - dependency-name: com.github.mwiede:jsch dependency-version: 2.28.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…wiede-jsch-2.28.1 chore(deps): bump com.github.mwiede:jsch from 2.28.1 to 2.28.2
- Update commons-io to 2.22.0 - Update commons-net to 3.13.0 - Update gson to 2.14.0 - Update jackson-core, jackson-databind, and jackson-dataformat-toml to 2.21.3 - Update ojdbc17 to 23.26.2.0.0 - Add pom-check.oafp.yaml for dependency update checks
Update the SQL query to only select dependencies where update is true and move the ctable output to a separate pipe stage for better clarity.
…into replicate-1841-t8
Add provider-specific prompt caching support in `owrap.ai.js` (OpenAI + Anthropic)
Implement caching for the remote opack package descriptions using with a configurable TTL via __flags.OPACK_REMOTE_DB_CACHE_TTL.
Replace complex parameter expansion checks with simpler string comparisons in completion_oaf.sh, completion_oafp.sh, and completion_opack.sh to improve reliability and maintainability of argument detection.
Update dnsjava dependency version from 3.6.4 to 3.6.5 in pom.xml, pom.json, and the corresponding library jar.
Temporarily replace inline code blocks with placeholders before applying the HTML filter to ensure that literal XML/HTML samples within fenced code blocks are preserved.
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.
This pull request changes how arguments are checked in two shell completion scripts, replacing specific pattern-matching logic with a simplified equality check. In
completion_oaf.sh, the check for the last argument is replaced with a check for an empty string. Incompletion_oafp.sh, many pattern-matching checks for specific argument prefixes are replaced with a check for the string "}}}", which may be a placeholder or a bug.The most important changes are:
Argument checking logic:
completion_oaf.sh, the script now checks for an empty string argument ("") instead of specifically checking if the current argument is the last one in the list.Pattern matching changes in argument parsing:
completion_oafp.sh, all pattern-matching checks that previously detected argument prefixes (e.g.,${arg#prefix}) are replaced with a simple check if the argument does not equal "}}}". This affects a large number of option checks for both input and output arguments, potentially breaking or altering their behavior.