Skip to content

Commit 1b21321

Browse files
github-actions[bot]apollo-bot2ApolloBot2
authored
Automated PR for harmonizer release 2.6.3 (#440)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action --------- Co-authored-by: apollo-bot2 <[email protected]> Co-authored-by: ApolloBot2 <[email protected]>
1 parent 4c89f5c commit 1b21321

File tree

6 files changed

+36
-37
lines changed

6 files changed

+36
-37
lines changed

federation-2/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

federation-2/harmonizer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harmonizer"
3-
version = "2.6.2"
3+
version = "2.6.3"
44
authors = ["Apollo <[email protected]>"]
55
edition = "2018"
66
description = "Apollo Federation utility to compose a supergraph from subgraphs"

federation-2/harmonizer/package-lock.json

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

federation-2/harmonizer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@apollo/harmonizer-2",
33
"private": true,
4-
"version": "2.6.2",
4+
"version": "2.6.3",
55
"description": "Apollo Federation Harmonizer JS Entrypoint",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
@@ -29,7 +29,7 @@
2929
"npm": ">=7 <10"
3030
},
3131
"dependencies": {
32-
"@apollo/composition": "2.6.2"
32+
"@apollo/composition": "2.6.3"
3333
},
3434
"peerDependencies": {
3535
"graphql": "^15.7.0 || ^16.0.0"

federation-2/supergraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "supergraph"
3-
version = "2.6.2"
3+
version = "2.6.3"
44
edition = "2021"
55
publish = false
66

xtask/src/utils.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
use anyhow::{anyhow, Context, Result};
1+
use anyhow::{anyhow, Result};
22
use camino::Utf8PathBuf;
33
use lazy_static::lazy_static;
44

5-
use std::{convert::TryFrom, env, str};
5+
use std::{convert::From, env, str};
66

77
const MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");
88

@@ -47,8 +47,7 @@ pub(crate) fn get_workspace_roots() -> Result<Vec<Utf8PathBuf>> {
4747
}
4848

4949
fn project_root() -> Result<Utf8PathBuf> {
50-
let manifest_dir = Utf8PathBuf::try_from(MANIFEST_DIR)
51-
.with_context(|| "Could not find the root directory.")?;
50+
let manifest_dir = Utf8PathBuf::from(MANIFEST_DIR);
5251
let root_dir = manifest_dir
5352
.ancestors()
5453
.nth(1)

0 commit comments

Comments
 (0)