TBD54566975
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    1
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # tbdex versioning @plew , @moejangda ## protocol versioning We propose using major and minor versions _only_ (no patch) for the protocol itself and adding `protocol` as a required field to `resourceMetadata` and `messageMetadata`, respectively (TS types used as an example): ```typescript export type ResourceMetadata<T extends ResourceKind> = { /** The author's DID */ from: string /** the resource kind (e.g. Offering) */ kind: T /** the resource id */ id: string /** When the resource was created at. Expressed as ISO8601 */ createdAt: string /** When the resource was last updated. Expressed as ISO8601 */ updatedAt?: string /** Version of the protocol in use (x.x format) */ protocol: string } ``` ```typescript export type MessageMetadata<T extends MessageKind> = { /** The sender's DID */ from: string /** the recipient's DID */ to: string /** the message kind (e.g. rfq, quote) */ kind: T /** the message id */ id: string /** ID for an "exchange" of messages between Alice - PFI. Uses the id of the RFQ that initiated the exchange */ exchangeId: string /** Message creation time. Expressed as ISO8601 */ createdAt: string /** Version of the protocol in use (x.x format) */ protocol: string } ``` In addition, we may want to explore adding a `GET /pfi-protocol-versions` endpoint to the HTTP API spec. This would return an array of protocol versions that the PFI supports. ### anticipated changes #### protocol-wide - adding a net new message kind - required or optional message. Required would change the state machine of an exchange - message / resource removal - adding a new resource kind #### schema-specific - adding a field to a resource or schema (required or optional) - removing a field (required or optional) - updating data type of existing field - e.g. paymentDetails goes from being an object to an array #### http API - adding a new endpoint (required or optional) - removing an endpoint - changing the request/response for an existing endpoint ### when to bump All changes which result in either the client or the PFI being unable to correctly serialize/deserialze messages are considered breaking changes. Therefore, we will wait until a "version train" with sizable changes has accumulated to release a new version. We will maintain spec text for all versions that are supported, i.e protocol definition v1, protocol definition v2. All spec changes that are in flight can be, in the interim, allocated to the next version number, but we will finalize which features make the "train" at the point of officially releasing the next version. This way, protocol changes can be proposed independently of version release. tbdex spec versions are *generally* updated ahead of implementations; i.e the latest version of the spec may be released without a corresponding implementation being available. Implementations must state which version(s) of tbdex they support. ### client-server communication Supporting more than one version of the protocol necessarily introduces complexity. A problem to be tackled after we cut v1 will be to architect the SDKs in such a way that it's as easy as possible for PFIs and clients to communicate. Our initial thinking: ```mermaid sequenceDiagram autonumber participant A as Alice participant P as PFI A->>P: GET /pfi-protocol-versions P->>A: [2.0] A->>A: Instantiate TbdexHttpClientV2 A->>P: TbdexHttpClientV2.getOfferings() P->>A: [OfferingV2 {}] ``` SDKs will maintain versioned data models, servers, and clients for all supported versions. It'll be up to individual clients and PFIs which version(s) they want to implement. At the moment, it seems reasonable to maintain the last two versions of the protocol at any time. We can revisit this assumption after the release of v1. ## SDK versioning SDKs themselves follow semantic versioning. Each tbdex SDK will make the following packages available: 1. rollup, which exposes all individual packages 2. protocol, which contains the foundational data models 3. http-server, which implements the HTTP API spec and contains convenient functionality for PFIs wishing to operate on tbdex 4. http-client, which contains helper methods to construct and send tbdex messages for users seeking liquidity from PFIs Packages 2-4 are versioned and can be bumped independently. As the rollup contains all of the other packages, it may be bumped as a train, whenever a collection of its subpackages are tested and ready to be cohesively released together. Note that SDK semantic versioning is completely decoupled from the _protocol_ versions described above. For example, the JS SDK could be at v2.8.8 while the protocol is on v2. The major versions of the SDK will always be greater than or equal to the protocol version as all breaking changes will result in a major version bump of the SDKs.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully