Bump openssl from 0.10.52 to 0.10.56 in /tests/ci/lambda#2
Closed
dependabot[bot] wants to merge 1 commit intomainfrom
Closed
Bump openssl from 0.10.52 to 0.10.56 in /tests/ci/lambda#2dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.52 to 0.10.56. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](rust-openssl/rust-openssl@openssl-v0.10.52...openssl-v0.10.56) --- updated-dependencies: - dependency-name: openssl dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
justsmth
pushed a commit
that referenced
this pull request
Aug 24, 2023
Adding CertificateRequest server side functionality
Author
|
Superseded by #12. |
justsmth
added a commit
that referenced
this pull request
Feb 24, 2025
# This is the 1st commit message: libgit2 integration test # The commit message #2 will be skipped: # fixup! libgit2 integration test
justsmth
added a commit
that referenced
this pull request
Feb 24, 2026
…ws#3029) ### Issues: Addresses aws#3028 ### Description of changes: When GCC 15 compiles the FIPS module at `-O3` on aarch64, it emits `fmov` instructions with floating-point immediates (e.g. `fmov v8.4s, #2.0e+0`). The delocator's PEG grammar only supports integer immediates, so it parses `#2.0e+0` as the integer `#2` followed by what it thinks is a symbol reference `.0e`. This gets turned into a redirector (`.Lbcm_redirector_.0e`), producing invalid assembly. This change fixes the issue in two ways: - **Grammar fix**: Adds a floating-point immediate alternative to the `RegisterOrConstant` rule in `delocate.peg`, so values like `#2.0e+0` are parsed as a single token. - **Pass-through**: Adds `fmov` to the special-case instruction list in `processAarch64Instruction()`. Since `fmov` only operates on registers and immediates (never memory), it never needs delocating and can safely be written through unchanged. The GCC 15 + FIPS exclusion in `arm-gcc-tests` CI is also removed now that the underlying issue is resolved. ### Call-outs: The `delocate.peg.go` file is regenerated from the grammar using the `peg` tool. The grammar change is the one line in `delocate.peg`; the rest of that file is mechanical. ### Testing: - Added 6 test cases to `testdata/aarch64-Basic/in.s` covering float immediates with exponent notation, simple decimals, negative values, fractional values, scalar forms, and register-to-register `fmov`. - All 19 existing delocator tests continue to pass. - Re-enabled the `arm-gcc-tests` CI matrix entry for GCC 15 + FIPS on arm64 which will validate the end-to-end build. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
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.
Bumps openssl from 0.10.52 to 0.10.56.
Release notes
Sourced from openssl's releases.
... (truncated)
Commits
7daab5bMerge pull request #2009 from reaperhulk/changelog12ee78dchangelog and version bump0008d12Merge pull request #2008 from alex/deref-cipher8449b82Implement Deref[Mut] for Cipher on older OpenSSLsb1ee513Merge pull request #2005 from sfackler/sfackler-patch-1ee4c126bump ci versions0a34876Merge pull request #1998 from trail-of-forks/poly1305-bindingse1fd4daMerge pull request #2002 from davidben/no-sockc8b6077Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings99bce5bMerge pull request #2000 from zh-jq/ec_point_to_hex_strDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.