Commit Graph

3720 Commits

Author SHA1 Message Date
Andrea Mah
a5a0752d08 bump vscode version to 1.82 (#189114) 2023-07-28 01:26:47 +01:00
Christof Marti
51a55c021f Update to @vscode/proxy-agent 0.17.2 2023-07-27 19:38:49 +02:00
Robo
6d355a1ed5 chore: update electron@22.3.18 (#189049)
* chore: update electron@22.3.18

* chore: bump distro
2023-07-27 15:22:42 +01:00
Peng Lyu
da545194b3 Update distro (#188977)
Update distro for auto closing
2023-07-26 21:50:47 +01:00
Alex Ross
e206774d7c Bump distro 2023-07-25 16:09:57 +02:00
Connor Peet
f9db237986 chore: bump distro for api proposals (#188731) 2023-07-25 00:51:52 +01:00
Daniel Imms
8d0e9d87aa Update distro 2023-07-24 11:24:50 -07:00
Daniel Imms
ce2579718d Revert "chore: bump node-pty@1.1.0-beta3"
This reverts commit 5083bb50a5.

This update caused macOS task integration tests to consistently fail.
2023-07-24 10:14:32 -07:00
deepak1556
5083bb50a5 chore: bump node-pty@1.1.0-beta3 2023-07-24 19:48:52 +09:00
Christof Marti
cb0f0efbcc Remember when ticket was requested (#187456) 2023-07-20 18:34:07 +02:00
Peng Lyu
f72b7b1aa8 Update distro (#188336)
update distro
2023-07-20 07:19:45 +02:00
Christof Marti
6ae441b56f Kerberos auth for proxies (#188130) 2023-07-19 20:11:00 +02:00
Robo
53e7651c52 chore: update electron@22.3.17 (#188272)
* chore: update electron@22.3.17

* chore: bump distro
2023-07-19 08:30:17 -07:00
Matt Bierner
5bd12ecd7c Pick up latest TS for building VS Code (#188220) 2023-07-19 02:03:31 +02:00
Christof Marti
35573c42a5 Update to @vscode/proxy-agent 0.16.0 2023-07-17 12:10:25 +02:00
João Moreno
d40162dd41 update distro (#187830) 2023-07-13 15:36:14 +02:00
Matt Bierner
e0e8ca87f3 Pick up latest TS for building VS code (#187751) 2023-07-12 13:51:53 -07:00
Connor Peet
ef8b1483fc build: use new cli patch method (#187629) 2023-07-11 13:47:08 -07:00
Daniel Imms
9f5cd8e693 xterm@5.3.0-beta.7
Fixes #184894
2023-07-11 07:19:10 -07:00
Matt Bierner
a0208c89df Pick up latest TS nightly for building VS Code (#187500) 2023-07-10 12:56:28 -07:00
João Moreno
0917209e9a Always publish build artifacts, if built (#187134)
* always publish build artifacts, if built

fixes #187122

* fix windows build

* fix builds

* fix

* more fixes

* further debug

* fix yarn

* remove debug

* remove 7zip dependency

* fix snap
2023-07-07 11:45:35 -07:00
Christof Marti
e1338bd060 Update to @vscode/proxy-agent 0.15.0 2023-07-07 19:34:37 +02:00
Tyler James Leonhardt
89229f752f bump distro (#186950) 2023-07-04 00:42:03 +02:00
Benjamin Pasero
329cfd3999 🆙 graceful-fs@4.2.11 (#186713)
* 🆙 `graceful-fs@4.2.11`

* also update remote
2023-06-30 13:32:34 +02:00
Benjamin Pasero
804b56bbc6 Please update native-is-elevated package (fix #186606) (#186715)
native-Please update native-is-elevated package (fix #186606)
2023-06-30 12:38:31 +02:00
Alex Ross
032b14c3ff bump version (#186703) 2023-06-30 10:31:46 +02:00
Andrea Mah
45b31e9a87 ripgrep 1.15.4->1.15.5 (#186243) 2023-06-27 10:05:52 +09:00
meganrogge
1612a1f1b8 update distro for June endgame 2023-06-26 13:20:28 -07:00
Robo
9cdd289db0 chore: update node checksums (#186181)
* chore: update node checksums

* chore: bump distro
2023-06-26 18:20:59 +02:00
Johannes Rieken
06197f020d joh/tsec update (#185987)
* chore - update tsec

* update tsec, tweak exemptions 🤔
2023-06-23 16:49:27 +02:00
Robo
6067bb4ebe chore: bump electron@22.3.14 (#185983)
* chore: bump electron@22.3.14

* chore: bump distro
2023-06-23 15:43:02 +02:00
Johannes
8f4b627c1f Merge branch 'main' into joh/dark-lizard 2023-06-23 12:20:27 +02:00
Alex Ross
e63de5d987 Bump distro (#185850) 2023-06-22 11:36:01 +02:00
Karthik Nadig
7a00249cb1 Merge pull request #185697 from microsoft/karthiknadigupdate-distro
Updating distro
2023-06-21 11:17:14 -07:00
Matt Bierner
4db4ae5f98 Pick up latest TS for building VS Code (#185797) 2023-06-21 20:08:26 +02:00
Connor Peet
2138622b04 build: add watch/compile tasks for CLI (#182344)
* build: add watch/compile tasks for CLI

I spent time this morning working on the 'developer experience' of the
CLI in vscode, mainly getting the CLI to cross-compile chasing our
initial idea of having it auto-build in a devcontainer.

After some effort and disabling tunnels connections (to avoid having to
pull in OpenSSL which is a huge pain to cross compile), I was able to
get it to cross-compile from Linux to Windows, using the mingw linker.
I could probably figure out how to get macOS working as well with more
effort. However, I'm not a big fan of this, effectively it's one more
'platform' of build we need to support and test.

I think a better approach is downloading the latest compiled CLI from
the update server instead, as needed. That's what this PR does. It just
places the CLI where it _would_ normally get compiled to by cargo; so
far we don't need to do anything special outside of that.
A notice is shown to users if this fallback happens.

* update from review
2023-06-20 14:34:11 -07:00
Karthik Nadig
38b400785e Updating distro to include more linter and formatter recommendation patterns
See : https://github.com/microsoft/vscode-distro/pull/724
2023-06-20 10:55:32 -07:00
Robo
4dac9b530d chore: bump electron@22.3.13 (#185687)
* chore: bump electron@22.3.13

* chore: bump distro
2023-06-20 18:55:16 +02:00
Raymond Zhao
111fb77051 Bump sqlite3 to 5.1.6-vscode (#185603) 2023-06-19 11:31:03 -07:00
Robo
4df3657b4e chore: add checksum for electron assets (#185568)
* chore: add checksum for electron assets

* chore: bump distro

* chore: add pdb checksums
2023-06-19 23:46:41 +09:00
Christof Marti
eeb87b3018 Load certificates in net.connect (#185098) 2023-06-19 14:13:15 +02:00
Robo
8fb5ea0142 feat: use custom tag instead of custom version for MS electron releases (#181309)
* feat: use custom tag instead of custom version for MS electron releases

* chore: bump @vscode/gulp-electron

* chore: move build id to .yarnrc

* chore: rename enableUNCAccessChecks => restrictUNCAccess

* chore: update electron@22.3.11

* chore: add build info to about dialog

* chore: simplify helper function

* chore: remove unused node.js checksums

* chore: bump nodejs internal version

* chore: bump distro

* fix: revert changes to sign.ts

* chore: bump distro
2023-06-17 03:03:35 +02:00
Daniel Imms
6287e1f583 Replace escape sequence logging with terminal log channel
Fixes #185349
2023-06-16 09:51:41 -07:00
Benjamin Pasero
518a183762 eng - add build version of node.js to .yarnrc (#185302)
* eng - add build version of node.js to `.yarnrc`

* 🆙 distro
2023-06-16 09:10:24 +02:00
Raymond Zhao
3170765bf7 Bump node-pty to 1.1.0-beta1 (#185273) 2023-06-15 14:02:55 -07:00
Raymond Zhao
53dddb17e0 Bump vscode/sqlite3 to 5.1.5-vscode (#185265) 2023-06-15 13:50:24 -07:00
Benjamin Pasero
e1d89c9e9d 🆙 distro (#185133) 2023-06-14 17:24:15 +02:00
Daniel Imms
b8fe761e22 Merge pull request #184942 from microsoft/tyriar/node-pty1
node-pty@1.0
2023-06-12 13:43:33 -07:00
Raymond Zhao
13e7d80fcd Bump windows-process-tree (#184759)
Fixes https://github.com/microsoft/vscode/issues/179697
2023-06-12 11:36:56 -07:00
Daniel Imms
ecb489bbb0 node-pty@1.0 2023-06-12 11:30:42 -07:00