Skip to content

Commit

Permalink
Remove length limit from user id (#202)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
parfeon authored Jan 9, 2025
1 parent ea0a4c1 commit 11fc03a
Show file tree
Hide file tree
Showing 8 changed files with 585 additions and 528 deletions.
23 changes: 15 additions & 8 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
name: c-core
schema: 1
version: "4.16.0"
version: "4.16.1"
scm: github.com/pubnub/c-core
changelog:
- date: 2025-01-09
version: v4.16.1
changes:
- type: bug
text: "Remove the `user_id` length restriction for dynamically allocated memory for it."
- type: improvement
text: "Configure `try_compile` when building a static library."
- date: 2024-12-25
version: v4.16.0
changes:
Expand Down Expand Up @@ -895,7 +902,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -961,7 +968,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -1027,7 +1034,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -1089,7 +1096,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -1150,7 +1157,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -1206,7 +1213,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down Expand Up @@ -1259,7 +1266,7 @@ sdks:
distribution-type: source code
distribution-repository: GitHub release
package-name: C-Core
location: https://github.com/pubnub/c-core/releases/tag/v4.16.0
location: https://github.com/pubnub/c-core/releases/tag/v4.16.1
requires:
-
name: "miniz"
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v4.16.1
January 09 2025

#### Fixed
- Remove the `user_id` length restriction for dynamically allocated memory for it.

#### Modified
- Configure `try_compile` when building a static library.

## v4.16.0
December 25 2024

Expand Down
Loading

0 comments on commit 11fc03a

Please sign in to comment.