Skip to content

Commit 11fc03a

Browse files
authored
Remove length limit from user id (#202)
fix(user_id): remove length limit from user ID Remove the `user_id` length restriction for dynamically allocated memory for it. build(CMakeLists): add `try_compile` configuration Configure `try_compile` when building a static library.
1 parent ea0a4c1 commit 11fc03a

8 files changed

+585
-528
lines changed

.pubnub.yml

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
name: c-core
22
schema: 1
3-
version: "4.16.0"
3+
version: "4.16.1"
44
scm: github.com/pubnub/c-core
55
changelog:
6+
- date: 2025-01-09
7+
version: v4.16.1
8+
changes:
9+
- type: bug
10+
text: "Remove the `user_id` length restriction for dynamically allocated memory for it."
11+
- type: improvement
12+
text: "Configure `try_compile` when building a static library."
613
- date: 2024-12-25
714
version: v4.16.0
815
changes:
@@ -895,7 +902,7 @@ sdks:
895902
distribution-type: source code
896903
distribution-repository: GitHub release
897904
package-name: C-Core
898-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
905+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
899906
requires:
900907
-
901908
name: "miniz"
@@ -961,7 +968,7 @@ sdks:
961968
distribution-type: source code
962969
distribution-repository: GitHub release
963970
package-name: C-Core
964-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
971+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
965972
requires:
966973
-
967974
name: "miniz"
@@ -1027,7 +1034,7 @@ sdks:
10271034
distribution-type: source code
10281035
distribution-repository: GitHub release
10291036
package-name: C-Core
1030-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
1037+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
10311038
requires:
10321039
-
10331040
name: "miniz"
@@ -1089,7 +1096,7 @@ sdks:
10891096
distribution-type: source code
10901097
distribution-repository: GitHub release
10911098
package-name: C-Core
1092-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
1099+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
10931100
requires:
10941101
-
10951102
name: "miniz"
@@ -1150,7 +1157,7 @@ sdks:
11501157
distribution-type: source code
11511158
distribution-repository: GitHub release
11521159
package-name: C-Core
1153-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
1160+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
11541161
requires:
11551162
-
11561163
name: "miniz"
@@ -1206,7 +1213,7 @@ sdks:
12061213
distribution-type: source code
12071214
distribution-repository: GitHub release
12081215
package-name: C-Core
1209-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
1216+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
12101217
requires:
12111218
-
12121219
name: "miniz"
@@ -1259,7 +1266,7 @@ sdks:
12591266
distribution-type: source code
12601267
distribution-repository: GitHub release
12611268
package-name: C-Core
1262-
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
1269+
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
12631270
requires:
12641271
-
12651272
name: "miniz"

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v4.16.1
2+
January 09 2025
3+
4+
#### Fixed
5+
- Remove the `user_id` length restriction for dynamically allocated memory for it.
6+
7+
#### Modified
8+
- Configure `try_compile` when building a static library.
9+
110
## v4.16.0
211
December 25 2024
312

0 commit comments

Comments
 (0)