Skip to content
Permalink
main
Switch branches/tags

Commits on Sep 9, 2022

  1. release: 4.7.0 (#5546)

    * docs: update MAINTAINING
    
    * refactor: use branch name in release-prep
    
    This makes a minor improvement to the `release-prep.sh` script to grab
    the version to update to from the branch name.
    
    * chore(release): bump version to 4.7.0
    
    * fixup: bump version
    
    * docs: use latest instead of version
    
    * fixup: bump Chart version
    
    * chore: update CHANGELOG
    
    * chore: add license to test package.json
    
    * chore: bump @coder/logging to 3.0.0
    
    * fix: change level to Warn
    jsjoeio committed Sep 9, 2022
  2. docs: update patch testing instructions (#5543)

    * docs: explain how to test exec-argv
    
    * docs: explain how to test telemetry patch
    jsjoeio committed Sep 9, 2022
  3. Update to 1.71 (#5535)

    * chore: update upstream code
    
    * update patches for vs 1.71.0
    
    the cli fix seems to be fixed in upstream, the telemtry patch requires (again) some fixing and adjustments.
    
    * add safari fix.
    
    * increase ci timeout
    
    Co-authored-by: Joe Previte <jjprevite@gmail.com>
    fritterhoff and jsjoeio committed Sep 9, 2022

Commits on Sep 7, 2022

  1. Fix deb install instructions: ${VERSION}_foo (#5542)

    The install instructions weren't copy-pastable: `$VERSION_foo` is the same as `${VERSION_foo}`, not `${VERSION}_foo`.
    
    ```sh
    $ VERSION=4.6.1
    $ curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
      0     9    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    curl: (22) The requested URL returned error: 404
    $ echo curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
    curl -fOL https://github.com/coder/code-server/releases/download/v4.6.1/code-server_.deb
    ```
    ssbr committed Sep 7, 2022

Commits on Sep 6, 2022

  1. chore(deps): update robinraju/release-downloader action to v1.5 (#5538)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] committed Sep 6, 2022
  2. fix(npm): use correct flags and update version for npm (#5533)

    * fix: update npm-postinstall.sh script
    
    Add --legacy-peer-deps to deal with weird npm issue with vscode
    dependencies.
    
    See: https://stackoverflow.com/a/66620869/3015595
    
    * fix: use npm in release-standalone
    
    * chore: update package.json
    
    * chore: bump plugin engine for tests
    jsjoeio committed Sep 6, 2022

Commits on Aug 31, 2022

  1. release: 4.6.1 (#5522)

    * chore(release): bump version to 4.6.1
    
    * chore: update reviewers in release-prep
    
    * chore: update CHANGELOG
    
    * chore: bump Helm chart
    jsjoeio committed Aug 31, 2022
  2. feat: add displayLang test (#5495)

    * feat(e2e): add language extension to setup
    
    This adds a slimmed-down version of the Spanish Language Pack and also
    adds a `languagepacks.json` to the e2e `workspaceDir` which allows use
    to run a test suite passing the `--locale es` flags to simulate a
    different display language.
    
    * feat: add e2e test for display language patch
    
    This tests loading code-server in Spanish using the `--locale` flag.
    
    * fixup!: use JSON.stringify for readability
    
    * fixup!: add comment about langaugepacks temp fix
    
    * fixup!: slim down translations
    
    * fixup!: slim down package.json for lang. ext
    jsjoeio committed Aug 31, 2022

Commits on Aug 30, 2022

  1. refactor: drop db migration patch (#5519)

    * refactor: remove database migration patch & test
    
    Drop migration code since it's been 6 months since 4.0.2 and we no
    longer need this.
    
    See: #5482 (comment)
    
    * chore: refresh patches
    jsjoeio committed Aug 30, 2022
  2. fix: propagate execArgv (#5510)

    * Use fork instead of spawn
    
    We no longer do in-place updating so no need for the spawn.  The
    advantage of a fork is that it preserves flags like --prof which you can
    use to profile code-server.
    
    Also I am not sure the comment about not being able to reload in place
    with fork was even true to begin with.
    
    * Refresh heartbeat patch
    
    Seems to have gotten out of date a little.
    
    * Propagate execArgv to extension host
    
    This will let us profile the extension host.
    code-asher committed Aug 30, 2022

Commits on Aug 29, 2022

Commits on Aug 23, 2022

  1. chore: fix npm publish logic (#5493)

    * chore: clean up logging in npm script
    
    * fix: catch error if npm version missing
    
    npm changed the way the `npm view` command handles missing versions.
    Before it exited with a non-error. Now it errors.
    
    Ref: npm/cli#5035
    
    This modifies the script logic to handle those new changes.
    jsjoeio committed Aug 23, 2022
  2. fix(deps): update dependency argon2 to ^0.29.0 (#5492)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Joe Previte <jjprevite@gmail.com>
    renovate[bot] and jsjoeio committed Aug 23, 2022
  3. Update publish.yaml (#5490)

    jsjoeio committed Aug 23, 2022
  4. Update CODEOWNERS (#5491)

    jsjoeio committed Aug 23, 2022

Commits on Aug 22, 2022

  1. chore: update code (#5485)

    Co-authored-by: Joe Previte <jjprevite@gmail.com>
    fritterhoff and jsjoeio committed Aug 22, 2022

Commits on Aug 19, 2022

  1. release: 4.6.0 (#5469)

    code-asher committed Aug 19, 2022
  2. refactor(ci): combine publish workflows (#5471)

    * refactor(ci): combine publish workflows
    
    * fixup! refactor(ci): combine publish workflows
    jsjoeio committed Aug 19, 2022

Commits on Aug 18, 2022

  1. feat(ci): add aur job to npm-brew.yaml (#5462)

    This adds a new job called aur which checkouts code-server-aur, updates
    the files with the new version then opens a PR into the repo.
    
    Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
    jsjoeio and repo-ranger[bot] committed Aug 18, 2022
  2. chore(deps): update aquasecurity/trivy-action digest to d63413b (#5473)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] committed Aug 18, 2022

Commits on Aug 17, 2022

  1. chore(deps): update aquasecurity/trivy-action digest to 1db49f5 (#5466)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] committed Aug 17, 2022
  2. chore: update Code to 1.70 (#5422)

    * Update upstream Code to 1.70
    
    * Update CSP hashes
    
    * Update comment on remote authority
    
    Also remove it from script-src since it is invalid anyway.
    
    * Use absolute path for disable download patch
    
    Just to keep it consistent with the other imports.  We initially added
    the patch like this so it was not part of the upgrade but might as well
    fix it now.
    
    * Fix inability to change language while code-server is running
    
    Co-authored-by: Asher <ash@coder.com>
    fritterhoff and code-asher committed Aug 17, 2022

Commits on Aug 16, 2022

  1. chore(deps): update aquasecurity/trivy-action digest to 12814ff (#5460)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] committed Aug 16, 2022

Commits on Aug 15, 2022

  1. release: 4.5.2 (#5447)

    code-asher committed Aug 15, 2022
  2. docs: add proxying to angular app (#5457)

    * docs(guide): add proxying to Angular app
    
    * fixup: formatting
    
    * fixup: formatting
    
    Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
    jsjoeio and repo-ranger[bot] committed Aug 15, 2022

Commits on Aug 14, 2022

  1. Sidebar icons (#5444)

    antonkor committed Aug 14, 2022

Commits on Aug 11, 2022

Older