-
-
Notifications
You must be signed in to change notification settings - Fork 23
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
Commits on Oct 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a25f2cc - Browse repository at this point
Copy the full SHA a25f2ccView commit details
Commits on Nov 3, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for 90e44fa - Browse repository at this point
Copy the full SHA 90e44faView commit details
Commits on Nov 23, 2022
-
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.
Configuration menu - View commit details
-
Copy full SHA for 3c7eed6 - Browse repository at this point
Copy the full SHA 3c7eed6View commit details
Commits on Dec 5, 2022
-
Merge pull request #10 from divec/unicode
pack_string / unpack_string: handle chars above U+FFFF
Configuration menu - View commit details
-
Copy full SHA for aabbbc2 - Browse repository at this point
Copy the full SHA aabbbc2View commit details
Commits on Feb 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ae4512f - Browse repository at this point
Copy the full SHA ae4512fView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 7c8fc62 - Browse repository at this point
Copy the full SHA 7c8fc62View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40e5e0e - Browse repository at this point
Copy the full SHA 40e5e0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 76f2c50 - Browse repository at this point
Copy the full SHA 76f2c50View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea2dcc7 - Browse repository at this point
Copy the full SHA ea2dcc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82e3d88 - Browse repository at this point
Copy the full SHA 82e3d88View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6fe95e - Browse repository at this point
Copy the full SHA b6fe95eView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa28d54 - Browse repository at this point
Copy the full SHA fa28d54View commit details -
Configuration menu - View commit details
-
Copy full SHA for b94ad0a - Browse repository at this point
Copy the full SHA b94ad0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0fecd8 - Browse repository at this point
Copy the full SHA b0fecd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b876ea - Browse repository at this point
Copy the full SHA 7b876eaView commit details -
fix: empty TypedArray can now be packed
refactor: typescript strict mode compliant
Configuration menu - View commit details
-
Copy full SHA for 3475f45 - Browse repository at this point
Copy the full SHA 3475f45View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83af274 - Browse repository at this point
Copy the full SHA 83af274View commit details -
Configuration menu - View commit details
-
Copy full SHA for eef7018 - Browse repository at this point
Copy the full SHA eef7018View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7758e8d - Browse repository at this point
Copy the full SHA 7758e8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17f53ce - Browse repository at this point
Copy the full SHA 17f53ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 115adc7 - Browse repository at this point
Copy the full SHA 115adc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4b9a2f - Browse repository at this point
Copy the full SHA b4b9a2fView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 74863c8 - Browse repository at this point
Copy the full SHA 74863c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 026da28 - Browse repository at this point
Copy the full SHA 026da28View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddc97cf - Browse repository at this point
Copy the full SHA ddc97cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 82f855f - Browse repository at this point
Copy the full SHA 82f855fView commit details
Commits on Feb 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c6c803a - Browse repository at this point
Copy the full SHA c6c803aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 174365a - Browse repository at this point
Copy the full SHA 174365aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c573f1 - Browse repository at this point
Copy the full SHA 3c573f1View commit details
Commits on Feb 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c2c03f6 - Browse repository at this point
Copy the full SHA c2c03f6View commit details
Commits on Feb 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ad70153 - Browse repository at this point
Copy the full SHA ad70153View commit details -
test: timeout should not be needed anymore
new implementation is much faster
Configuration menu - View commit details
-
Copy full SHA for f707916 - Browse repository at this point
Copy the full SHA f707916View commit details -
Configuration menu - View commit details
-
Copy full SHA for 275c600 - Browse repository at this point
Copy the full SHA 275c600View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for da49137 - Browse repository at this point
Copy the full SHA da49137View commit details -
Configuration menu - View commit details
-
Copy full SHA for 067ae4e - Browse repository at this point
Copy the full SHA 067ae4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6641e22 - Browse repository at this point
Copy the full SHA 6641e22View commit details -
feat: return
ArrayBuffer
instead ofBlob
ad70153 was not recognized by semantic-release BREAKING CHANGE: Return type of `pack` is now `ArrayBuffer`
Configuration menu - View commit details
-
Copy full SHA for 6b70875 - Browse repository at this point
Copy the full SHA 6b70875View commit details -
build: ignore CHANGELOG.md from formatting
Semantic-release touches this file during release.
Configuration menu - View commit details
-
Copy full SHA for ff9a621 - Browse repository at this point
Copy the full SHA ff9a621View commit details
Commits on Feb 28, 2023
-
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>
Configuration menu - View commit details
-
Copy full SHA for 6cd23f5 - Browse repository at this point
Copy the full SHA 6cd23f5View commit details
Commits on Mar 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 48fc39f - Browse repository at this point
Copy the full SHA 48fc39fView commit details
Commits on Mar 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 258136f - Browse repository at this point
Copy the full SHA 258136fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 46bb9da - Browse repository at this point
Copy the full SHA 46bb9daView commit details -
Configuration menu - View commit details
-
Copy full SHA for b09ed86 - Browse repository at this point
Copy the full SHA b09ed86View commit details
Commits on Mar 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for adf204e - Browse repository at this point
Copy the full SHA adf204eView commit details
Commits on Mar 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b2b493e - Browse repository at this point
Copy the full SHA b2b493eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40ca506 - Browse repository at this point
Copy the full SHA 40ca506View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82eeb47 - Browse repository at this point
Copy the full SHA 82eeb47View commit details
Commits on Apr 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8c3b2e1 - Browse repository at this point
Copy the full SHA 8c3b2e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d728646 - Browse repository at this point
Copy the full SHA d728646View commit details
Commits on Apr 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 30f7cf9 - Browse repository at this point
Copy the full SHA 30f7cf9View commit details
Commits on Apr 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for bbe81b7 - Browse repository at this point
Copy the full SHA bbe81b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d31770 - Browse repository at this point
Copy the full SHA 7d31770View commit details
Commits on Apr 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5b86ef4 - Browse repository at this point
Copy the full SHA 5b86ef4View commit details
Commits on Apr 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 94e9ee1 - Browse repository at this point
Copy the full SHA 94e9ee1View commit details
Commits on Apr 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for deaa100 - Browse repository at this point
Copy the full SHA deaa100View commit details
Commits on Apr 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a08b231 - Browse repository at this point
Copy the full SHA a08b231View commit details
Commits on Apr 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b579487 - Browse repository at this point
Copy the full SHA b579487View commit details
Commits on Apr 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3bc5c81 - Browse repository at this point
Copy the full SHA 3bc5c81View commit details -
Configuration menu - View commit details
-
Copy full SHA for feafae2 - Browse repository at this point
Copy the full SHA feafae2View commit details
Commits on Apr 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for de184bb - Browse repository at this point
Copy the full SHA de184bbView commit details
Commits on Apr 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8cd81e3 - Browse repository at this point
Copy the full SHA 8cd81e3View commit details
Commits on Apr 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for eea6c7b - Browse repository at this point
Copy the full SHA eea6c7bView commit details
Commits on Apr 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a74f367 - Browse repository at this point
Copy the full SHA a74f367View commit details -
Configuration menu - View commit details
-
Copy full SHA for 65d90cf - Browse repository at this point
Copy the full SHA 65d90cfView commit details
Commits on Apr 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c04cd6a - Browse repository at this point
Copy the full SHA c04cd6aView commit details
Commits on May 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1d7e5d4 - Browse repository at this point
Copy the full SHA 1d7e5d4View commit details
Commits on May 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 534af07 - Browse repository at this point
Copy the full SHA 534af07View commit details
Commits on May 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e1e073e - Browse repository at this point
Copy the full SHA e1e073eView commit details
Commits on May 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f715596 - Browse repository at this point
Copy the full SHA f715596View commit details
Commits on May 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 18a72a7 - Browse repository at this point
Copy the full SHA 18a72a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66b0b4d - Browse repository at this point
Copy the full SHA 66b0b4dView commit details
Commits on May 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 55f9cfa - Browse repository at this point
Copy the full SHA 55f9cfaView commit details
Commits on May 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f18f429 - Browse repository at this point
Copy the full SHA f18f429View commit details
Commits on May 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4628455 - Browse repository at this point
Copy the full SHA 4628455View commit details
Commits on May 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 968ced7 - Browse repository at this point
Copy the full SHA 968ced7View commit details
Commits on May 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9696205 - Browse repository at this point
Copy the full SHA 9696205View commit details
Commits on May 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c011ef8 - Browse repository at this point
Copy the full SHA c011ef8View commit details
Commits on May 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ce39d29 - Browse repository at this point
Copy the full SHA ce39d29View commit details
Commits on May 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 669f3bd - Browse repository at this point
Copy the full SHA 669f3bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for c80aded - Browse repository at this point
Copy the full SHA c80adedView commit details
Commits on May 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 83facb5 - Browse repository at this point
Copy the full SHA 83facb5View commit details
Commits on May 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 70bb9ee - Browse repository at this point
Copy the full SHA 70bb9eeView commit details
Commits on Jun 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 38a05b7 - Browse repository at this point
Copy the full SHA 38a05b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c970f24 - Browse repository at this point
Copy the full SHA c970f24View commit details
Commits on Jun 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 40ae70d - Browse repository at this point
Copy the full SHA 40ae70dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c16bfc0 - Browse repository at this point
Copy the full SHA c16bfc0View commit details
Commits on Jun 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d724cfb - Browse repository at this point
Copy the full SHA d724cfbView commit details
Commits on Jun 12, 2023
-
Revert "chore: Configure Mend Bolt for GitHub (#16)"
This reverts commit 6cd23f5.
Configuration menu - View commit details
-
Copy full SHA for 9720ab6 - Browse repository at this point
Copy the full SHA 9720ab6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02bb59a - Browse repository at this point
Copy the full SHA 02bb59aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce9fe84 - Browse repository at this point
Copy the full SHA ce9fe84View commit details
Commits on Jun 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 353476e - Browse repository at this point
Copy the full SHA 353476eView commit details
Commits on Jun 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b0c38d7 - Browse repository at this point
Copy the full SHA b0c38d7View commit details
Commits on Jun 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 935acf9 - Browse repository at this point
Copy the full SHA 935acf9View commit details
Commits on Jun 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4c901d1 - Browse repository at this point
Copy the full SHA 4c901d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94ff7fa - Browse repository at this point
Copy the full SHA 94ff7faView commit details
Commits on Jun 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for dc737a6 - Browse repository at this point
Copy the full SHA dc737a6View commit details