-
Notifications
You must be signed in to change notification settings - Fork 7
Version Packages #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
oz-release-app
wants to merge
2
commits into
main
Choose a base branch
from
changeset-release/main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Version Packages #244
Conversation
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
46b762f to
5efd65a
Compare
Collaborator
|
Merge this only once the Role Manager UI tool is ready. |
251cc96 to
fbc8ecd
Compare
3 tasks
5c2c0ab to
38935f9
Compare
3 tasks
fe88544 to
97cd97b
Compare
47e492a to
7561580
Compare
63ee17c to
d74dafc
Compare
16b5cf0 to
d5e5638
Compare
ee9659a to
1acde45
Compare
2 tasks
1ad3b42 to
6cf6e46
Compare
f56f347 to
60c4d0a
Compare
90dc02f to
7aba512
Compare
b6583e7 to
4bca6ae
Compare
a34481c to
06741df
Compare
abc3ae1 to
28959e0
Compare
53e63c9 to
e00f7ca
Compare
23cfc77 to
11d4b20
Compare
cc785e0 to
56eb3fc
Compare
fd9af74 to
94bc4b4
Compare
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 the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@openzeppelin/[email protected]
Major Changes
#257
923e016Thanks @pasevin! - Refactor storage package to be React-first, app-agnostic, and easier to consume across apps.Highlights:
useLiveQuery(re-export),createLiveQueryHook,createCrudHook,createJsonFileIO,createRepositoryHook.DexieStoragenow uses@openzeppelin/ui-builder-utils(logger,generateId);createDexieDatabasehelper for versioned Dexie setup../reactsubpath).dexie-react-hooks; keepreactas a peer dependency.BREAKING CHANGES:
ContractUIStorage,contractUIStorage,useContractUIStorage,db, andContractUIRecord/ContractUIExportDatatypes.Migration (typical):
ContractUIStorage) and types into the app.createDexieDatabase.createRepositoryHook).Minor Changes
#258
4a496feThanks @pasevin! - AddKeyValueStoragebase class and renameDexieStoragetoEntityStorage.New features:
KeyValueStorage<V>: Base class for key-value stores using&keyprimary key schema. Includesset,get,getOrDefault,delete,has,keys,getAll,clear,count,setMany,getMany,deleteManymethods with configurable key length and value size limits.EntityStorage<T>: Renamed fromDexieStoragefor clarity. Now includes configurablemaxRecordSizeBytesoption (default 10MB) and quota error handling.isQuotaError()andwithQuotaHandling()exported for custom storage implementations.Improvements:
QuotaExceededErrorconsistently across browsers (including Safari iOS code 22).ContractUIStoragenow uses 50MB limit for large contract definitions.Migration:
DexieStorageimports withEntityStorage(same API).KeyValueStorageinstead of implementing custom logic.Patch Changes
bfbbf9b]:@openzeppelin/[email protected]
Minor Changes
#243
bfbbf9bThanks @pasevin! - Add Access Control and Ownable support for Stellar (Soroban) contracts@openzeppelin/ui-builder-adapter-stellar
AccessControlServiceimplementation with full support for OpenZeppelin Access Control and Ownable patternsgetAccessControlService()method onStellarAdapter@openzeppelin/ui-builder-types
AccessControlServiceinterface and related types (AccessControlCapabilities,OwnershipInfo,RoleAssignment,AccessSnapshot,HistoryEntry,OperationResult)getAccessControlService?()optional method toContractAdapterinterfaceBaseNetworkConfigwith optionalindexerUriandindexerWsUrifields for GraphQL endpoint configuration@openzeppelin/ui-builder-utils
validateSnapshot,serializeSnapshot,deserializeSnapshot,createEmptySnapshot,findRoleAssignment,compareSnapshots)isAccessControlError, error message extraction helpers)normalizeAddress,addressesEqual) for chain-agnostic address comparison#271
94bc4b4Thanks @pasevin! - feat(adapter-stellar): add two-step Ownable support with ledger-based expirationImplements OpenZeppelin Stellar Ownable two-step ownership transfer pattern:
New Features:
getOwnership()now returns ownership state (owned/pending/expired/renounced) with pending transfer detailstransferOwnership()supports expiration ledger parameter for two-step transfersacceptOwnership()allows pending owners to complete ownership transfergetCurrentLedger()helper to get current ledger sequence for expiration calculationvalidateExpirationLedger()validation helper for client-side expiration checkshasTwoStepOwnablecapability flag in feature detectionType Extensions:
OwnershipStatetype for ownership statesPendingOwnershipTransferinterface for pending transfer detailsOwnershipInfowithstateandpendingTransferfieldsAccessControlCapabilitieswithhasTwoStepOwnableflagIndexer Integration:
OWNERSHIP_TRANSFER_STARTEDevent type supportqueryPendingOwnershipTransfer()method to indexer clientNon-Functional:
Patch Changes
7561580,bfbbf9b,f911a9e,c0cb6d1,d74dafc,fbc8ecd,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Minor Changes
#270
56eb3fcThanks @pasevin! - AddNetworkSwitchManagercomponent anduseWalletReconnectionHandlerhook to react-core for reuse across applications.These additions enable other applications (like Role Manager) to share the same wallet network switching logic without duplicating code.
Patch Changes
7561580,bfbbf9b,f911a9e,c0cb6d1,d74dafc,fbc8ecd,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Minor Changes
#243
bfbbf9bThanks @pasevin! - Add Access Control and Ownable support for Stellar (Soroban) contracts@openzeppelin/ui-builder-adapter-stellar
AccessControlServiceimplementation with full support for OpenZeppelin Access Control and Ownable patternsgetAccessControlService()method onStellarAdapter@openzeppelin/ui-builder-types
AccessControlServiceinterface and related types (AccessControlCapabilities,OwnershipInfo,RoleAssignment,AccessSnapshot,HistoryEntry,OperationResult)getAccessControlService?()optional method toContractAdapterinterfaceBaseNetworkConfigwith optionalindexerUriandindexerWsUrifields for GraphQL endpoint configuration@openzeppelin/ui-builder-utils
validateSnapshot,serializeSnapshot,deserializeSnapshot,createEmptySnapshot,findRoleAssignment,compareSnapshots)isAccessControlError, error message extraction helpers)normalizeAddress,addressesEqual) for chain-agnostic address comparison#255
f9cf1c7Thanks @pasevin! - MoveEcosystemFeatureConfigandEcosystemInfointerfaces from builder registry to shared types package (@openzeppelin/ui-builder-types). This ensures consistent type definitions across all consumers and enables reuse in other applications like Role Manager.#271
94bc4b4Thanks @pasevin! - feat(adapter-stellar): add two-step Ownable support with ledger-based expirationImplements OpenZeppelin Stellar Ownable two-step ownership transfer pattern:
New Features:
getOwnership()now returns ownership state (owned/pending/expired/renounced) with pending transfer detailstransferOwnership()supports expiration ledger parameter for two-step transfersacceptOwnership()allows pending owners to complete ownership transfergetCurrentLedger()helper to get current ledger sequence for expiration calculationvalidateExpirationLedger()validation helper for client-side expiration checkshasTwoStepOwnablecapability flag in feature detectionType Extensions:
OwnershipStatetype for ownership statesPendingOwnershipTransferinterface for pending transfer detailsOwnershipInfowithstateandpendingTransferfieldsAccessControlCapabilitieswithhasTwoStepOwnableflagIndexer Integration:
OWNERSHIP_TRANSFER_STARTEDevent type supportqueryPendingOwnershipTransfer()method to indexer clientNon-Functional:
@openzeppelin/[email protected]
Minor Changes
#249
7561580Thanks @pasevin! - AddsubHeaderprop toSidebarLayoutto allow rendering content between the header and the scrollable area.#256
f911a9eThanks @pasevin! - AddNetworkIconandNetworkSelectorcomponents to the UI package for reuse across applications.NetworkIcon: Reusable component for rendering network icons based on ecosystem and iconComponentNetworkSelector: Generic dropdown selector component with search, ecosystem grouping, and network type badgesNetworkStatusBadgeandNetworkRowto useNetworkIconfor consistency#250
d74dafcThanks @pasevin! - Move Header component to UI package#246
fbc8ecdThanks @pasevin! - Add reusable sidebar components (SidebarButton, SidebarLayout, SidebarSection) to enable sidebar reuse across projectsPatch Changes
#254
c0cb6d1Thanks @pasevin! - FixAddressDisplayhover behavior: no reserved space when the copy button is hidden. The copy control now expands on hover/focus, removing the gray gap and right-side imbalance. Also adds a 2-second copy confirmation that swaps the copy icon for a green check.Updated dependencies [
bfbbf9b,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Minor Changes
#243
bfbbf9bThanks @pasevin! - Add Access Control and Ownable support for Stellar (Soroban) contracts@openzeppelin/ui-builder-adapter-stellar
AccessControlServiceimplementation with full support for OpenZeppelin Access Control and Ownable patternsgetAccessControlService()method onStellarAdapter@openzeppelin/ui-builder-types
AccessControlServiceinterface and related types (AccessControlCapabilities,OwnershipInfo,RoleAssignment,AccessSnapshot,HistoryEntry,OperationResult)getAccessControlService?()optional method toContractAdapterinterfaceBaseNetworkConfigwith optionalindexerUriandindexerWsUrifields for GraphQL endpoint configuration@openzeppelin/ui-builder-utils
validateSnapshot,serializeSnapshot,deserializeSnapshot,createEmptySnapshot,findRoleAssignment,compareSnapshots)isAccessControlError, error message extraction helpers)normalizeAddress,addressesEqual) for chain-agnostic address comparisonPatch Changes
bfbbf9b,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Patch Changes
7561580,bfbbf9b,f911a9e,c0cb6d1,d74dafc,56eb3fc,fbc8ecd,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Patch Changes
7561580,bfbbf9b,f911a9e,c0cb6d1,d74dafc,56eb3fc,fbc8ecd,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Patch Changes
bfbbf9b,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Patch Changes
7561580,bfbbf9b,f911a9e,c0cb6d1,d74dafc,fbc8ecd,f9cf1c7,94bc4b4]:@openzeppelin/[email protected]
Patch Changes
7561580,bfbbf9b,4a496fe,f911a9e,c0cb6d1,d74dafc,56eb3fc,fbc8ecd,f9cf1c7,94bc4b4,923e016]: