This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree 5 files changed +10
-17
lines changed
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.
14
14
``` tf
15
15
module "filebrowser" {
16
16
source = "registry.coder.com/modules/filebrowser/coder"
17
- version = "1.0.2 "
17
+ version = "1.0.3 "
18
18
agent_id = coder_agent.example.id
19
19
}
20
20
```
@@ -28,7 +28,7 @@ module "filebrowser" {
28
28
``` tf
29
29
module "filebrowser" {
30
30
source = "registry.coder.com/modules/filebrowser/coder"
31
- version = "1.0.2 "
31
+ version = "1.0.3 "
32
32
agent_id = coder_agent.example.id
33
33
folder = "/home/coder/project"
34
34
}
@@ -39,7 +39,7 @@ module "filebrowser" {
39
39
``` tf
40
40
module "filebrowser" {
41
41
source = "registry.coder.com/modules/filebrowser/coder"
42
- version = "1.0.2 "
42
+ version = "1.0.3 "
43
43
agent_id = coder_agent.example.id
44
44
database_path = ".config/filebrowser.db"
45
45
}
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
19
19
``` tf
20
20
module "git-commit-signing" {
21
21
source = "registry.coder.com/modules/git-commit-signing/coder"
22
- version = "1.0.2 "
22
+ version = "1.0.3 "
23
23
agent_id = coder_agent.example.id
24
24
}
25
25
```
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
14
14
``` tf
15
15
module "jetbrains_gateway" {
16
16
source = "registry.coder.com/modules/jetbrains-gateway/coder"
17
- version = "1.0.2 "
17
+ version = "1.0.3 "
18
18
agent_id = coder_agent.example.id
19
19
agent_name = "example"
20
20
folder = "/home/coder/example"
@@ -32,7 +32,7 @@ module "jetbrains_gateway" {
32
32
``` tf
33
33
module "jetbrains_gateway" {
34
34
source = "registry.coder.com/modules/jetbrains-gateway/coder"
35
- version = "1.0.2 "
35
+ version = "1.0.3 "
36
36
agent_id = coder_agent.example.id
37
37
agent_name = "example"
38
38
folder = "/home/coder/example"
Original file line number Diff line number Diff line change @@ -8,14 +8,7 @@ set -euo pipefail
8
8
9
9
current_tag=$( git describe --tags --abbrev=0)
10
10
previous_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)
19
12
20
13
LATEST_TAG=$( git describe --abbrev=0 --tags | sed ' s/^v//' ) || exit $?
21
14
@@ -33,4 +26,4 @@ for dir in "${changed_dirs[@]}"; do
33
26
}
34
27
}' " $file " > " $tmpfile " && mv " $tmpfile " " $file "
35
28
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/
14
14
``` tf
15
15
module "vscode-web" {
16
16
source = "registry.coder.com/modules/vscode-web/coder"
17
- version = "1.0.2 "
17
+ version = "1.0.3 "
18
18
agent_id = coder_agent.example.id
19
19
accept_license = true
20
20
}
@@ -29,7 +29,7 @@ module "vscode-web" {
29
29
``` tf
30
30
module "vscode-web" {
31
31
source = "registry.coder.com/modules/vscode-web/coder"
32
- version = "1.0.2 "
32
+ version = "1.0.3 "
33
33
agent_id = coder_agent.example.id
34
34
install_dir = "/home/coder/.vscode-web"
35
35
folder = "/home/coder"
You can’t perform that action at this time.
0 commit comments