chore: version packages#2028
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
Collaborator
🎨 UI Review
This PR only touches Generated by Claude Code |
0ca07d1 to
1757cd4
Compare
1757cd4 to
b16611c
Compare
b16611c to
027dc72
Compare
027dc72 to
a1aecbc
Compare
a1aecbc to
a343496
Compare
a343496 to
202a8d9
Compare
8e9d47b to
436c13f
Compare
436c13f to
6540e06
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to dev, this PR will be updated.
Releases
@anticapture/authful@0.3.0
Minor Changes
#2032
f1fc962Thanks @pikonha! - Expose token names in Authful validation responses so Gateful usage metrics can count requests by tenant, token name, and route. Add Authful validation counters and Gateful circuit-breaker state metrics for monitoring dashboards.#2022
df56c8dThanks @PedroBinotto! - Support unbounded (rate-limit-exempt) tokens. A token withrateLimitPerMinset to0(the sentinel for any non-positive value) is now skipped entirely by Gateful's rate-limit middleware — it never touches Redis and is never throttled. Authful's mint endpoint accepts0accordingly (rateLimitPerMinvalidation relaxed from positive to non-negative).@anticapture/dashboard@2.8.0
Minor Changes
62064e7Thanks @Zeugh-eth! - Add Shutter DAO whitelabel governance frontend. Enables the whitelabel route for Shutter with its navy brand color, and adds Azorius (submitProposal) support to the proposal creation flow so Shutter proposals can be created alongside the existing OZ Governor path. The Execute button for Shutter proposals now only appears once the Azorius timelock has elapsed (statusPENDING_EXECUTION), instead of showing during the ~2-day timelock window where execution reverts on-chain.Patch Changes
#2030
95a976aThanks @pikonha! - Fix dashboard production build: stub Node'sfsmodule for browser bundles so Turbopack can bundle@shutter-network/shutter-cryptoused by Shutter offchain voting#2026
0743c45Thanks @pikonha! - Add route error boundaries with a recovery UI to DAO and whitelabel pages so a render error no longer blanks the whole page, and surface failed votes-table loads and pagination with a visible error and retry#2013
63142abThanks @brunod-e! - Fix voting on Shutter-encrypted offchain proposals (e.g. ENS Copeland elections). The vote choice is now Shutter-encrypted before submission, so the Snapshot sequencer no longer rejects encrypted-privacy proposals with "invalid choice".@anticapture/gateful@1.3.0
Minor Changes
#2032
f1fc962Thanks @pikonha! - Expose token names in Authful validation responses so Gateful usage metrics can count requests by tenant, token name, and route. Add Authful validation counters and Gateful circuit-breaker state metrics for monitoring dashboards.#2022
df56c8dThanks @PedroBinotto! - Support unbounded (rate-limit-exempt) tokens. A token withrateLimitPerMinset to0(the sentinel for any non-positive value) is now skipped entirely by Gateful's rate-limit middleware — it never touches Redis and is never throttled. Authful's mint endpoint accepts0accordingly (rateLimitPerMinvalidation relaxed from positive to non-negative).@anticapture/api@1.5.1
Patch Changes
#2029
1b9aef0Thanks @pikonha! - improve perfomance of the proposals endpoint#1979
2ea392eThanks @Zeugh-eth! - Fix Shutter (SHU) timelock period:Azorius.timelockPeriod()is 14400 blocks (~2 days), not zero. Corrects thetimelockDelayreported by the DAO endpoint, and surfaces the Azorius post-voting lifecycle in proposal status: passed proposals now reportQUEUEDduring the timelock window (whenexecuteProposalwould revert) andPENDING_EXECUTIONduring the execution window, instead ofSUCCEEDEDthroughout. Status filters forQUEUED/PENDING_EXECUTIONnow also match Azorius proposals.#2025
95b15e6Thanks @pikonha! - Fix SQL injection pattern in proposals-activity repository: proposal IDs in the getUserVotes IN clause are now bound parameters instead of string-interpolated raw SQL