Skip to content

Commit

Permalink
Upd
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jul 23, 2024
1 parent c24aebb commit bba5c62
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- juniper
- juniper_subscriptions
- juniper_graphql_ws
- juniper_actix
#- juniper_actix
- juniper_axum
- juniper_hyper
- juniper_rocket
Expand All @@ -159,6 +159,10 @@ jobs:
- ubuntu
- macOS
- windows
include:
- { msrv: "1.75.0", crate: "juniper_actix", os: "ubuntu" }
- { msrv: "1.75.0", crate: "juniper_actix", os: "macOS" }
- { msrv: "1.75.0", crate: "juniper_actix", os: "windows" }
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -172,10 +176,6 @@ jobs:
- run: cargo +nightly update -Z minimal-versions

- run: make test.cargo crate=${{ matrix.crate }}
if: ${{ matrix.crate != 'juniper_actix' }}
# TODO: Remove once MSRV bumps up >=1.75.
- run: cargo check -p ${{ matrix.crate }} --all-features
if: ${{ matrix.crate == 'juniper_actix' }}

package:
name: check (package)
Expand Down
16 changes: 15 additions & 1 deletion juniper_actix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ All user visible changes to `juniper_actix` crate will be documented in this fil



## [0.6.0] · 2024-??-?? (unreleased)
[0.6.0]: /../../tree/juniper_actix-v0.5.0/juniper_actix

### BC Breaks

- Switched to 0.3 version of [`actix-ws` crate]. ([#1267])
- Bumped up [MSRV] to 1.75 due to [`actix-ws` crate] requirements. ([#1267])

[#1267]: /../../pull/1267




## [0.5.0] · 2024-03-20
[0.5.0]: /../../tree/juniper_actix-v0.5.0/juniper_actix

Expand Down Expand Up @@ -49,4 +62,5 @@ See [old CHANGELOG](/../../blob/juniper_actix-v0.4.0/juniper_actix/CHANGELOG.md)
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws
[Semantic Versioning 2.0.0]: https://semver.org
[graphql-transport-ws]: https://github.com/enisdenjo/graphql-ws/blob/v5.14.0/PROTOCOL.md
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
2 changes: 1 addition & 1 deletion juniper_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "juniper_actix"
version = "0.5.0"
edition = "2021"
rust-version = "1.73"
rust-version = "1.75"
description = "`juniper` GraphQL integration with `actix-web`."
license = "BSD-2-Clause"
authors = [
Expand Down

0 comments on commit bba5c62

Please sign in to comment.