Skip to content
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

[ci] Release #2753

Merged
merged 1 commit into from
Jan 21, 2025
Merged

[ci] Release #2753

merged 1 commit into from
Jan 21, 2025

Conversation

alber70g
Copy link
Member

@alber70g alber70g commented Dec 19, 2024

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

@kadena/[email protected]

Minor Changes

  • 35cad4d: We're introduced a number of deprecations to prepare to
    transition to kadindexer.io/graphql

    Changes and their resolution

    Changes without Alternative

     ✖ Field Block.target changed type from Decimal! to String!
     ✖ Field Block.weight changed type from Decimal! to String!
    

    These changes shouldn't impact anyone too much, as they're mostly internal

    Changes with a Resolution

     ✖ Field incrementedId was removed from object type Event
    

    We've removed this field, Event.orderIndex can be used to order events

    Other modifications

     ✖ Type MinerKey was removed
    

    We've simplified the schema by using FungibleAccount instead of MinerKey.

    Guards

    We've removed the Guard type and replaced it with IGuard to allow for more
    flexibility in the future. We also added KeysetGuard to represent the old
    Guard type.

    The IGuard type is a union of all the different types of guards that can be
    used in a Pact.

    Currently implemented guards are KeysetGuard and UserGuard.

    The IGuard has a field raw which can be used to retrieve any guard as a
    raw JSON object.

    They can be queried as such:

    guard {
      raw
      __typename
      ... on KeysetGuard {
        keys
        predicate
      }
      ... on UserGuard {
        fun
        args
      }
    }
     ✖ Field FungibleChainAccount.guard changed type from Guard! to IGuard!
     ✖ Type Guard was removed
     ✖ Field NonFungibleTokenBalance.guard changed type from Guard! to IGuard!
     ✔ Description A guard. Has values `keys`, `predicate` to provide backwards
      compatibility for `KeysetGuard`. on type IGuard has changed to A guard. This
      is a union of all the different types of guards that can be used in a pact.
     ✔ Deprecation reason on field IGuard.keys has changed from Use
      `... on KeysetGuard { keys predicate }` instead when working with Keysets to
      deprecated, use KeysetGuard.keys
     ✔ Directive deprecated was added to field IGuard.keys
     ✔ Deprecation reason on field IGuard.predicate has changed from Use
      `... on KeysetGuard { keys predicate }` instead when working with Keysets to
      deprecated, use KeysetGuard.predicate
     ✔ Directive deprecated was added to field IGuard.predicate
     ✔ Type RawGuard was added
     ✔ Type KeysetGuard was added
     ✔ Type UserGuard was added
    

    Default values

    We've added default values for arguments to a number of fields to make it
    easier to query the graph.

     ⚠ Default value [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
      17, 18, 19 ] was added to argument chainIds on field Query.blocksFromDepth
     ⚠ Default value [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
      17, 18, 19 ] was added to argument chainIds on field Query.blocksFromHeight
     ⚠ Default value [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
      17, 18, 19 ] was added to argument chainIds on field
      Query.completedBlockHeights
     ⚠ Default value coin was added to argument fungibleName on field
      Query.fungibleAccount
     ⚠ Default value coin was added to argument fungibleName on field
      Query.fungibleChainAccount
     ⚠ Default value [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
      17, 18, 19 ] was added to argument chainIds on field Subscription.newBlocks
     ⚠ Default value [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
      17, 18, 19 ] was added to argument chainIds on field
      Subscription.newBlocksFromDepth
    

    Query.fungibleChainAccounts

    We've introduced a new field Query.fungibleChainAccounts(chainIds: [String])
    to allow for querying multiple fungible chain accounts across chains.

     ✔ Field fungibleChainAccounts was added to object type Query
     ✔ Type for argument chainIds on field Subscription.newBlocksFromDepth changed
      from [String!]! to [String!]
    

    Deprecations and removals

    Various types had height and chainId which should've been retrieved from
    Block. We're planning to remove these fields and added deprecations.

     ✖ Type PositiveFloat was removed
     ✔ Field TransactionResult.height is deprecated
     ✔ Field TransactionResult.height has deprecation reason Use `block.height`
      instead.
     ✔ Directive deprecated was added to field TransactionResult.height
     ✔ Field TransactionResult.metadata is deprecated
     ✔ Field TransactionResult.metadata has deprecation reason Not used.
     ✔ Field TransactionResult.metadata changed type from String to String!
     ✔ Directive deprecated was added to field TransactionResult.metadata
     ✔  Field Transfer.blockHash is deprecated
     ✔  Field Transfer.blockHash has deprecation reason Use `block.hash` field
      instead.
     ✔  Field Transfer.chainId is deprecated
     ✔  Field Transfer.chainId has deprecation reason Use `block.chainId` field
      instead.
     ✔  Field Transfer.height is deprecated
     ✔  Field Transfer.height has deprecation reason Use `block.height` field
      instead.
    

@kadena/[email protected]

Patch Changes

  • ebc4e5c: fix the sizing of the compactdatatable

@kadena/[email protected]

Patch Changes

  • Updated dependencies [ebc4e5c]
    • @kadena/kode-ui\@0.20.1

@kadena/[email protected]

Patch Changes

  • @kadena/dev-wallet\@0.5.1

@kadena/[email protected]

Patch Changes

  • f87b1f7: Reordering columns to present the first column as the one to link to

    Remove toggling close of truncated content. Will always open so users can no
    select and copy

  • Updated dependencies [35cad4d]

  • Updated dependencies [ebc4e5c]

    • @kadena/graph\@2.1.0
    • @kadena/kode-ui\@0.20.1

@kadena/[email protected]

Patch Changes

  • Updated dependencies [35cad4d]
  • Updated dependencies [ebc4e5c]
    • @kadena/graph\@2.1.0
    • @kadena/kode-ui\@0.20.1

@kadena/[email protected]

Patch Changes

  • Updated dependencies [ebc4e5c]
    • @kadena/kode-ui\@0.20.1

@kadena/[email protected]

Patch Changes

  • Updated dependencies [35cad4d]
  • Updated dependencies [ebc4e5c]
    • @kadena/graph\@2.1.0
    • @kadena/kode-ui\@0.20.1

@kadena/[email protected]

Patch Changes

  • Updated dependencies [35cad4d]
  • Updated dependencies [ebc4e5c]
    • @kadena/graph\@2.1.0
    • @kadena/kode-ui\@0.20.1

[email protected]

Patch Changes

  • Updated dependencies [ebc4e5c]
    • @kadena/kode-ui\@0.20.1

Copy link

vercel bot commented Dec 19, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
alpha-docs ❌ Failed (Inspect) Jan 21, 2025 6:44pm
dev-wallet ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
explorer ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
kode-ui ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
marmalade-marketplace ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
proof-of-us ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
rwa-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm
tools ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 21, 2025 6:44pm

@alber70g alber70g force-pushed the changeset-release/main branch from 3fd6992 to f8af9e7 Compare December 19, 2024 10:43
@alber70g alber70g force-pushed the changeset-release/main branch from f8af9e7 to d56b1a4 Compare December 19, 2024 12:41
@alber70g alber70g force-pushed the changeset-release/main branch from 421e366 to 2b1b6f1 Compare January 14, 2025 21:41
@alber70g alber70g force-pushed the changeset-release/main branch from 2b1b6f1 to d73019d Compare January 15, 2025 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant