Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit 6d25650

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.1.0
1 parent 4a43b92 commit 6d25650

File tree

15 files changed

+2574
-1
lines changed

15 files changed

+2574
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly Node.js SDK Consul integration will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.1.0] - 2022-12-07
6+
### Added:
7+
- Added support for `launchdarkly-node-server-sdk` `7.0.0` and greater.
8+
59
## [2.0.0] - 2021-06-17
610
The 2.0.0 release of `launchdarkly-node-server-sdk-consul` is for use with version 6.x of the LaunchDarkly server-side SDK for Node.js. It has the same functionality as the previous major version, but its dependencies, Node version compatibility, and internal API have been updated to match the 6.0.0 release of the SDK.
711

docs/build/html/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root {
2+
--light-code-background: #F5F5F5;
3+
--dark-code-background: #1E1E1E;
4+
}
5+
6+
@media (prefers-color-scheme: light) { :root {
7+
--code-background: var(--light-code-background);
8+
} }
9+
10+
@media (prefers-color-scheme: dark) { :root {
11+
--code-background: var(--dark-code-background);
12+
} }
13+
14+
body.light {
15+
--code-background: var(--light-code-background);
16+
}
17+
18+
body.dark {
19+
--code-background: var(--dark-code-background);
20+
}
21+
22+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)