Skip to content

Commit bda8d48

Browse files
chore: release rlamb/add-release-please (#57)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 292115f commit bda8d48

File tree

8 files changed

+110
-9
lines changed

8 files changed

+110
-9
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"libs/client-sdk": "0.0.0",
3-
"libs/server-sent-events": "0.0.0",
4-
"libs/common": "0.0.0"
2+
"libs/client-sdk": "0.1.0",
3+
"libs/server-sent-events": "0.1.0",
4+
"libs/common": "0.1.0"
55
}

libs/client-sdk/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Changelog
2+
3+
## 0.1.0 (2023-05-10)
4+
5+
6+
### Features
7+
8+
* Add client support for streaming. ([#25](https://github.com/launchdarkly/cpp-sdks-private/issues/25)) ([0e3c1f2](https://github.com/launchdarkly/cpp-sdks-private/commit/0e3c1f21dc1bf76451284e4e7f7f61cf1c503eb6))
9+
* Add support for redirection requests. ([#31](https://github.com/launchdarkly/cpp-sdks-private/issues/31)) ([ba5c5ae](https://github.com/launchdarkly/cpp-sdks-private/commit/ba5c5aebe45b5e6bab4fff9b859d83ad2bb58afa))
10+
* eventsource client ([#1](https://github.com/launchdarkly/cpp-sdks-private/issues/1)) ([ab2b0fe](https://github.com/launchdarkly/cpp-sdks-private/commit/ab2b0feb50ef9f607d19c29ed2dd648f3c47b472))
11+
* generate analytic events from evaluations ([#36](https://github.com/launchdarkly/cpp-sdks-private/issues/36)) ([c62dcf6](https://github.com/launchdarkly/cpp-sdks-private/commit/c62dcf69673ef2fcae2dc2f2d143cf0b0f15d076))
12+
* implement Client type ([#21](https://github.com/launchdarkly/cpp-sdks-private/issues/21)) ([10265fd](https://github.com/launchdarkly/cpp-sdks-private/commit/10265fda24191172145f0f22e9f82321f2e3dc6b))
13+
* implement event delivery ([#29](https://github.com/launchdarkly/cpp-sdks-private/issues/29)) ([4de5eaa](https://github.com/launchdarkly/cpp-sdks-private/commit/4de5eaaccba0556c4990dceb501277472bab4385))
14+
* Implement flag manager. ([#20](https://github.com/launchdarkly/cpp-sdks-private/issues/20)) ([15199f1](https://github.com/launchdarkly/cpp-sdks-private/commit/15199f111f30b06b99f4ce642d1a614d46b629d1))
15+
* Implement http/https requests. ([#27](https://github.com/launchdarkly/cpp-sdks-private/issues/27)) ([853d3ff](https://github.com/launchdarkly/cpp-sdks-private/commit/853d3ff5a4148a9d3ed933d2a23dc8609c75d36b))
16+
* Implement polling data source. ([#28](https://github.com/launchdarkly/cpp-sdks-private/issues/28)) ([7ef503b](https://github.com/launchdarkly/cpp-sdks-private/commit/7ef503bdcafcf203e63f8faf8431f0baf019c2ee))
17+
* Implement streaming data source. ([#17](https://github.com/launchdarkly/cpp-sdks-private/issues/17)) ([9931b96](https://github.com/launchdarkly/cpp-sdks-private/commit/9931b96f73847d5a1b4456fd4f463d43dade5c1b))
18+
* make EvaluationReason use enums for Kind and ErrorKind ([#40](https://github.com/launchdarkly/cpp-sdks-private/issues/40)) ([c330bb8](https://github.com/launchdarkly/cpp-sdks-private/commit/c330bb89907932bb4b8076a52be60756f84810a8))
19+
* replace Encrypted/Plain clients with foxy library ([#39](https://github.com/launchdarkly/cpp-sdks-private/issues/39)) ([33e92df](https://github.com/launchdarkly/cpp-sdks-private/commit/33e92df2e970c607bead4a912fc737027750c8fb))
20+
* Support flag change notifications. ([#41](https://github.com/launchdarkly/cpp-sdks-private/issues/41)) ([24c6cd8](https://github.com/launchdarkly/cpp-sdks-private/commit/24c6cd81cea678bdb6930600a919b1bc5a698c88))
21+
* Support handling invalid URLs for asio requests. ([#30](https://github.com/launchdarkly/cpp-sdks-private/issues/30)) ([64b8aaf](https://github.com/launchdarkly/cpp-sdks-private/commit/64b8aafdbac07fbf2a82f1bb9fde762c63fd79e7))
22+
23+
24+
### Bug Fixes
25+
26+
* remove extra call to data_source-&gt;Start() in api.cpp ([#37](https://github.com/launchdarkly/cpp-sdks-private/issues/37)) ([33458a4](https://github.com/launchdarkly/cpp-sdks-private/commit/33458a4f6f7558cca6c4bce721b3d70be5d524f5))
27+
28+
29+
### Dependencies
30+
31+
* The following workspace dependencies were updated
32+
* dependencies
33+
* launchdarkly-cpp-common bumped from 0.0.0 to 0.1.0

libs/client-sdk/include/launchdarkly/client_side/api.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace launchdarkly::client_side {
2626
class Client {
2727
public:
28-
inline static const char* kVersion = "0.0.0"; // {x-release-please-version}
28+
inline static const char* kVersion = "0.1.0"; // {x-release-please-version}
2929

3030
Client(Config config, Context context);
3131

libs/client-sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-common": "0.0.0"
7+
"launchdarkly-cpp-common": "0.1.0"
88
}
99
}

libs/common/CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Changelog
2+
3+
## 0.1.0 (2023-05-10)
4+
5+
6+
### Features
7+
8+
* add ApplicationInfo ([#6](https://github.com/launchdarkly/cpp-sdks-private/issues/6)) ([17899c1](https://github.com/launchdarkly/cpp-sdks-private/commit/17899c173d319be4a2d096f0ac2212cf9de094cd))
9+
* Add attribute reference support. ([#7](https://github.com/launchdarkly/cpp-sdks-private/issues/7)) ([2203788](https://github.com/launchdarkly/cpp-sdks-private/commit/2203788c658cd1548e2285773652b8420c09bc1b))
10+
* add console backend constructor that gets level from env ([#6](https://github.com/launchdarkly/cpp-sdks-private/issues/6)) ([14f4161](https://github.com/launchdarkly/cpp-sdks-private/commit/14f4161cd3dea5b32d5a1b5eca320377066e0ea0))
11+
* Add context type, value type, and associated builders. ([#5](https://github.com/launchdarkly/cpp-sdks-private/issues/5)) ([b6edb69](https://github.com/launchdarkly/cpp-sdks-private/commit/b6edb6952497eb4171bc8a63506a408a2f85a969))
12+
* add error.hpp and tl::expected library ([#9](https://github.com/launchdarkly/cpp-sdks-private/issues/9)) ([1b4ddc8](https://github.com/launchdarkly/cpp-sdks-private/commit/1b4ddc8587ba8311626e2e07ef725d8164f22cb1))
13+
* add event summarizer ([#19](https://github.com/launchdarkly/cpp-sdks-private/issues/19)) ([3c4845a](https://github.com/launchdarkly/cpp-sdks-private/commit/3c4845a0066ed65078969dd26f423e14d1e70843))
14+
* add ServiceEndpoints builder & struct [1/2] ([#2](https://github.com/launchdarkly/cpp-sdks-private/issues/2)) ([10763e7](https://github.com/launchdarkly/cpp-sdks-private/commit/10763e77f5ed6a637554c9c3af6564a115b538ce))
15+
* Add support for redirection requests. ([#31](https://github.com/launchdarkly/cpp-sdks-private/issues/31)) ([ba5c5ae](https://github.com/launchdarkly/cpp-sdks-private/commit/ba5c5aebe45b5e6bab4fff9b859d83ad2bb58afa))
16+
* Change builder to allow for better loops. ([#8](https://github.com/launchdarkly/cpp-sdks-private/issues/8)) ([0b00f28](https://github.com/launchdarkly/cpp-sdks-private/commit/0b00f283d12512a13d8bcdc288b2dfde845a2673))
17+
* eventsource client ([#1](https://github.com/launchdarkly/cpp-sdks-private/issues/1)) ([ab2b0fe](https://github.com/launchdarkly/cpp-sdks-private/commit/ab2b0feb50ef9f607d19c29ed2dd648f3c47b472))
18+
* foundation of an event processor ([#16](https://github.com/launchdarkly/cpp-sdks-private/issues/16)) ([356bde1](https://github.com/launchdarkly/cpp-sdks-private/commit/356bde11a8b2b66578cc435c019e0a549528d560))
19+
* generate analytic events from evaluations ([#36](https://github.com/launchdarkly/cpp-sdks-private/issues/36)) ([c62dcf6](https://github.com/launchdarkly/cpp-sdks-private/commit/c62dcf69673ef2fcae2dc2f2d143cf0b0f15d076))
20+
* Implement C-binding for Value type. ([#33](https://github.com/launchdarkly/cpp-sdks-private/issues/33)) ([afb943c](https://github.com/launchdarkly/cpp-sdks-private/commit/afb943cb3d8a6b214935087fdd147b74a8a38361))
21+
* Implement client flag data model. ([#12](https://github.com/launchdarkly/cpp-sdks-private/issues/12)) ([ce7ccbc](https://github.com/launchdarkly/cpp-sdks-private/commit/ce7ccbc7356b2c5a9a9318109041a28524e6f9d2))
22+
* implement Client type ([#21](https://github.com/launchdarkly/cpp-sdks-private/issues/21)) ([10265fd](https://github.com/launchdarkly/cpp-sdks-private/commit/10265fda24191172145f0f22e9f82321f2e3dc6b))
23+
* Implement context filtering and JSON serialization. ([#11](https://github.com/launchdarkly/cpp-sdks-private/issues/11)) ([074c691](https://github.com/launchdarkly/cpp-sdks-private/commit/074c6914165987522653e100df1b8b0911bb8565))
24+
* Implement data source configuration. ([#18](https://github.com/launchdarkly/cpp-sdks-private/issues/18)) ([d2cbf8e](https://github.com/launchdarkly/cpp-sdks-private/commit/d2cbf8ebd049df59742ca2d864e8449a3c4519d6))
25+
* implement event delivery ([#29](https://github.com/launchdarkly/cpp-sdks-private/issues/29)) ([4de5eaa](https://github.com/launchdarkly/cpp-sdks-private/commit/4de5eaaccba0556c4990dceb501277472bab4385))
26+
* Implement flag manager. ([#20](https://github.com/launchdarkly/cpp-sdks-private/issues/20)) ([15199f1](https://github.com/launchdarkly/cpp-sdks-private/commit/15199f111f30b06b99f4ce642d1a614d46b629d1))
27+
* Implement http/https requests. ([#27](https://github.com/launchdarkly/cpp-sdks-private/issues/27)) ([853d3ff](https://github.com/launchdarkly/cpp-sdks-private/commit/853d3ff5a4148a9d3ed933d2a23dc8609c75d36b))
28+
* Implement logging. ([#5](https://github.com/launchdarkly/cpp-sdks-private/issues/5)) ([fadd3a0](https://github.com/launchdarkly/cpp-sdks-private/commit/fadd3a00a336a844de4e14e93ef268318571ea67))
29+
* Implement polling data source. ([#28](https://github.com/launchdarkly/cpp-sdks-private/issues/28)) ([7ef503b](https://github.com/launchdarkly/cpp-sdks-private/commit/7ef503bdcafcf203e63f8faf8431f0baf019c2ee))
30+
* Implement streaming data source. ([#17](https://github.com/launchdarkly/cpp-sdks-private/issues/17)) ([9931b96](https://github.com/launchdarkly/cpp-sdks-private/commit/9931b96f73847d5a1b4456fd4f463d43dade5c1b))
31+
* incomplete C bindings for client configuration ([#45](https://github.com/launchdarkly/cpp-sdks-private/issues/45)) ([219b9f8](https://github.com/launchdarkly/cpp-sdks-private/commit/219b9f836651ad794acbcf33a05cb3c13fe7418a))
32+
* make EvaluationReason use enums for Kind and ErrorKind ([#40](https://github.com/launchdarkly/cpp-sdks-private/issues/40)) ([c330bb8](https://github.com/launchdarkly/cpp-sdks-private/commit/c330bb89907932bb4b8076a52be60756f84810a8))
33+
* replace Encrypted/Plain clients with foxy library ([#39](https://github.com/launchdarkly/cpp-sdks-private/issues/39)) ([33e92df](https://github.com/launchdarkly/cpp-sdks-private/commit/33e92df2e970c607bead4a912fc737027750c8fb))
34+
* Support handling invalid URLs for asio requests. ([#30](https://github.com/launchdarkly/cpp-sdks-private/issues/30)) ([64b8aaf](https://github.com/launchdarkly/cpp-sdks-private/commit/64b8aafdbac07fbf2a82f1bb9fde762c63fd79e7))
35+
36+
37+
### Bug Fixes
38+
39+
* add operator== and operator!= for Value::Array and Value::Object ([#38](https://github.com/launchdarkly/cpp-sdks-private/issues/38)) ([71759de](https://github.com/launchdarkly/cpp-sdks-private/commit/71759de48fb06b997b2e6a6c0f76c6a5d0e3f3a1))
40+
* make AttributeReference's SetType be a std::set ([#23](https://github.com/launchdarkly/cpp-sdks-private/issues/23)) ([e5eaf22](https://github.com/launchdarkly/cpp-sdks-private/commit/e5eaf2207dcb34b877421c02346a4c3470976d1b))
41+
* remove c++20 designated initializers ([#42](https://github.com/launchdarkly/cpp-sdks-private/issues/42)) ([949962a](https://github.com/launchdarkly/cpp-sdks-private/commit/949962a642938d2d5ceecc3927c65565d3fbc719))
42+
43+
44+
### Dependencies
45+
46+
* The following workspace dependencies were updated
47+
* dependencies
48+
* launchdarkly-cpp-sse-client bumped from 0.0.0 to 0.1.0

libs/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-common",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-sse-client": "0.0.0"
7+
"launchdarkly-cpp-sse-client": "0.1.0"
88
}
99
}

libs/server-sent-events/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 0.1.0 (2023-05-10)
4+
5+
6+
### Features
7+
8+
* add basic eventsource-client ([8c31b8f](https://github.com/launchdarkly/cpp-sdks-private/commit/8c31b8ff0541c41f792b0f0f6316dbc1cd930a17))
9+
* eventsource client ([#1](https://github.com/launchdarkly/cpp-sdks-private/issues/1)) ([ab2b0fe](https://github.com/launchdarkly/cpp-sdks-private/commit/ab2b0feb50ef9f607d19c29ed2dd648f3c47b472))
10+
* foundation of an event processor ([#16](https://github.com/launchdarkly/cpp-sdks-private/issues/16)) ([356bde1](https://github.com/launchdarkly/cpp-sdks-private/commit/356bde11a8b2b66578cc435c019e0a549528d560))
11+
* generate analytic events from evaluations ([#36](https://github.com/launchdarkly/cpp-sdks-private/issues/36)) ([c62dcf6](https://github.com/launchdarkly/cpp-sdks-private/commit/c62dcf69673ef2fcae2dc2f2d143cf0b0f15d076))
12+
* Implement http/https requests. ([#27](https://github.com/launchdarkly/cpp-sdks-private/issues/27)) ([853d3ff](https://github.com/launchdarkly/cpp-sdks-private/commit/853d3ff5a4148a9d3ed933d2a23dc8609c75d36b))
13+
* Implement streaming data source. ([#17](https://github.com/launchdarkly/cpp-sdks-private/issues/17)) ([9931b96](https://github.com/launchdarkly/cpp-sdks-private/commit/9931b96f73847d5a1b4456fd4f463d43dade5c1b))
14+
* replace Encrypted/Plain clients with foxy library ([#39](https://github.com/launchdarkly/cpp-sdks-private/issues/39)) ([33e92df](https://github.com/launchdarkly/cpp-sdks-private/commit/33e92df2e970c607bead4a912fc737027750c8fb))
15+
* update sse-contract-tests to use foxy's server_session ([#43](https://github.com/launchdarkly/cpp-sdks-private/issues/43)) ([a4f2d63](https://github.com/launchdarkly/cpp-sdks-private/commit/a4f2d63f02bcaa63c0d04ef609c4f611ccf001c6))
16+
17+
18+
### Bug Fixes
19+
20+
* remove c++20 designated initializers ([#42](https://github.com/launchdarkly/cpp-sdks-private/issues/42)) ([949962a](https://github.com/launchdarkly/cpp-sdks-private/commit/949962a642938d2d5ceecc3927c65565d3fbc719))

libs/server-sent-events/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "launchdarkly-cpp-sse-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
44
"private": true,
5-
"version": "0.0.0",
5+
"version": "0.1.0",
66
"dependencies": {}
77
}

0 commit comments

Comments
 (0)