Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ module.exports = {
'sourceType': 'module'
},
'plugins': [
'@typescript-eslint'
'@typescript-eslint',
'@stylistic'
],
'rules': {
// '@typescript-eslint/class-name-casing': 'warn', https://github.com/typescript-eslint/typescript-eslint/issues/2077
'@typescript-eslint/member-delimiter-style': [
'@stylistic/member-delimiter-style': [
'warn',
{
'multiline': {
Expand All @@ -25,7 +26,7 @@ module.exports = {
}
}
],
'@typescript-eslint/semi': [
'semi': [
'warn',
'always'
],
Expand Down
34 changes: 28 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: daily
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "npm"
directory: "/"
groups:
all:
patterns:
- "*"
ignore:
- dependency-name: "@stylistic/eslint-plugin"
update-types: ["version-update:semver-major"] # stylistic 4 to avoid esm
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"] # Keep Node 18 compatibility
- dependency-name: "chai"
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
- dependency-name: "eslint"
update-types: ["version-update:semver-major"] # eslint 8 for `--rulesdir`
- dependency-name: "rimraf"
update-types: ["version-update:semver-major"] # rimraf 5 for Node 18 compatibility
- dependency-name: "tar"
update-types: ["version-update:semver-major"] # tar 6 for source compatibility
schedule:
interval: "weekly"
56 changes: 0 additions & 56 deletions .github/workflows/build-chat.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/publish-dev-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo "TGZ=devcontainers-cli-${VERSION}.tgz" | tee -a $GITHUB_ENV
echo "TGZ_UPLOAD=devcontainers-cli-${VERSION}-${GITHUB_SHA:0:8}.tgz" | tee -a $GITHUB_ENV
- name: Download TGZ
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe
uses: dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
with:
workflow: dev-containers.yml
workflow_conclusion: success
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Notable changes.

## March 2025

### [0.75.0]
- Fix: add check for missing FROM instructions in Dockerfile parsing (https://github.com/devcontainers/cli/pull/950)
- Update dependencies (https://github.com/devcontainers/cli/pull/954)

## February 2025

### [0.74.0]
Expand Down
55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@devcontainers/cli",
"description": "Dev Containers CLI",
"version": "0.74.0",
"version": "0.75.0",
"bin": {
"devcontainer": "devcontainer.js"
},
Expand Down Expand Up @@ -54,56 +54,57 @@
"scripts/updateUID.Dockerfile"
],
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/chalk": "^2.2.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/chai": "^5.2.0",
"@types/chalk": "^2.2.4",
"@types/follow-redirects": "^1.14.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.4",
"@types/mocha": "^10.0.10",
"@types/ncp": "^2.0.8",
"@types/node": "^18.15.3",
"@types/pull-stream": "^3.6.5",
"@types/node": "^18.19.75",
"@types/pull-stream": "^3.6.7",
"@types/recursive-readdir": "^2.2.4",
"@types/semver": "^7.5.5",
"@types/shell-quote": "^1.7.4",
"@types/tar": "^6.1.9",
"@types/semver": "^7.5.8",
"@types/shell-quote": "^1.7.5",
"@types/tar": "^6.1.13",
"@types/text-table": "^0.2.5",
"@types/yargs": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^6.11.0",
"chai": "^4.3.10",
"@typescript-eslint/parser": "^8.26.0",
"chai": "^4.5.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"esbuild": "^0.25.0",
"eslint": "^8.57.0",
"event-stream": "^4.0.1",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^9.0.1",
"mocha": "^10.2.0",
"mocha": "^11.1.0",
"npm-run-all": "^4.1.5",
"p-all": "^5.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-formatter": "^7.2.2",
"vinyl": "^3.0.0",
"vinyl-fs": "^4.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"follow-redirects": "^1.15.3",
"chalk": "^5.4.1",
"follow-redirects": "^1.15.9",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.2.0",
"jsonc-parser": "^3.3.1",
"ncp": "^2.0.0",
"node-pty": "^1.0.0",
"proxy-agent": "^6.3.1",
"proxy-agent": "^6.5.0",
"pull-stream": "^3.7.0",
"recursive-readdir": "^2.2.3",
"semver": "^7.5.4",
"shell-quote": "^1.8.1",
"semver": "^7.7.1",
"shell-quote": "^1.8.2",
"stream-to-pull-stream": "^1.7.3",
"tar": "^6.2.0",
"tar": "^6.2.1",
"text-table": "^0.2.0",
"vscode-uri": "^3.0.8",
"vscode-uri": "^3.1.0",
"yargs": "~17.7.2"
}
}
Loading