-
Couldn't load subscription status.
- Fork 24
Structured logging system and HereNow pagination limits #225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0c4190f to
fe340d4
Compare
ae8830f to
699363e
Compare
699363e to
cb1f8f4
Compare
|
@pubnub-release-bot release as 10.0.0 |
d3bef59 to
2839d37
Compare
2839d37 to
e826b96
Compare
|
🚀 Release successfully completed 🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
feat(logger): update how
PubNubLoggeris configured (now viaPubNubconstructor)BREAKING CHANGES: The static
logandlogLogproperties have been removed from the PubNub instance. You can now attach a logger instance via the PubNub initializer instead.feat(logger): encapsulate logging behavior
BREAKING CHANGES: Logging methods such as
debug,warning, etc, are no longer public. They are now internal as part of the logging encapsulation improvements.feat(logger): change
LogWriterprotocol method signatureBREAKING CHANGES: The
LogWriterprotocol method signature has been refined to accept aLogMessageobject representing the logged content. It now also takes aLogMetadataparameter, allowing logging decisions to be made without evaluating the message itself.feat(presence): add limit and offset parameters to the
hereNowmethodBREAKING CHANGES: The
HereNowmethod now returns a maximum of 1,000 occupants per channel. Previously, it would return all occupants regardless of count. If you have channels with more than 1,000 occupants, you must use pagination to retrieve the complete list.