Unverified Commit 9db6b04a authored by ysaito1001's avatar ysaito1001 Committed by GitHub
Browse files

Bump MSRV to 1.82 (#4120)

## Motivation and Context
Bumps MRSV to 1.82.0

## Description
This resolves issues observed in CI and the release pipeline where newer
dependencies require newer MSRV:
```
error: rustc 1.81.0 is not supported by the following packages:
  icu_collections@2.0.0 requires rustc 1.82
  icu_locale_core@2.0.0 requires rustc 1.82
  icu_normalizer@2.0.0 requires rustc 1.82
  icu_normalizer_data@2.0.0 requires rustc 1.82
  icu_normalizer_data@2.0.0 requires rustc 1.82
  icu_normalizer_data@2.0.0 requires rustc 1.82
  icu_properties@2.0.0 requires rustc 1.82
  icu_properties_data@2.0.0 requires rustc 1.82
  icu_properties_data@2.0.0 requires rustc 1.82
  icu_properties_data@2.0.0 requires rustc 1.82
  icu_provider@2.0.0 requires rustc 1.82
  idna_adapter@1.2.1 requires rustc 1.82
  litemap@0.8.0 requires rustc 1.82
  zerotrie@0.2.2 requires rustc 1.82
  zerovec@0.11.2 requires rustc 1.82
```

Why did dependencies get upgraded in spite of lockfiles, is [tracked
separately](https://github.com/smithy-lang/smithy-rs/issues/4121).

## Testing
CI

## Checklist
<!--- If a checkbox below is not applicable, then please DELETE it
rather than leaving it unchecked -->
- [x] For changes to the smithy-rs codegen or runtime crates, I have
created a changelog entry Markdown file in the `.changelog` directory,
specifying "client," "server," or both in the `applies_to` key.
- [x] For changes to the AWS SDK, generated SDK code, or SDK runtime
crates, I have created a changelog entry Markdown file in the
`.changelog` directory, specifying "aws-sdk-rust" in the `applies_to`
key.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent cb3e23d7
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
---
applies_to:
- client
- server
- aws-sdk-rust
authors:
- ysaito1001
references:
- smithy-rs#4120
breaking: true
new_feature: false
bug_fix: false
---
Update MSRV to 1.82.0
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ on:
        required: false

env:
  rust_version: 1.81.0
  rust_version: 1.82.0
  rust_toolchain_components: clippy,rustfmt
  ENCRYPTED_DOCKER_PASSWORD: ${{ secrets.ENCRYPTED_DOCKER_PASSWORD }}
  DOCKER_LOGIN_TOKEN_PASSPHRASE: ${{ secrets.DOCKER_LOGIN_TOKEN_PASSPHRASE }}
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ concurrency:
  cancel-in-progress: true

env:
  rust_version: 1.81.0
  rust_version: 1.82.0

name: Claim unpublished crate names on crates.io
run-name: ${{ github.workflow }}
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ on:
name: Update GitHub Pages

env:
  rust_version: 1.81.0
  rust_version: 1.82.0

# Allow only one doc pages build to run at a time for the entire smithy-rs repo
concurrency:
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ env:
  apt_dependencies: libssl-dev gnuplot jq
  java_version: 17
  rust_toolchain_components: clippy,rustfmt
  rust_nightly_version: nightly-2024-06-30
  rust_nightly_version: nightly-2025-05-04

jobs:
  generate-diff:
Loading