This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-17
lines changed Expand file tree Collapse file tree 5 files changed +10
-17
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ A file browser for your workspace.
1414``` tf
1515module "filebrowser" {
1616 source = "registry.coder.com/modules/filebrowser/coder"
17- version = "1.0.2 "
17+ version = "1.0.3 "
1818 agent_id = coder_agent.example.id
1919}
2020```
@@ -28,7 +28,7 @@ module "filebrowser" {
2828``` tf
2929module "filebrowser" {
3030 source = "registry.coder.com/modules/filebrowser/coder"
31- version = "1.0.2 "
31+ version = "1.0.3 "
3232 agent_id = coder_agent.example.id
3333 folder = "/home/coder/project"
3434}
@@ -39,7 +39,7 @@ module "filebrowser" {
3939``` tf
4040module "filebrowser" {
4141 source = "registry.coder.com/modules/filebrowser/coder"
42- version = "1.0.2 "
42+ version = "1.0.3 "
4343 agent_id = coder_agent.example.id
4444 database_path = ".config/filebrowser.db"
4545}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ This module has a chance of conflicting with the user's dotfiles / the personali
1919``` tf
2020module "git-commit-signing" {
2121 source = "registry.coder.com/modules/git-commit-signing/coder"
22- version = "1.0.2 "
22+ version = "1.0.3 "
2323 agent_id = coder_agent.example.id
2424}
2525```
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This module adds a JetBrains Gateway Button to open any workspace with a single
1414``` tf
1515module "jetbrains_gateway" {
1616 source = "registry.coder.com/modules/jetbrains-gateway/coder"
17- version = "1.0.2 "
17+ version = "1.0.3 "
1818 agent_id = coder_agent.example.id
1919 agent_name = "example"
2020 folder = "/home/coder/example"
@@ -32,7 +32,7 @@ module "jetbrains_gateway" {
3232``` tf
3333module "jetbrains_gateway" {
3434 source = "registry.coder.com/modules/jetbrains-gateway/coder"
35- version = "1.0.2 "
35+ version = "1.0.3 "
3636 agent_id = coder_agent.example.id
3737 agent_name = "example"
3838 folder = "/home/coder/example"
Original file line number Diff line number Diff line change @@ -8,14 +8,7 @@ set -euo pipefail
88
99current_tag=$( git describe --tags --abbrev=0)
1010previous_tag=$( git describe --tags --abbrev=0 $current_tag ^)
11- mapfile -t changed_files < <( git diff --name-only " $previous_tag " " $current_tag " | xargs dirname | sort -u | grep -v ' ^\.' )
12-
13- changed_dirs=()
14- for file in $changed_files ; do
15- dir=$( dirname " $file " )
16- changed_dirs+=(" $dir " )
17- done
18- changed_dirs=($( printf " %s\n" " ${changed_dirs[@]} " | sort -u) )
11+ mapfile -t changed_dirs < <( git diff --name-only " $previous_tag " ..." $current_tag " -- ' :!**/README.md' ' :!**/*.test.ts' | xargs dirname | grep -v ' ^\.' | sort -u)
1912
2013LATEST_TAG=$( git describe --abbrev=0 --tags | sed ' s/^v//' ) || exit $?
2114
@@ -33,4 +26,4 @@ for dir in "${changed_dirs[@]}"; do
3326 }
3427 }' " $file " > " $tmpfile " && mv " $tmpfile " " $file "
3528 fi
36- done
29+ done
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/
1414``` tf
1515module "vscode-web" {
1616 source = "registry.coder.com/modules/vscode-web/coder"
17- version = "1.0.2 "
17+ version = "1.0.3 "
1818 agent_id = coder_agent.example.id
1919 accept_license = true
2020}
@@ -29,7 +29,7 @@ module "vscode-web" {
2929``` tf
3030module "vscode-web" {
3131 source = "registry.coder.com/modules/vscode-web/coder"
32- version = "1.0.2 "
32+ version = "1.0.3 "
3333 agent_id = coder_agent.example.id
3434 install_dir = "/home/coder/.vscode-web"
3535 folder = "/home/coder"
You can’t perform that action at this time.
0 commit comments