Skip to content

Bump openssl from 0.10.52 to 0.10.56 in /tests/ci/lambda#2

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/tests/ci/lambda/openssl-0.10.56
Closed

Bump openssl from 0.10.52 to 0.10.56 in /tests/ci/lambda#2
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/tests/ci/lambda/openssl-0.10.56

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Aug 10, 2023

Bumps openssl from 0.10.52 to 0.10.56.

Release notes

Sourced from openssl's releases.

openssl v0.10.56

No release notes provided.

openssl-v0.10.55

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.54...openssl-v0.10.55

openssl-v0.10.54

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.53...openssl-v0.10.54

openssl-v0.10.53

What's Changed

New Contributors

... (truncated)

Commits
  • 7daab5b Merge pull request #2009 from reaperhulk/changelog
  • 12ee78d changelog and version bump
  • 0008d12 Merge pull request #2008 from alex/deref-cipher
  • 8449b82 Implement Deref[Mut] for Cipher on older OpenSSLs
  • b1ee513 Merge pull request #2005 from sfackler/sfackler-patch-1
  • ee4c126 bump ci versions
  • 0a34876 Merge pull request #1998 from trail-of-forks/poly1305-bindings
  • e1fd4da Merge pull request #2002 from davidben/no-sock
  • c8b6077 Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings
  • 99bce5b Merge pull request #2000 from zh-jq/ec_point_to_hex_str
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

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>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 10, 2023
justsmth pushed a commit that referenced this pull request Aug 24, 2023
Adding CertificateRequest server side functionality
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Nov 28, 2023

Superseded by #12.

@dependabot dependabot bot closed this Nov 28, 2023
@dependabot dependabot bot deleted the dependabot/cargo/tests/ci/lambda/openssl-0.10.56 branch November 28, 2023 21:35
justsmth added a commit that referenced this pull request Oct 25, 2024
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants