Skip to content

Commit

Permalink
Merge branch 'main' into igni/send_id_on_error
Browse files Browse the repository at this point in the history
  • Loading branch information
o0Ignition0o authored Jul 29, 2024
2 parents 8f31edf + 6bb812c commit c11d223
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 45 deletions.
15 changes: 4 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ workflows:
matrix:
parameters:
platform: [amd_macos]
requires:
requires:
- "Run cargo tests (stable rust on amd_macos)"

release:
Expand Down Expand Up @@ -95,10 +95,10 @@ workflows:
matrix:
parameters:
platform: [amd_macos]
requires:
requires:
- "Run cargo tests (stable rust on amd_macos)"
<<: *any_release

- publish_release:
name: Publish to crates.io and create a GitHub release
matrix:
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
platform: << parameters.platform >>
command: publish
- gh_release

check_for_github_action:
parameters:
platform:
Expand Down Expand Up @@ -296,13 +296,6 @@ commands:
- run:
name: Skip homebrew update
command: echo "HOMEBREW_NO_AUTO_UPDATE=1" >> $BASH_ENV
- run:
name: Install curl
# we need to override the system curl because of outdated CA certificates
# on the base macos image
command: |
brew install curl
echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> $BASH_ENV
- run:
name: Install CMake
command: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ jobs:
# run: curl https://sh.rustup.rs -sSf | sh -s -- -y

- name: Run cargo xtask
run: cargo xtask dist --debug
run: cargo xtask dist

- name: Run cargo build
run: cargo build -p harmonizer

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion harmonizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harmonizer"
version = "2.8.3"
version = "2.8.4"
authors = ["Apollo <[email protected]>"]
edition = "2018"
description = "Apollo Federation utility to compose a supergraph from subgraphs"
Expand Down
54 changes: 27 additions & 27 deletions harmonizer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions harmonizer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@apollo/harmonizer-2",
"private": true,
"version": "2.8.3",
"version": "2.8.4",
"description": "Apollo Federation Harmonizer JS Entrypoint",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -29,7 +29,7 @@
"npm": ">=7 <11"
},
"dependencies": {
"@apollo/composition": "2.8.3"
"@apollo/composition": "2.8.4"
},
"peerDependencies": {
"graphql": "^15.7.0 || ^16.0.0"
Expand Down
2 changes: 1 addition & 1 deletion supergraph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "supergraph"
version = "2.8.3"
version = "2.8.4"
edition = "2021"
publish = false

Expand Down

0 comments on commit c11d223

Please sign in to comment.