Skip to content

Commit

Permalink
Merge pull request #90 from celo-org/changeset-release/main
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
soloseng authored Oct 13, 2023
2 parents a94787f + d2481f2 commit 9d36efd
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 28 deletions.
2 changes: 0 additions & 2 deletions .changeset/angry-beans-laugh.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/calm-carrots-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forty-houses-own.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/late-peas-attend.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/little-brooms-argue.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/seven-garlics-act.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/slow-hats-drive.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/unlucky-scissors-wave.md

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/social-connect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
- run: yarn run lint
- name: Dump GitHub context
# Use to debug github event and check user ids
if: false
if: true
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
Expand All @@ -166,17 +166,17 @@ jobs:
uses: peter-evans/find-comment@v2
id: fc
# Skip if author is github-bot from celo-org
if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'celo-org'
if: github.event_name == 'pull_request' && github.event.pull_request.user.type != 'Bot'
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Changeset detected
comment-author: changeset-bot[bot]
- name: Fail if Changeset commit not found
# Skip if author is github-bot from celo-org
if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'celo-org'
if: github.event_name == 'pull_request' && github.event.pull_request.user.type != 'Bot'
run: |
if ${{ steps.fc.outputs.comment-id == 0 }}; then
echo "Error: No Changeset Found. You create an empty changeset with `yarn cs add --empty`" && exit 1
echo "Error: No Changeset Found. You create an empty changeset with 'yarn cs add --empty'" && exit 1
else
echo "Changeset Found"
fi
Expand Down
11 changes: 11 additions & 0 deletions packages/phone-number-privacy/combiner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @celo/phone-number-privacy-combiner

## 3.1.0

### Minor Changes

- 27b3ee6: Added a proxy functionality to the gen1 combiner, allowing it to forward any requests received to the gen2 combiner

### Patch Changes

- baee530: Removed performance observer metric for combiner endpoint latency.
4 changes: 2 additions & 2 deletions packages/phone-number-privacy/combiner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/phone-number-privacy-combiner",
"version": "3.0.1",
"version": "3.1.0",
"private": true,
"description": "Orchestrates and combines threshold signatures for use in ODIS",
"author": "Celo",
Expand Down Expand Up @@ -67,7 +67,7 @@
"@celo/utils": "^5.0.4",
"@celo/phone-utils": "^5.0.4",
"@types/express": "^4.17.6",
"@types/http-proxy":"^1.17.11",
"@types/http-proxy": "^1.17.11",
"@types/stream-array": "1.1.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^7.0.3",
Expand Down

0 comments on commit 9d36efd

Please sign in to comment.