Skip to content

Commit fc9acb4

Browse files
authored
Merge branch 'main' into jsjoeio/refactor-open
2 parents 62c8358 + 113ad85 commit fc9acb4

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ jobs:
509509
fetch-depth: 0
510510

511511
- name: Run Trivy vulnerability scanner in repo mode
512-
uses: aquasecurity/trivy-action@df3fb7d00b594d641478ba45b867f5cbb32108be
512+
uses: aquasecurity/trivy-action@e27605859b9550f81ddd818eb816c8cb83cf9650
513513
with:
514514
scan-type: "fs"
515515
scan-ref: "."

.github/workflows/trivy-docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v3
5252

5353
- name: Run Trivy vulnerability scanner in image mode
54-
uses: aquasecurity/trivy-action@df3fb7d00b594d641478ba45b867f5cbb32108be
54+
uses: aquasecurity/trivy-action@e27605859b9550f81ddd818eb816c8cb83cf9650
5555
with:
5656
image-ref: "docker.io/codercom/code-server:latest"
5757
ignore-unfixed: true

docs/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ access it in the browser.
1414
- Preserve battery life when you're on the go; all intensive tasks run on your
1515
server
1616

17-
| 🔔 code-server is a free browser-based IDE while [Coder](https://coder.com/) is our enterprise developer workspace platform. For more information, visit [Coder.com](https://coder.com/docs/comparison)
18-
| ---
17+
> **Note**
18+
> To manage multiple IDEs, workspaces, and teams, see
19+
> our new project: [coder/coder](http://cdr.co/coder-github)
1920
2021
## Requirements
2122

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"limiter": "^1.1.5",
101101
"pem": "^1.14.2",
102102
"proxy-agent": "^5.0.0",
103-
"qs": "6.10.3",
103+
"qs": "6.10.5",
104104
"rotating-file-stream": "^3.0.0",
105105
"safe-buffer": "^5.1.1",
106106
"safe-compare": "^1.1.4",

test/unit/node/util.test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,12 @@ describe("isWsl", () => {
538538
})
539539
})
540540

541+
describe("open", () => {
542+
it("should throw an error if address is a string", async () => {
543+
const address = "localhost:3000"
544+
await expect(util.open(address)).rejects.toThrow("Cannot open socket paths")
545+
})
546+
})
541547
describe("constructOpenOptions", () => {
542548
it("should return options for darwin", () => {
543549
const platform: NodeJS.Platform | "wsl" = "darwin"

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -3513,10 +3513,10 @@ punycode@^2.1.0:
35133513
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
35143514
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
35153515

3516-
3517-
version "6.10.3"
3518-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e"
3519-
integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==
3516+
3517+
version "6.10.5"
3518+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4"
3519+
integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==
35203520
dependencies:
35213521
side-channel "^1.0.4"
35223522

0 commit comments

Comments
 (0)