Skip to content

Commit df7c588

Browse files
chore(main): release 2.0.0 (#33)
🤖 I have created a release *beep* *boop* --- ## [2.0.0](1.2.2...v2.0.0) (2023-12-28) ### ⚠ BREAKING CHANGES * SDK configuration exposes new options and is organized hierarchically * remove `inlineUsersInEvents` and `userKeysFlushInterval` config options * remove global `registerLogger` function, replace with config option * remove `alias` function, replace usage with multi-kind contexts * Variation and VariationDetail now take contexts * `makeUser` behavior modified to construct a user-kind context * use C++ Server-side SDK 3.0 bindings ([#31](#31)) ### Features * added `makeContext` for constructing single or multi-kind contexts ([95e9718](95e9718)) * use C++ Server-side SDK 3.0 bindings ([#31](#31)) ([95e9718](95e9718)) ### Code Refactoring * makeUser behavior modified to construct a user-kind context ([95e9718](95e9718)) * remove `alias` function, replace usage with multi-kind contexts ([95e9718](95e9718)) * remove `inlineUsersInEvents` and `userKeysFlushInterval` config options ([95e9718](95e9718)) * remove global `registerLogger` function, replace with config option ([95e9718](95e9718)) * SDK configuration exposes new options and is organized hierarchically ([95e9718](95e9718)) * Variation and VariationDetail now take contexts ([95e9718](95e9718)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 95e9718 commit df7c588

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.2.2"
2+
".": "2.0.0"
33
}

CHANGELOG.md

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

33
All notable changes to the LaunchDarkly Lua Server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.0.0](https://github.com/launchdarkly/lua-server-sdk/compare/1.2.2...v2.0.0) (2023-12-28)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* SDK configuration exposes new options and is organized hierarchically
11+
* remove `inlineUsersInEvents` and `userKeysFlushInterval` config options
12+
* remove global `registerLogger` function, replace with config option
13+
* remove `alias` function, replace usage with multi-kind contexts
14+
* Variation and VariationDetail now take contexts
15+
* makeUser behavior modified to construct a user-kind context
16+
* use C++ Server-side SDK 3.0 bindings ([#31](https://github.com/launchdarkly/lua-server-sdk/issues/31))
17+
18+
### Features
19+
20+
* added `makeContext` for constructing single or multi-kind contexts ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
21+
* use C++ Server-side SDK 3.0 bindings ([#31](https://github.com/launchdarkly/lua-server-sdk/issues/31)) ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
22+
23+
24+
### Code Refactoring
25+
26+
* makeUser behavior modified to construct a user-kind context ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
27+
* remove `alias` function, replace usage with multi-kind contexts ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
28+
* remove `inlineUsersInEvents` and `userKeysFlushInterval` config options ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
29+
* remove global `registerLogger` function, replace with config option ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
30+
* SDK configuration exposes new options and is organized hierarchically ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
31+
* Variation and VariationDetail now take contexts ([95e9718](https://github.com/launchdarkly/lua-server-sdk/commit/95e97188dd2258805734884592b601c7ebfa66c6))
32+
533
## [1.2.2] - 2022-02-08
634
### Fixed:
735
- Remove accidental check-in of temporary documentation build files.

launchdarkly-server-sdk-1.0-0.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "1.0-0"
66

77
source = {
88
url = "git+https://github.com/launchdarkly/lua-server-sdk.git",
9-
tag = "1.2.2" -- {{ x-release-please-version }}
9+
tag = "2.0.0" -- {{ x-release-please-version }}
1010
}
1111

1212
dependencies = {

launchdarkly-server-sdk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Server-side SDK for LaunchDarkly.
2525
#define DEBUG_PRINT(fmt, ...)
2626
#endif
2727

28-
#define SDKVersion "1.2.2" /* {x-release-please-version} */
28+
#define SDKVersion "2.0.0" /* {x-release-please-version} */
2929

3030
static LDValue
3131
LuaValueToJSON(lua_State *const l, const int i);

0 commit comments

Comments
 (0)