Skip to content

Commit 964b0f3

Browse files
chore: update repository URLs for redis-developer org (#499)
- Update all GitHub URLs from joshrotenberg/redisctl to redis-developer/redisctl - Update Docker image references to redis-developer/redisctl - Update CLAUDE.md to reflect completed org transfer - Remove outdated v1.0 transition plan (transfer complete)
1 parent a837782 commit 964b0f3

File tree

22 files changed

+70
-70
lines changed

22 files changed

+70
-70
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
REGISTRY: docker.io
12-
IMAGE_NAME: joshrotenberg/redisctl
12+
IMAGE_NAME: redis-developer/redisctl
1313

1414
jobs:
1515
docker:
@@ -102,6 +102,6 @@ jobs:
102102
with:
103103
username: ${{ secrets.DOCKERHUB_USERNAME }}
104104
password: ${{ secrets.DOCKERHUB_TOKEN }}
105-
repository: joshrotenberg/redisctl
105+
repository: redis-developer/redisctl
106106
readme-filepath: ./README.md
107107
short-description: "Unified CLI for Redis Cloud and Redis Enterprise management"

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ jobs:
104104
--exclude-path target
105105
--exclude-path node_modules
106106
--exclude-path .git
107-
--exclude "https://github.com/joshrotenberg/redisctl/pull/.*"
108-
--exclude "https://github.com/joshrotenberg/redisctl/issues/.*"
107+
--exclude "https://github.com/redis-developer/redisctl/pull/.*"
108+
--exclude "https://github.com/redis-developer/redisctl/issues/.*"
109109
.
110110
continue-on-error: true # Don't fail CI for broken external links
111111

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Please be respectful and constructive in all interactions.
1010

1111
### Finding Good First Issues
1212

13-
New to the project? Look for issues labeled [`good first issue`](https://github.com/joshrotenberg/redisctl/labels/good%20first%20issue).
13+
New to the project? Look for issues labeled [`good first issue`](https://github.com/redis-developer/redisctl/labels/good%20first%20issue).
1414

1515
These issues are:
1616
- Well-defined with clear acceptance criteria
@@ -180,8 +180,8 @@ We use a manual release workflow with semantic versioning:
180180

181181
## Getting Help
182182

183-
- Open a [Discussion](https://github.com/joshrotenberg/redisctl/discussions) for questions
184-
- Check existing [Issues](https://github.com/joshrotenberg/redisctl/issues)
183+
- Open a [Discussion](https://github.com/redis-developer/redisctl/discussions) for questions
184+
- Check existing [Issues](https://github.com/redis-developer/redisctl/issues)
185185
- Review [Documentation](https://docs.rs/redisctl)
186186

187187
## Recognition

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ edition = "2024"
2323
rust-version = "1.89"
2424
authors = ["Josh Rotenberg <[email protected]>"]
2525
license = "MIT OR Apache-2.0"
26-
repository = "https://github.com/joshrotenberg/redisctl"
27-
homepage = "https://github.com/joshrotenberg/redisctl"
26+
repository = "https://github.com/redis-developer/redisctl"
27+
homepage = "https://github.com/redis-developer/redisctl"
2828
documentation = "https://docs.rs/redisctl"
2929

3030
# Config for 'dist'

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
55
[![Crates.io](https://img.shields.io/crates/v/redisctl.svg)](https://crates.io/crates/redisctl)
66
[![Documentation](https://docs.rs/redisctl/badge.svg)](https://docs.rs/redisctl)
7-
[![CI](https://github.com/joshrotenberg/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/joshrotenberg/redisctl/actions/workflows/ci.yml)
8-
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/joshrotenberg/redisctl#license)
7+
[![CI](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml)
8+
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/redis-developer/redisctl#license)
99

1010
```bash
1111
# Create a Redis Cloud subscription with one command
@@ -47,7 +47,7 @@ brew install joshrotenberg/brew/redisctl
4747
cargo install redisctl
4848

4949
# Or download from releases
50-
# https://github.com/joshrotenberg/redisctl/releases
50+
# https://github.com/redis-developer/redisctl/releases
5151
```
5252

5353
### 2. Configure
@@ -277,7 +277,7 @@ cargo install redisctl --features secure-storage
277277
```
278278

279279
### Binary Releases
280-
Download the latest release for your platform from [GitHub Releases](https://github.com/joshrotenberg/redisctl/releases).
280+
Download the latest release for your platform from [GitHub Releases](https://github.com/redis-developer/redisctl/releases).
281281

282282
Binaries are available for:
283283
- macOS (Intel and Apple Silicon)
@@ -290,13 +290,13 @@ Binaries are available for:
290290
docker run --rm \
291291
-e REDIS_CLOUD_API_KEY \
292292
-e REDIS_CLOUD_SECRET_KEY \
293-
joshrotenberg/redisctl:latest \
293+
redis-developer/redisctl:latest \
294294
cloud subscription list
295295

296296
# Mount config for persistent profiles
297297
docker run --rm \
298298
-v ~/.config/redisctl:/root/.config/redisctl:ro \
299-
joshrotenberg/redisctl:latest \
299+
redis-developer/redisctl:latest \
300300
cloud database list
301301

302302
# Development environment
@@ -437,7 +437,7 @@ Contributions welcome! See our [Contributing Guide](https://joshrotenberg.github
437437

438438
```bash
439439
# Clone and build
440-
git clone https://github.com/joshrotenberg/redisctl.git
440+
git clone https://github.com/redis-developer/redisctl.git
441441
cd redisctl
442442
cargo build --release
443443

@@ -464,5 +464,5 @@ at your option.
464464
## Support
465465

466466
- [Documentation](https://joshrotenberg.github.io/redisctl/)
467-
- [Issue Tracker](https://github.com/joshrotenberg/redisctl/issues)
468-
- [Discussions](https://github.com/joshrotenberg/redisctl/discussions)
467+
- [Issue Tracker](https://github.com/redis-developer/redisctl/issues)
468+
- [Discussions](https://github.com/redis-developer/redisctl/discussions)

RELEASE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,25 @@ git push origin vX.Y.Z
5555

5656
The tag push should automatically trigger:
5757

58-
1. **Release workflow** (cargo-dist): https://github.com/joshrotenberg/redisctl/actions/workflows/release.yml
58+
1. **Release workflow** (cargo-dist): https://github.com/redis-developer/redisctl/actions/workflows/release.yml
5959
- Creates GitHub release with binaries
6060
- Takes ~10-15 minutes
6161

62-
2. **Docker Build**: https://github.com/joshrotenberg/redisctl/actions/workflows/docker.yml
62+
2. **Docker Build**: https://github.com/redis-developer/redisctl/actions/workflows/docker.yml
6363
- Publishes to Docker Hub
6464
- Takes ~5-10 minutes
6565

66-
3. **Publish to crates.io**: https://github.com/joshrotenberg/redisctl/actions/workflows/publish-crates.yml
66+
3. **Publish to crates.io**: https://github.com/redis-developer/redisctl/actions/workflows/publish-crates.yml
6767
- Publishes all three crates
6868
- Takes ~2-5 minutes
6969

7070
### 4. Verify Release Components
7171

7272
After workflows complete, verify:
7373

74-
- [ ] GitHub Release: https://github.com/joshrotenberg/redisctl/releases
74+
- [ ] GitHub Release: https://github.com/redis-developer/redisctl/releases
7575
- Should have binaries for all platforms
76-
- [ ] Docker Hub: https://hub.docker.com/r/joshrotenberg/redisctl/tags
76+
- [ ] Docker Hub: https://hub.docker.com/r/redis-developer/redisctl/tags
7777
- Should have new version tag
7878
- [ ] crates.io: https://crates.io/crates/redisctl
7979
- Should show new version

crates/redisctl-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.2.0"
44
edition = "2024"
55
authors = ["Josh Rotenberg <[email protected]>"]
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/joshrotenberg/redisctl"
8-
homepage = "https://github.com/joshrotenberg/redisctl"
7+
repository = "https://github.com/redis-developer/redisctl"
8+
homepage = "https://github.com/redis-developer/redisctl"
99
description = "Configuration and profile management for Redis CLI tools"
1010
keywords = ["redis", "config", "profile", "credentials"]
1111
categories = ["config", "authentication"]

crates/redisctl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//!
7979
//! ## Documentation
8080
//!
81-
//! For complete documentation and examples, see the [GitHub repository](https://github.com/joshrotenberg/redisctl).
81+
//! For complete documentation and examples, see the [GitHub repository](https://github.com/redis-developer/redisctl).
8282
8383
// Internal modules for CLI functionality
8484
pub(crate) mod cli;

docker-compose.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ services:
7878
# This is a high-level workflow that replaces multiple manual API calls.
7979
# ==============================================================================
8080
redis-enterprise-init:
81-
image: joshrotenberg/redisctl:latest
81+
image: redis-developer/redisctl:latest
8282
container_name: redis-enterprise-init
8383
depends_on:
8484
redis-enterprise:
@@ -116,7 +116,7 @@ services:
116116
# Create first test database - basic ephemeral cache
117117
# Configuration: 100MB, no persistence, LRU eviction policy
118118
redis-enterprise-create-db1:
119-
image: joshrotenberg/redisctl:latest
119+
image: redis-developer/redisctl:latest
120120
container_name: redis-enterprise-create-db1
121121
depends_on:
122122
redis-enterprise-init:
@@ -137,7 +137,7 @@ services:
137137
# Create second test database - persistent with AOF
138138
# Configuration: 200MB, AOF persistence, appendfsync-every-sec
139139
redis-enterprise-create-db2:
140-
image: joshrotenberg/redisctl:latest
140+
image: redis-developer/redisctl:latest
141141
container_name: redis-enterprise-create-db2
142142
depends_on:
143143
redis-enterprise-init:
@@ -167,7 +167,7 @@ services:
167167
# List all databases to verify creation
168168
# 👤 HUMAN-FRIENDLY COMMAND
169169
redis-enterprise-list-dbs:
170-
image: joshrotenberg/redisctl:latest
170+
image: redis-developer/redisctl:latest
171171
container_name: redis-enterprise-list-dbs
172172
depends_on:
173173
redis-enterprise-create-db1:
@@ -188,7 +188,7 @@ services:
188188
# Get cache database details with JMESPath filtering
189189
# 👤 HUMAN-FRIENDLY COMMAND (with filtering)
190190
redis-enterprise-get-cache-db:
191-
image: joshrotenberg/redisctl:latest
191+
image: redis-developer/redisctl:latest
192192
container_name: redis-enterprise-get-cache-db
193193
depends_on:
194194
redis-enterprise-create-db1:
@@ -211,7 +211,7 @@ services:
211211
# Get persistent database details
212212
# 👤 HUMAN-FRIENDLY COMMAND (with filtering)
213213
redis-enterprise-get-persistent-db:
214-
image: joshrotenberg/redisctl:latest
214+
image: redis-developer/redisctl:latest
215215
container_name: redis-enterprise-get-persistent-db
216216
depends_on:
217217
redis-enterprise-create-db2:
@@ -243,7 +243,7 @@ services:
243243
# Output: Basic cluster details (filtered for key fields)
244244
# 👤 HUMAN-FRIENDLY COMMAND
245245
redis-enterprise-cluster-info:
246-
image: joshrotenberg/redisctl:latest
246+
image: redis-developer/redisctl:latest
247247
container_name: redis-enterprise-cluster-info
248248
depends_on:
249249
redis-enterprise-list-dbs:
@@ -262,7 +262,7 @@ services:
262262
# List nodes in the cluster
263263
# 👤 HUMAN-FRIENDLY COMMAND
264264
redis-enterprise-list-nodes:
265-
image: joshrotenberg/redisctl:latest
265+
image: redis-developer/redisctl:latest
266266
container_name: redis-enterprise-list-nodes
267267
depends_on:
268268
redis-enterprise-cluster-info:
@@ -281,7 +281,7 @@ services:
281281
# Check cluster stats
282282
# 👤 HUMAN-FRIENDLY COMMAND
283283
redis-enterprise-stats:
284-
image: joshrotenberg/redisctl:latest
284+
image: redis-developer/redisctl:latest
285285
container_name: redis-enterprise-stats
286286
depends_on:
287287
redis-enterprise-list-nodes:
@@ -308,7 +308,7 @@ services:
308308
# Get license information
309309
# 👤 HUMAN-FRIENDLY COMMAND
310310
redis-enterprise-license:
311-
image: joshrotenberg/redisctl:latest
311+
image: redis-developer/redisctl:latest
312312
container_name: redis-enterprise-license
313313
depends_on:
314314
redis-enterprise-stats:
@@ -330,7 +330,7 @@ services:
330330
# Get detailed node information
331331
# 👤 HUMAN-FRIENDLY COMMAND
332332
redis-enterprise-node-details:
333-
image: joshrotenberg/redisctl:latest
333+
image: redis-developer/redisctl:latest
334334
container_name: redis-enterprise-node-details
335335
depends_on:
336336
redis-enterprise-license:
@@ -349,7 +349,7 @@ services:
349349
# List all users
350350
# 👤 HUMAN-FRIENDLY COMMAND
351351
redis-enterprise-users:
352-
image: joshrotenberg/redisctl:latest
352+
image: redis-developer/redisctl:latest
353353
container_name: redis-enterprise-users
354354
depends_on:
355355
redis-enterprise-node-details:
@@ -368,7 +368,7 @@ services:
368368
# Get cluster policy
369369
# 🔧 RAW API COMMAND
370370
redis-enterprise-policy:
371-
image: joshrotenberg/redisctl:latest
371+
image: redis-developer/redisctl:latest
372372
container_name: redis-enterprise-policy
373373
depends_on:
374374
redis-enterprise-users:
@@ -387,7 +387,7 @@ services:
387387
# Check for any cluster alerts
388388
# 🔧 RAW API COMMAND
389389
redis-enterprise-alerts:
390-
image: joshrotenberg/redisctl:latest
390+
image: redis-developer/redisctl:latest
391391
container_name: redis-enterprise-alerts
392392
depends_on:
393393
redis-enterprise-policy:
@@ -406,7 +406,7 @@ services:
406406
# Get comprehensive cluster information
407407
# 👤 HUMAN-FRIENDLY COMMAND
408408
redis-enterprise-cluster-full:
409-
image: joshrotenberg/redisctl:latest
409+
image: redis-developer/redisctl:latest
410410
container_name: redis-enterprise-cluster-full
411411
depends_on:
412412
redis-enterprise-alerts:

docs/book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ title = "redisctl Documentation"
77
[output.html]
88
default-theme = "light"
99
preferred-dark-theme = "ayu"
10-
git-repository-url = "https://github.com/joshrotenberg/redisctl"
11-
edit-url-template = "https://github.com/joshrotenberg/redisctl/edit/main/docs/{path}"
10+
git-repository-url = "https://github.com/redis-developer/redisctl"
11+
edit-url-template = "https://github.com/redis-developer/redisctl/edit/main/docs/{path}"
1212

1313
[output.html.fold]
1414
enable = true

0 commit comments

Comments
 (0)