Skip to content

Commit

Permalink
Add v7.11 to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Oct 4, 2024
1 parent a8ca896 commit 8807522
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]
## [7.11.0] - 2024-10-04
### Added
* Document support for redis database index.

Expand Down
1 change: 1 addition & 0 deletions src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/// <reference path="../.astro/types.d.ts" />

Check failure on line 1 in src/env.d.ts

View workflow job for this annotation

GitHub Actions / ci / lint (npm run lint)

Do not use a triple slash reference for ../.astro/types.d.ts, use `import` style instead
/// <reference types="astro/client" />
2 changes: 1 addition & 1 deletion src/pages/documentation/advanced/using-redis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Shlink supports multiple redis capabilities. They can be enabled by providing di
* [Redis instance](https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/), when providing just one server (for example, `tcp://my_redis_server:6379`).
* [Redis cluster](https://redis.io/docs/latest/operate/oss_and_stack/management/scaling/), when providing multiple servers (for example, `tcp://one_redis_server:6379,tcp://another_redis_server:6379`).
* [Redis sentinel](https://redis.io/docs/latest/operate/oss_and_stack/management/sentinel/), when providing multiple servers, together with a sentinel service name.
* Database selection (since Shlink 4.3), by providing the database index in the URI path (for example, `tcp://my_redis_server:6379/5`).
* Database selection (since Shlink 4.2.1), by providing the database index in the URI path (for example, `tcp://my_redis_server:6379/5`).
* Credentials, that can be provided as part of the server URIs, either both [username and password](https://redis.io/docs/latest/operate/oss_and_stack/management/security/acl/) (`tcp://the_username:the_password@my_redis_server:6379`) or [just password](https://redis.io/docs/latest/operate/oss_and_stack/management/security/) (`tcp://:the_password@my_redis_server:6379`).
<Callout type="warning">
Prior to Shlink 3.7.0, password-only URIs had the form `tcp://the_password@my_redis_server:6379`.
Expand Down

0 comments on commit 8807522

Please sign in to comment.