Skip to content

Commit 1766b32

Browse files
chore: version bumps patch
1 parent 6f70775 commit 1766b32

File tree

13 files changed

+55
-55
lines changed

13 files changed

+55
-55
lines changed

registry/anomaly/modules/tmux/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ up a default or custom tmux configuration with session save/restore capabilities
1515
```tf
1616
module "tmux" {
1717
source = "registry.coder.com/anomaly/tmux/coder"
18-
version = "1.0.1"
18+
version = "1.0.2"
1919
agent_id = coder_agent.example.id
2020
}
2121
```
@@ -39,7 +39,7 @@ module "tmux" {
3939
```tf
4040
module "tmux" {
4141
source = "registry.coder.com/anomaly/tmux/coder"
42-
version = "1.0.1"
42+
version = "1.0.2"
4343
agent_id = coder_agent.example.id
4444
tmux_config = "" # Optional: custom tmux.conf content
4545
save_interval = 1 # Optional: save interval in minutes
@@ -78,7 +78,7 @@ This module can provision multiple tmux sessions, each as a separate app in the
7878
```tf
7979
module "tmux" {
8080
source = "registry.coder.com/anomaly/tmux/coder"
81-
version = "1.0.1"
81+
version = "1.0.2"
8282
agent_id = var.agent_id
8383
sessions = ["default", "dev", "anomaly"]
8484
tmux_config = <<-EOT

registry/coder-labs/modules/archive/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module installs small, robust scripts in your workspace to create and extra
1414
module "archive" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder-labs/archive/coder"
17-
version = "0.0.1"
17+
version = "0.0.2"
1818
agent_id = coder_agent.example.id
1919
2020
paths = ["./projects", "./code"]
@@ -43,7 +43,7 @@ Basic example:
4343
module "archive" {
4444
count = data.coder_workspace.me.start_count
4545
source = "registry.coder.com/coder-labs/archive/coder"
46-
version = "0.0.1"
46+
version = "0.0.2"
4747
agent_id = coder_agent.example.id
4848
4949
# Paths to include in the archive (files or directories).
@@ -61,7 +61,7 @@ Customize compression and output:
6161
module "archive" {
6262
count = data.coder_workspace.me.start_count
6363
source = "registry.coder.com/coder-labs/archive/coder"
64-
version = "0.0.1"
64+
version = "0.0.2"
6565
agent_id = coder_agent.example.id
6666
6767
directory = "/"
@@ -78,7 +78,7 @@ Enable auto-archive on stop:
7878
module "archive" {
7979
count = data.coder_workspace.me.start_count
8080
source = "registry.coder.com/coder-labs/archive/coder"
81-
version = "0.0.1"
81+
version = "0.0.2"
8282
agent_id = coder_agent.example.id
8383
8484
# Creates /tmp/coder-archive.tar.gz of the users home directory (defaults).
@@ -92,7 +92,7 @@ Extract on start:
9292
module "archive" {
9393
count = data.coder_workspace.me.start_count
9494
source = "registry.coder.com/coder-labs/archive/coder"
95-
version = "0.0.1"
95+
version = "0.0.2"
9696
agent_id = coder_agent.example.id
9797
9898
# Where to look for the archive file to extract:

registry/coder/modules/code-server/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w
1414
module "code-server" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/code-server/coder"
17-
version = "1.3.1"
17+
version = "1.3.2"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -29,7 +29,7 @@ module "code-server" {
2929
module "code-server" {
3030
count = data.coder_workspace.me.start_count
3131
source = "registry.coder.com/coder/code-server/coder"
32-
version = "1.3.1"
32+
version = "1.3.2"
3333
agent_id = coder_agent.example.id
3434
install_version = "4.8.3"
3535
}
@@ -43,7 +43,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
4343
module "code-server" {
4444
count = data.coder_workspace.me.start_count
4545
source = "registry.coder.com/coder/code-server/coder"
46-
version = "1.3.1"
46+
version = "1.3.2"
4747
agent_id = coder_agent.example.id
4848
extensions = [
4949
"dracula-theme.theme-dracula"
@@ -61,7 +61,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
6161
module "code-server" {
6262
count = data.coder_workspace.me.start_count
6363
source = "registry.coder.com/coder/code-server/coder"
64-
version = "1.3.1"
64+
version = "1.3.2"
6565
agent_id = coder_agent.example.id
6666
extensions = ["dracula-theme.theme-dracula"]
6767
settings = {
@@ -78,7 +78,7 @@ Just run code-server in the background, don't fetch it from GitHub:
7878
module "code-server" {
7979
count = data.coder_workspace.me.start_count
8080
source = "registry.coder.com/coder/code-server/coder"
81-
version = "1.3.1"
81+
version = "1.3.2"
8282
agent_id = coder_agent.example.id
8383
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
8484
}
@@ -94,7 +94,7 @@ Run an existing copy of code-server if found, otherwise download from GitHub:
9494
module "code-server" {
9595
count = data.coder_workspace.me.start_count
9696
source = "registry.coder.com/coder/code-server/coder"
97-
version = "1.3.1"
97+
version = "1.3.2"
9898
agent_id = coder_agent.example.id
9999
use_cached = true
100100
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
@@ -107,7 +107,7 @@ Just run code-server in the background, don't fetch it from GitHub:
107107
module "code-server" {
108108
count = data.coder_workspace.me.start_count
109109
source = "registry.coder.com/coder/code-server/coder"
110-
version = "1.3.1"
110+
version = "1.3.2"
111111
agent_id = coder_agent.example.id
112112
offline = true
113113
}

registry/coder/modules/devcontainers-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The devcontainers-cli module provides an easy way to install [`@devcontainers/cl
1515
```tf
1616
module "devcontainers-cli" {
1717
source = "registry.coder.com/coder/devcontainers-cli/coder"
18-
version = "1.0.32"
18+
version = "1.0.33"
1919
agent_id = coder_agent.example.id
2020
}
2121
```

registry/coder/modules/dotfiles/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Under the hood, this module uses the [coder dotfiles](https://coder.com/docs/v2/
1818
module "dotfiles" {
1919
count = data.coder_workspace.me.start_count
2020
source = "registry.coder.com/coder/dotfiles/coder"
21-
version = "1.2.1"
21+
version = "1.2.2"
2222
agent_id = coder_agent.example.id
2323
}
2424
```
@@ -31,7 +31,7 @@ module "dotfiles" {
3131
module "dotfiles" {
3232
count = data.coder_workspace.me.start_count
3333
source = "registry.coder.com/coder/dotfiles/coder"
34-
version = "1.2.1"
34+
version = "1.2.2"
3535
agent_id = coder_agent.example.id
3636
}
3737
```
@@ -42,7 +42,7 @@ module "dotfiles" {
4242
module "dotfiles" {
4343
count = data.coder_workspace.me.start_count
4444
source = "registry.coder.com/coder/dotfiles/coder"
45-
version = "1.2.1"
45+
version = "1.2.2"
4646
agent_id = coder_agent.example.id
4747
user = "root"
4848
}
@@ -54,14 +54,14 @@ module "dotfiles" {
5454
module "dotfiles" {
5555
count = data.coder_workspace.me.start_count
5656
source = "registry.coder.com/coder/dotfiles/coder"
57-
version = "1.2.1"
57+
version = "1.2.2"
5858
agent_id = coder_agent.example.id
5959
}
6060
6161
module "dotfiles-root" {
6262
count = data.coder_workspace.me.start_count
6363
source = "registry.coder.com/coder/dotfiles/coder"
64-
version = "1.2.1"
64+
version = "1.2.2"
6565
agent_id = coder_agent.example.id
6666
user = "root"
6767
dotfiles_uri = module.dotfiles.dotfiles_uri
@@ -76,7 +76,7 @@ You can set a default dotfiles repository for all users by setting the `default_
7676
module "dotfiles" {
7777
count = data.coder_workspace.me.start_count
7878
source = "registry.coder.com/coder/dotfiles/coder"
79-
version = "1.2.1"
79+
version = "1.2.2"
8080
agent_id = coder_agent.example.id
8181
default_dotfiles_uri = "https://github.com/coder/dotfiles"
8282
}

registry/coder/modules/git-clone/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module allows you to automatically clone a repository by URL and skip if it
1414
module "git-clone" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/git-clone/coder"
17-
version = "1.2.0"
17+
version = "1.2.1"
1818
agent_id = coder_agent.example.id
1919
url = "https://github.com/coder/coder"
2020
}
@@ -28,7 +28,7 @@ module "git-clone" {
2828
module "git-clone" {
2929
count = data.coder_workspace.me.start_count
3030
source = "registry.coder.com/coder/git-clone/coder"
31-
version = "1.2.0"
31+
version = "1.2.1"
3232
agent_id = coder_agent.example.id
3333
url = "https://github.com/coder/coder"
3434
base_dir = "~/projects/coder"
@@ -43,7 +43,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov
4343
module "git-clone" {
4444
count = data.coder_workspace.me.start_count
4545
source = "registry.coder.com/coder/git-clone/coder"
46-
version = "1.2.0"
46+
version = "1.2.1"
4747
agent_id = coder_agent.example.id
4848
url = "https://github.com/coder/coder"
4949
}
@@ -69,7 +69,7 @@ data "coder_parameter" "git_repo" {
6969
module "git_clone" {
7070
count = data.coder_workspace.me.start_count
7171
source = "registry.coder.com/coder/git-clone/coder"
72-
version = "1.2.0"
72+
version = "1.2.1"
7373
agent_id = coder_agent.example.id
7474
url = data.coder_parameter.git_repo.value
7575
}
@@ -103,7 +103,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g
103103
module "git-clone" {
104104
count = data.coder_workspace.me.start_count
105105
source = "registry.coder.com/coder/git-clone/coder"
106-
version = "1.2.0"
106+
version = "1.2.1"
107107
agent_id = coder_agent.example.id
108108
url = "https://github.example.com/coder/coder/tree/feat/example"
109109
git_providers = {
@@ -122,7 +122,7 @@ To GitLab clone with a specific branch like `feat/example`
122122
module "git-clone" {
123123
count = data.coder_workspace.me.start_count
124124
source = "registry.coder.com/coder/git-clone/coder"
125-
version = "1.2.0"
125+
version = "1.2.1"
126126
agent_id = coder_agent.example.id
127127
url = "https://gitlab.com/coder/coder/-/tree/feat/example"
128128
}
@@ -134,7 +134,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com`
134134
module "git-clone" {
135135
count = data.coder_workspace.me.start_count
136136
source = "registry.coder.com/coder/git-clone/coder"
137-
version = "1.2.0"
137+
version = "1.2.1"
138138
agent_id = coder_agent.example.id
139139
url = "https://gitlab.example.com/coder/coder/-/tree/feat/example"
140140
git_providers = {
@@ -155,7 +155,7 @@ For example, to clone the `feat/example` branch:
155155
module "git-clone" {
156156
count = data.coder_workspace.me.start_count
157157
source = "registry.coder.com/coder/git-clone/coder"
158-
version = "1.2.0"
158+
version = "1.2.1"
159159
agent_id = coder_agent.example.id
160160
url = "https://github.com/coder/coder"
161161
branch_name = "feat/example"
@@ -173,7 +173,7 @@ For example, this will clone into the `~/projects/coder/coder-dev` folder:
173173
module "git-clone" {
174174
count = data.coder_workspace.me.start_count
175175
source = "registry.coder.com/coder/git-clone/coder"
176-
version = "1.2.0"
176+
version = "1.2.1"
177177
agent_id = coder_agent.example.id
178178
url = "https://github.com/coder/coder"
179179
folder_name = "coder-dev"
@@ -208,7 +208,7 @@ This is useful for running initialization tasks like installing dependencies or
208208
module "git-clone" {
209209
count = data.coder_workspace.me.start_count
210210
source = "registry.coder.com/coder/git-clone/coder"
211-
version = "1.2.0"
211+
version = "1.2.1"
212212
agent_id = coder_agent.example.id
213213
url = "https://github.com/coder/coder"
214214
post_clone_script = <<-EOT

registry/coder/modules/slackme/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the `slackme` command to your workspace that DMs you on Slack when your comm
1414
module "slackme" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/slackme/coder"
17-
version = "1.0.31"
17+
version = "1.0.32"
1818
agent_id = coder_agent.example.id
1919
auth_provider_id = "slack"
2020
}
@@ -74,7 +74,7 @@ slackme npm run long-build
7474
module "slackme" {
7575
count = data.coder_workspace.me.start_count
7676
source = "registry.coder.com/coder/slackme/coder"
77-
version = "1.0.31"
77+
version = "1.0.32"
7878
agent_id = coder_agent.example.id
7979
auth_provider_id = "slack"
8080
slack_message = <<EOF

registry/coder/modules/vault-github/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module lets you authenticate with [Hashicorp Vault](https://www.vaultprojec
1414
module "vault" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/vault-github/coder"
17-
version = "1.0.31"
17+
version = "1.0.32"
1818
agent_id = coder_agent.example.id
1919
vault_addr = "https://vault.example.com"
2020
}
@@ -46,7 +46,7 @@ To configure the Vault module, you must set up a Vault GitHub auth method. See t
4646
module "vault" {
4747
count = data.coder_workspace.me.start_count
4848
source = "registry.coder.com/coder/vault-github/coder"
49-
version = "1.0.31"
49+
version = "1.0.32"
5050
agent_id = coder_agent.example.id
5151
vault_addr = "https://vault.example.com"
5252
coder_github_auth_id = "my-github-auth-id"
@@ -59,7 +59,7 @@ module "vault" {
5959
module "vault" {
6060
count = data.coder_workspace.me.start_count
6161
source = "registry.coder.com/coder/vault-github/coder"
62-
version = "1.0.31"
62+
version = "1.0.32"
6363
agent_id = coder_agent.example.id
6464
vault_addr = "https://vault.example.com"
6565
coder_github_auth_id = "my-github-auth-id"
@@ -73,7 +73,7 @@ module "vault" {
7373
module "vault" {
7474
count = data.coder_workspace.me.start_count
7575
source = "registry.coder.com/coder/vault-github/coder"
76-
version = "1.0.31"
76+
version = "1.0.32"
7777
agent_id = coder_agent.example.id
7878
vault_addr = "https://vault.example.com"
7979
vault_cli_version = "1.15.0"

registry/coder/modules/vault-jwt/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module lets you authenticate with [Hashicorp Vault](https://www.vaultprojec
1414
module "vault" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/vault-jwt/coder"
17-
version = "1.1.1"
17+
version = "1.1.2"
1818
agent_id = coder_agent.example.id
1919
vault_addr = "https://vault.example.com"
2020
vault_jwt_role = "coder" # The Vault role to use for authentication
@@ -42,7 +42,7 @@ curl -H "X-Vault-Token: ${VAULT_TOKEN}" -X GET "${VAULT_ADDR}/v1/coder/secrets/d
4242
module "vault" {
4343
count = data.coder_workspace.me.start_count
4444
source = "registry.coder.com/coder/vault-jwt/coder"
45-
version = "1.1.1"
45+
version = "1.1.2"
4646
agent_id = coder_agent.example.id
4747
vault_addr = "https://vault.example.com"
4848
vault_jwt_auth_path = "oidc"
@@ -58,7 +58,7 @@ data "coder_workspace_owner" "me" {}
5858
module "vault" {
5959
count = data.coder_workspace.me.start_count
6060
source = "registry.coder.com/coder/vault-jwt/coder"
61-
version = "1.1.1"
61+
version = "1.1.2"
6262
agent_id = coder_agent.example.id
6363
vault_addr = "https://vault.example.com"
6464
vault_jwt_role = data.coder_workspace_owner.me.groups[0]
@@ -71,7 +71,7 @@ module "vault" {
7171
module "vault" {
7272
count = data.coder_workspace.me.start_count
7373
source = "registry.coder.com/coder/vault-jwt/coder"
74-
version = "1.1.1"
74+
version = "1.1.2"
7575
agent_id = coder_agent.example.id
7676
vault_addr = "https://vault.example.com"
7777
vault_jwt_role = "coder" # The Vault role to use for authentication
@@ -132,7 +132,7 @@ resource "jwt_signed_token" "vault" {
132132
module "vault" {
133133
count = data.coder_workspace.me.start_count
134134
source = "registry.coder.com/coder/vault-jwt/coder"
135-
version = "1.1.1"
135+
version = "1.1.2"
136136
agent_id = coder_agent.example.id
137137
vault_addr = "https://vault.example.com"
138138
vault_jwt_role = "coder" # The Vault role to use for authentication

0 commit comments

Comments
 (0)