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

Bring v2 up to date with current changes on master #140

Open
wants to merge 47 commits into
base: v2
Choose a base branch
from

Commits on Nov 20, 2021

  1. 1.3.18

    dmonad committed Nov 20, 2021
    Configuration menu
    Copy the full SHA
    011a06f View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2021

  1. correct npx directive

    according to the [doc](https://docs.npmjs.com/cli/v8/commands/npx), npx needs package name rather than the binary name. so executing `npx y-websocket-server` would not download and run the server binary in `y-websocket`, it would download from [y-websocket-server](https://npmjs.com/package/y-websocket-server) instead, which could lead to remote arbitrage code execution.
    zhuangya committed Dec 30, 2021
    Configuration menu
    Copy the full SHA
    6b61bae View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

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

Commits on Mar 21, 2022

  1. implement connection-close & connecton-error event and add parameter …

    …for exponential backoff
    dmonad committed Mar 21, 2022
    Configuration menu
    Copy the full SHA
    4c4b244 View commit details
    Browse the repository at this point in the history
  2. Merge pull request yjs#91 from zhuangya/patch-1

    correct npx directive
    dmonad authored Mar 21, 2022
    Configuration menu
    Copy the full SHA
    57fba26 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    33c0021 View commit details
    Browse the repository at this point in the history
  4. 1.4.0

    dmonad committed Mar 21, 2022
    Configuration menu
    Copy the full SHA
    fc009dd View commit details
    Browse the repository at this point in the history
  5. add documentation

    dmonad committed Mar 21, 2022
    Configuration menu
    Copy the full SHA
    6fcabc5 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2022

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

    dmonad committed Apr 17, 2022
    Configuration menu
    Copy the full SHA
    313c38a View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

  1. Fixed: The memory leak problem that 'websocketprovider' cannot releas…

    …e because 'process' listens to' exit 'events and uses anonymous functions to contain' this'
    war1644 authored Apr 21, 2022
    Configuration menu
    Copy the full SHA
    73157ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request yjs#102 from war1644/master

    Master
    dmonad authored Apr 21, 2022
    Configuration menu
    Copy the full SHA
    d4f4a99 View commit details
    Browse the repository at this point in the history
  3. 1.4.2

    dmonad committed Apr 21, 2022
    Configuration menu
    Copy the full SHA
    cc6df43 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2022

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

    dmonad committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    f133fb2 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Configuration menu
    Copy the full SHA
    f02ed34 View commit details
    Browse the repository at this point in the history
  2. Merge pull request yjs#111 from lijie1129/refactor/resync

    Improve the judgment condition of WS connection status in resync
    dmonad authored Jun 26, 2022
    Configuration menu
    Copy the full SHA
    bfb9d30 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. remove vestigial mutex code

    Correct me if I'm wrong, but mutex/mux are no longer being used, right?
    broofa authored Aug 4, 2022
    Configuration menu
    Copy the full SHA
    c925c24 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. Merge pull request yjs#113 from broofa/patch-1

    remove vestigial mutex code
    dmonad authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    625a9d5 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. Update utils.js

    Added a comment to clarify why reply messages are not sent when their length is 1. Alternatively we could also create a function with a descriptive name of the check being performed,
    
    ```js
    function hasMessage(encoder) {
        return encoding.length(encoder) > 1;
    }
    ```
    
    The `if` statement would then look something like,
    
    ```js
    if (hasMessage(encoder)) {
        send(...);
    }
    ```
    
    Thoughts?
    aryzing authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    6415ca2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ee18c3 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2022

  1. fix: server.listen port

    himself65 authored Aug 18, 2022
    Configuration menu
    Copy the full SHA
    8fa06a4 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2022

  1. Merge pull request yjs#116 from Himself65/patch-1

    fix: `server.listen` port
    dmonad authored Aug 19, 2022
    Configuration menu
    Copy the full SHA
    2da70b3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request yjs#115 from aryzing/patch-2

    Export message type constants
    dmonad authored Aug 19, 2022
    Configuration menu
    Copy the full SHA
    aa43c0b View commit details
    Browse the repository at this point in the history
  3. Merge pull request yjs#114 from aryzing/patch-1

    Update utils.js
    dmonad authored Aug 19, 2022
    Configuration menu
    Copy the full SHA
    20c1ac2 View commit details
    Browse the repository at this point in the history
  4. lint

    dmonad committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    1d5d547 View commit details
    Browse the repository at this point in the history
  5. 1.4.4

    dmonad committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    37887ba View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

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

    dmonad committed Aug 31, 2022
    Configuration menu
    Copy the full SHA
    8e85c7f View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

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

Commits on Sep 9, 2022

  1. Configuration menu
    Copy the full SHA
    829a159 View commit details
    Browse the repository at this point in the history
  2. 1.4.5

    dmonad committed Sep 9, 2022
    Configuration menu
    Copy the full SHA
    da27b0b View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

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

Commits on Jan 1, 2023

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

Commits on Feb 22, 2023

  1. Configuration menu
    Copy the full SHA
    6c945d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request yjs#132 from kkeybbs/master

    Add server side transaction origin
    dmonad authored Feb 22, 2023
    Configuration menu
    Copy the full SHA
    312ac84 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Merge pull request yjs#121 from strdr4605/master

    fix: WebSocket is already in CLOSING or CLOSED state.
    dmonad authored Mar 2, 2023
    Configuration menu
    Copy the full SHA
    d22aecc View commit details
    Browse the repository at this point in the history
  2. cleanup

    dmonad committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    0b5279f View commit details
    Browse the repository at this point in the history
  3. 1.4.6

    dmonad committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    10f650c View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

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

Commits on Mar 11, 2023

  1. Merge pull request yjs#134 from Abdel-Monaam-Aouini/add-workflow

    feat: add worklows PR & master
    dmonad authored Mar 11, 2023
    Configuration menu
    Copy the full SHA
    c4c3d84 View commit details
    Browse the repository at this point in the history
  2. bump rollup

    dmonad committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    51b7052 View commit details
    Browse the repository at this point in the history
  3. upgrade typescript & lint

    dmonad committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    35be343 View commit details
    Browse the repository at this point in the history
  4. 1.5.0

    dmonad committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    61c2035 View commit details
    Browse the repository at this point in the history
  5. bump packages

    dmonad committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    5db415a View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. Configuration menu
    Copy the full SHA
    07123d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    37d7590 View commit details
    Browse the repository at this point in the history