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

feat: allow named types in unions #469

Merged
merged 24 commits into from
Sep 29, 2024
Merged

feat: allow named types in unions #469

merged 24 commits into from
Sep 29, 2024

Commits on Sep 11, 2024

  1. fix: allow named types in unions

    The Avro specification defines:
    
    > Unions may not contain more than one schema with the same type, except for the named types record, fixed and enum
    
    see https://avro.apache.org/docs/1.11.1/specification/#unions
    
    meaning that if a `record` type has a name, it is valid to mix multiple of them in a union, unwrapped.
    joscha committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    1e679a5 View commit details
    Browse the repository at this point in the history
  2. Update lib/types.js

    joscha committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    626ab67 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3d9efd5 View commit details
    Browse the repository at this point in the history
  4. Update lib/types.js

    joscha committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    ee6aecd View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    82a370b View commit details
    Browse the repository at this point in the history
  2. Revert "fix: allow named types in unions"

    This reverts commit 3d9efd5.
    joscha committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    6ca39f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19028d8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    87be2e3 View commit details
    Browse the repository at this point in the history
  5. fix: tests

    joscha committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    c3ac1b3 View commit details
    Browse the repository at this point in the history
  6. style: typo

    joscha committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    b21aee8 View commit details
    Browse the repository at this point in the history
  7. fix: duped buckets

    joscha committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    ad181b6 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    b540798 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    040aed7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    87faea2 View commit details
    Browse the repository at this point in the history
  4. changes as requested

    joscha committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    510d272 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2024

  1. Configuration menu
    Copy the full SHA
    f680244 View commit details
    Browse the repository at this point in the history
  2. refactor: callsToWrapUnions

    joscha committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    5ecec5e View commit details
    Browse the repository at this point in the history
  3. style: 80 cols

    joscha committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    52873d0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7629f6b View commit details
    Browse the repository at this point in the history
  5. style: remove comments

    joscha committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    c0ead8b View commit details
    Browse the repository at this point in the history
  6. docs: remove jsdoc

    joscha committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    0e6c4cd View commit details
    Browse the repository at this point in the history
  7. refactor: move out of class

    joscha committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    bd2c6dd View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. remove wrapping

    joscha committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    9f6eaff View commit details
    Browse the repository at this point in the history
  2. remove binding

    joscha committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    d6692e1 View commit details
    Browse the repository at this point in the history