Skip to content

release: 4.9.0 #5772

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

Merged
merged 25 commits into from
Dec 6, 2022
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9694242
wip: changelog
jsjoeio Nov 10, 2022
17d4113
fixup
jsjoeio Nov 10, 2022
96b3c3e
Merge branch 'main' into release/v4.9.0
jsjoeio Nov 10, 2022
ccf882f
Merge branch 'main' into release/v4.9.0
jsjoeio Nov 10, 2022
9efbd2d
Merge branch 'main' into release/v4.9.0
jsjoeio Nov 30, 2022
fc4d2b5
fix: add +x to product.json in build-vscode
jsjoeio Dec 1, 2022
c9279cc
Merge branch 'main' into release/v4.9.0
jsjoeio Dec 1, 2022
130f52e
chore: increase timeout
jsjoeio Dec 1, 2022
0f66360
fix: keep product.json file permissions in release
jsjoeio Dec 2, 2022
f7db2a0
trigger ci
jsjoeio Dec 2, 2022
ace0910
chore: update package.json bust cache
jsjoeio Dec 2, 2022
2b32b10
fixup!: fix: keep product.json file permissions in release
jsjoeio Dec 2, 2022
956ed96
Revert "fix: add +x to product.json in build-vscode"
jsjoeio Dec 2, 2022
c761199
chore: pin ubuntu runner in build code-server
jsjoeio Dec 2, 2022
e701b74
chore: update prettierignore
jsjoeio Dec 2, 2022
0c7a60e
chore: add notes to changelog
jsjoeio Dec 2, 2022
40396cc
chore: use ubuntu-22.04 for e2e
jsjoeio Dec 2, 2022
60ab23f
chore: pin all jobs in build to ubuntu 20.04
jsjoeio Dec 5, 2022
292a63d
Merge branch 'main' into release/v4.9.0
jsjoeio Dec 5, 2022
73b61ec
feat(wrapper): add tests for isChild
jsjoeio Dec 5, 2022
8ed7498
fixup: include description ts-expect-error comment
jsjoeio Dec 6, 2022
a89d3e3
chore: update CHANGELOG
jsjoeio Dec 6, 2022
4a5ef4c
chore: update Helm chart
jsjoeio Dec 6, 2022
73faddd
fixup: use our childProcess
jsjoeio Dec 6, 2022
99033dd
Update CHANGELOG.md
jsjoeio Dec 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add +x to product.json in build-vscode
While testing a pre-release, there seems to be a bug with the file
permissions for `product.json`. Adding `chmod +x` to see if that fixes
it.
  • Loading branch information
jsjoeio committed Dec 1, 2022
commit fc4d2b532f41277d6b93243cd6bd2ba2434f80d6
2 changes: 2 additions & 0 deletions ci/build/build-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ main() {
EOF
) > product.json

chmod +x product.json

# Any platform here works since we will do our own packaging. We have to do
# this because we have an NPM package that could be installed on any platform.
# The correct platform dependencies and scripts will be installed as part of
Expand Down