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

chore(release): v2 #59

Merged
merged 96 commits into from
Jun 22, 2023
Merged

chore(release): v2 #59

merged 96 commits into from
Jun 22, 2023

Commits on Oct 1, 2020

  1. Fix offset ignored in typed array

    Fixes peerjs issue 715
    SnowyCoder committed Oct 1, 2020
    Configuration menu
    Copy the full SHA
    a25f2cc View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2020

  1. Fix serialization for undefined

    When serializing an object that contains `undefined` as a value,
    the current packer code incorrectly serializes the value as `null`
    (0xc0). `null` and `undefined` are not the same thing, and should
    not be serialized into the same binary representation.
    
    Strangely, the unpacker actually does support unpacking `undefined`
    values using the binary representation 0xc1.
    
    There was an old pull request (#4) that seems to address this along
    with a bunch of other seemingly unrelated changes. The GitHub UI
    seems to think that the PR was merged manually, but the code that
    fixes this issue never actually made it into the master branch as
    far as I can tell.
    
    Another option is to omit any keys with `undefined` values. This is
    what `JSON.stringify` does as `JSON` does not support `undefined`
    natively. When deserialized, the semantics are mostly correct, as
    accessing a key that doesn't exist will give you `undefined`. This
    is slightly more efficient, I suppose and maintain the exact same
    behavior between binarypack and JSON serialization which is a good
    thing. However, you can observe the difference with `Object.keys`,
    `Object.hasOwnProperty`, etc.
    chancancode committed Nov 3, 2020
    Configuration menu
    Copy the full SHA
    90e44fa View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. pack_string / unpack_string: handle chars above U+FFFF

    The code was assuming that they had UTF-8 length 6 instead of 4, causing
    a crash on any character above U+FFFF.
    
    Also handle unpaired surrogates correctly.
    divec committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    3c7eed6 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2022

  1. Merge pull request #10 from divec/unicode

    pack_string / unpack_string: handle chars above U+FFFF
    jonasgloning authored Dec 5, 2022
    Configuration menu
    Copy the full SHA
    aabbbc2 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2023

  1. Configuration menu
    Copy the full SHA
    ae4512f View commit details
    Browse the repository at this point in the history
  2. chore: upgrade lockfile version

    npm WARN old lockfile
    npm WARN old lockfile The package-lock.json file was created with an old version of npm,
    npm WARN old lockfile so supplemental metadata must be fetched from the registry.
    npm WARN old lockfile
    npm WARN old lockfile This is a one-time fix-up, please be patient...
    npm WARN old lockfile
    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    7c8fc62 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40e5e0e View commit details
    Browse the repository at this point in the history
  4. style: run prettier

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    76f2c50 View commit details
    Browse the repository at this point in the history
  5. test: convert to jest

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    ea2dcc7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    82e3d88 View commit details
    Browse the repository at this point in the history
  7. build: add parcel

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    b6fe95e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fa28d54 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b94ad0a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b0fecd8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7b876ea View commit details
    Browse the repository at this point in the history
  12. fix: empty TypedArray can now be packed

    refactor: typescript strict mode compliant
    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    3475f45 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    83af274 View commit details
    Browse the repository at this point in the history
  14. ci: drop node 14 tests

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    eef7018 View commit details
    Browse the repository at this point in the history
  15. ci: drop lints

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    7758e8d View commit details
    Browse the repository at this point in the history
  16. test: increase timeouts on large tests

    Githubs runners are slow
    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    17f53ce View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    115adc7 View commit details
    Browse the repository at this point in the history
  18. style: run prettier

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    b4b9a2f View commit details
    Browse the repository at this point in the history
  19. build: configure renovate (#12)

    * Add renovate.json
    
    * ci: configure renovate
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Jonas Gloning <[email protected]>
    renovate[bot] and jonasgloning authored Feb 17, 2023
    Configuration menu
    Copy the full SHA
    74863c8 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    026da28 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    ddc97cf View commit details
    Browse the repository at this point in the history
  22. test: dataviews

    jonasgloning committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    82f855f View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2023

  1. Configuration menu
    Copy the full SHA
    c6c803a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    174365a View commit details
    Browse the repository at this point in the history
  3. chore: update README

    jonasgloning committed Feb 19, 2023
    Configuration menu
    Copy the full SHA
    3c573f1 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Configuration menu
    Copy the full SHA
    c2c03f6 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2023

  1. Configuration menu
    Copy the full SHA
    ad70153 View commit details
    Browse the repository at this point in the history
  2. test: timeout should not be needed anymore

    new implementation is much faster
    jonasgloning committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    f707916 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    275c600 View commit details
    Browse the repository at this point in the history
  4. Revert "fix: undefined will stay undefined instead of null"

    Changing the encoding of `undefined` is a breaking change. 
    I am postponing this so we can bundle this with other breaking changes.
    It’s still a good idea to change this eventually.
    
    This reverts commit 83af274.
    jonasgloning committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    da49137 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    067ae4e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6641e22 View commit details
    Browse the repository at this point in the history
  7. feat: return ArrayBuffer instead of Blob

    ad70153 was not recognized by semantic-release
    
    BREAKING CHANGE: Return type of `pack` is now `ArrayBuffer`
    jonasgloning committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    6b70875 View commit details
    Browse the repository at this point in the history
  8. build: ignore CHANGELOG.md from formatting

    Semantic-release touches this file during release.
    jonasgloning committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    ff9a621 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. chore: Configure Mend Bolt for GitHub (#16)

    Welcome to [Mend Bolt for
    GitHub](https://github.com/apps/mend-bolt-for-github) (formerly
    WhiteSource). This is an onboarding PR to help you understand and
    configure settings before Mend starts scanning your repository for
    security vulnerabilities.
    
    :vertical_traffic_light: Mend Bolt for GitHub will start scanning your
    repository only once you merge this Pull Request. To disable Mend Bolt
    for GitHub, simply close this Pull Request.
    
    
    
    ---
    
    ### What to Expect
    
    This PR contains a '.whitesource' configuration file which can be
    customized to your needs. If no changes were applied to this file, Mend
    Bolt for GitHub will use the default configuration.
    
    Before merging this PR, Make sure the [Issues tab is
    enabled](https://docs.mend.io/bundle/community_tools/page/enabling_the__issues__tab_for_the_github_repository.html).
    Once you merge this PR, Mend Bolt for GitHub will scan your repository
    and create a GitHub Issue for every vulnerability detected in your
    repository.
    
    If you do not want a GitHub Issue to be created for each detected
    vulnerability, you can edit the '.whitesource' file and set the
    'minSeverityLevel' parameter to 'NONE'.
    
    ---
    
    :question: Got questions? Check out Mend Bolt for GitHub
    [docs](https://docs.mend.io/bundle/community_tools/page/mend_bolt_for_github.html).
    If you need any further assistance then you can also [request help
    here](https://whitesourcesoftware.force.com/CustomerCommunity/s).<!--
    <WHITESOURCE>{ "installationId": "34705231"}</WHITESOURCE> -->
    
    Co-authored-by: mend-bolt-for-github[bot] <42819689+mend-bolt-for-github[bot]@users.noreply.github.com>
    mend-bolt-for-github[bot] authored Feb 28, 2023
    Configuration menu
    Copy the full SHA
    6cd23f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Configuration menu
    Copy the full SHA
    48fc39f View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2023

  1. Configuration menu
    Copy the full SHA
    258136f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46bb9da View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b09ed86 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Configuration menu
    Copy the full SHA
    adf204e View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Configuration menu
    Copy the full SHA
    b2b493e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40ca506 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    82eeb47 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

  1. Configuration menu
    Copy the full SHA
    8c3b2e1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d728646 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2023

  1. Configuration menu
    Copy the full SHA
    30f7cf9 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2023

  1. Configuration menu
    Copy the full SHA
    bbe81b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d31770 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Configuration menu
    Copy the full SHA
    5b86ef4 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2023

  1. Configuration menu
    Copy the full SHA
    94e9ee1 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2023

  1. Configuration menu
    Copy the full SHA
    deaa100 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2023

  1. Configuration menu
    Copy the full SHA
    a08b231 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    b579487 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2023

  1. Configuration menu
    Copy the full SHA
    3bc5c81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    feafae2 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Configuration menu
    Copy the full SHA
    de184bb View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. Configuration menu
    Copy the full SHA
    8cd81e3 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2023

  1. Configuration menu
    Copy the full SHA
    eea6c7b View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. Configuration menu
    Copy the full SHA
    a74f367 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65d90cf View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2023

  1. Configuration menu
    Copy the full SHA
    c04cd6a View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. Configuration menu
    Copy the full SHA
    1d7e5d4 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2023

  1. Configuration menu
    Copy the full SHA
    534af07 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. Configuration menu
    Copy the full SHA
    e1e073e View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Configuration menu
    Copy the full SHA
    f715596 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. Configuration menu
    Copy the full SHA
    18a72a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66b0b4d View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    55f9cfa View commit details
    Browse the repository at this point in the history

Commits on May 20, 2023

  1. Configuration menu
    Copy the full SHA
    f18f429 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Configuration menu
    Copy the full SHA
    4628455 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Configuration menu
    Copy the full SHA
    968ced7 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Configuration menu
    Copy the full SHA
    9696205 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2023

  1. Configuration menu
    Copy the full SHA
    c011ef8 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2023

  1. Configuration menu
    Copy the full SHA
    ce39d29 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2023

  1. Configuration menu
    Copy the full SHA
    669f3bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c80aded View commit details
    Browse the repository at this point in the history

Commits on May 30, 2023

  1. Configuration menu
    Copy the full SHA
    83facb5 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Configuration menu
    Copy the full SHA
    70bb9ee View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. Configuration menu
    Copy the full SHA
    38a05b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c970f24 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2023

  1. Configuration menu
    Copy the full SHA
    40ae70d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c16bfc0 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2023

  1. Configuration menu
    Copy the full SHA
    d724cfb View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. Revert "chore: Configure Mend Bolt for GitHub (#16)"

    This reverts commit 6cd23f5.
    jonasgloning committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    9720ab6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02bb59a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ce9fe84 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2023

  1. Configuration menu
    Copy the full SHA
    353476e View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Configuration menu
    Copy the full SHA
    b0c38d7 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2023

  1. Configuration menu
    Copy the full SHA
    935acf9 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2023

  1. Configuration menu
    Copy the full SHA
    4c901d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94ff7fa View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2023

  1. Configuration menu
    Copy the full SHA
    dc737a6 View commit details
    Browse the repository at this point in the history