Skip to content

Latest commit

 

History

History
623 lines (431 loc) · 22.3 KB

CHANGELOG.md

File metadata and controls

623 lines (431 loc) · 22.3 KB

Changelog

  • All notable changes to Messenger will be documented in this file.

Changed

  • MessengerComposer will now emit events/broadcast when a new thread is created. The new thread will also now be marked as pending if the two providers are not friends.
  • storage.threads.disk config default changed to public from messenger.
  • Deprecated getProviderOnlineStatusVerbose from our MessengerProvider interface.
  • Moved shouldUseUuids static method from MessengerBots to Messenger class.
  • CS fixer updates.

Added

  • FriendRemovedBroadcast when a friend is removed.
  • withoutEvents boolean flag on MessengerComposer::silent(bool $withoutEvents = false) to disable both broadcast and events for an action.

Changed

  • AuthenticateOptional::class | auth.optional middleware deprecated.
  • Invite model's code increased to 10 characters in length on creation.
  • Code cleanup / typo fixes.

Added

  • New constants on Thread, Participant, Message, and Call models.
  • New constants on FriendDriver and MessengerProvider interfaces.
  • New constants on FileService.

Changed

  • Definitions support class has been deprecated.
  • All constants from Definitions have been moved to their respective model/interface.

Added

  • NullFriendBroker stand-in class for FriendDriver.
  • setFriendDriver method on our core Messenger service.
  • AttachMessengersCommand to attach our messenger models with existing records.

Added

  • New scoped implementation for setting/unsetting the MessengerProvider. Methods setScopedProvider() and unsetScopedProvider().
    • A scoped provider will keep any prior provider set in memory, such as an authenticated user, while returning the scoped provider to any subsequent calls to getProvider().
    • When unsetting a scoped provider, it will set the prior provider back to the active provider, if one was set.
    • This is mostly used internally, and on our MessengerComposer class, to avoid conflicts on queues as our Messenger service is a singleton.
  • Interfaces Ownerable, HasPresenceChannel for use with internal models and broadcasting.

Changed

  • Our broadcaster and push notification service will now reset their states after execution.
  • When broadcasting, we now enforce unique channels, filtering any duplicates before firing any broadcast.
  • Updated policy allow/deny responses.
  • Unsetting the MessengerProvider will now flush any active FriendDriver from the container.
  • Various bug fixes and request lifecycle improvements.

Changed

  • Fixed ThreadArchivedMessage to not broadcast the system message, as participants would have already received the archived broadcast.
  • Updated policy allow/deny responses.
  • messenger:install command will now ask for confirmation, and has the ability to overwrite our published config file, setting provider_uuids to true, using the --uuids flag. It will also ask if you want to migrate after publishing.
  • General code improvements.

Added

  • flush() method on Messenger and MessengerBots.
  • BaseMessengerJob all job classes now extend.
  • FlushMessengerServices job middleware which flushes messenger and bot services. This fixes/prevents a queue worker's process from having one job alter our singleton's state, impacting a following job that calls to our singleton.

Changed

  • setVideoDriver and setBroadcastDriver fixed to use bind and not singleton.
  • Our NullVideoBroker will be set as our default VideoDriver.
  • ProcessMessageTriggers properly flushes the active handler on our bots service between each match.

[v1.0.2 (08-17-2021)]

Removed

  • Removed deprecated ViewPortalController as it now resides in our UI addon package. (182a37a)

Added


[v1.0.1 (08-16-2021)]

Added

  • messengerComposer() helper. (13b4d9d)
  • getUniqueHandlerClasses to MessengerBots.
  • validUniqueActions relationship on the Bot model.
  • Expanded docs.

Changed

  • When viewing add-handlers for a bot, we now filter out handlers marked as unique that are already attached to the bot. (d643df3)

[v1.0.0 (08-13-2021)]

Version 1 released.


[v0.47 (08-11-2021)]

Changed

  • threads.subject and bots.name columns locked to max length of 255.
  • Thread subject validation now allows min length of 2 and max length of 255.
  • Message temporary_id post value set to max length of 255.
  • Commit (0b96afd)

[v0.46 (08-09-2021)]

Removed

  • JanusServer and VideoRoomService.
  • janus config file.
  • JanusBroker video driver.
  • Commit (4ced3a9)

Notes

  • If you were already using our provided janus, you must now create and register your own JanusBroker
  • Install our new janus-client package and update your broker accordingly to use the packages create/destroy for VideoRoom.

[v0.45 (08-04-2021)]

Changed

  • messages.body and message_edits.body columns to allow nullable. (2ebe8ac)
    • EmojiInterface, BotMatchingService, MessageTransformer, and MessengerComposer now allow null for message body.
  • Event subscribers will now always be registered, but conditionally check whether to handle events triggered. (avoids being disabled from config and not enabling dynamically when they were not registered in our service provider). (692256b)

[v0.44 (07-18-2021)]

Changed

  • Using core php method is_subclass_of instead of my custom reflection checks. (303e12d)
  • Calls down command now re-sets the down cache lock when triggered while calls already down. (44b768a)

Removed

  • ProvidersCacheCommand and ProvidersClearCommand
  • Searchable contract.
  • checkImplementsInterface and checkIsSubclassOf from Helpers class.
  • Commit (a4866a0)

[v0.43 (07-16-2021)]

Commits (329c2d0, 0b647d0)

Added

  • getProviderSettings public static method to the MessengerProvider contract.
  • getProviderSettings default added to the Messageable trait.
  • MessengerServiceProvider stub we now publish to the end users project. We also insert the provider to the app.php providers array.

Changed

  • Messenger getAllMessengerProviders renamed to getAllProviders.
  • Messenger setMessengerProviders renamed to registerProviders.
  • MessengerBots setHandlers renamed to registerHandlers. setHandlers kept but deprecated.
  • Messenger getConfig no longer returns providers.
  • Provider interactions reversed. Now you set the classes you do not want the provider to interact with.
  • messenger:publish command renamed to messenger:install.

Removed

  • providers array from config.
  • getFriendableForCurrentProvider from Messenger.
  • ProvidersCacheCommand and ProvidersClearCommand deprecated. Providers caching removed from MessengerConfig.
  • Searchable contract deprecated.
  • ProvidersVerification.php class.

[v0.42 (07-14-2021)]

Added

  • message_size_limit to our config. (bb87b51)
  • isGroupAdmin property to the BotActionHandler. (1f6f51b)

Changed

  • Implemented message_size_limit to any message send or edit message request.
  • Forward isGroupAdmin from event -> process triggers to BotActionHandler. Interface updated.

[v0.41 (07-06-2021)]

Added

  • getFirstValidEmojiShortcode method to the Emoji interface. (cc28e63)
  • emitTyping, emitStopTyping, emitRead, and read methods to MessengerComposer. (36ccbcf)
  • PresenceEvents class to handle getting/setting client presence events.

Changed

  • Improve (reduced) queries for message reactions. (189b1cf)
  • Methods for checking reflection moved from trait to helper class as static methods. (c06f299 & 1b5ee7d)

Removed

  • ChecksReflection trait.
  • setAction, setThread, setMessage methods from BotActionHandler. Replaced with setDataForMessage. (4a5acdf)

[v0.40 (07-05-2021)]

Added

  • BotActionHandledEvent and BotActionFailedEvent. (d5ab76c)
  • Bots api documentation.

Changed

  • Add index to column bot_actions.handler
  • Moved logic for executing action handlers to ProcessMessageTrigger action class, and using new query. (39664d6)
  • When a bot handler fails / throws exception, the exception will not be reported. The action and exception will be dispatched in the new BotActionFailedEvent that can be listened to by the end user.
  • Fixed bot and bot action cooldowns to cast as integer.

[v0.39 (07-03-2021)]

Added


[v0.38 (07-01-2021)]

Changed

  • Bug fix for bots when end user providers using INT keys and not UUIDs. Bot primary key now matches end users messenger config provider_uuids. (9c3ae1a)
  • Improved query performance for scopes providers. (f093d23)

Removed


[v0.37 (06-29-2021)]

Added

  • System messages for bot events (create, delete, avatar, rename).
  • Proper store and destroy group thread avatar.
  • avatars and default_thread_avatar in files config array.
  • New methods for avatars (provider, thread, bot)
  • Please see config: messenger.php

Changed

  • Janus server bug fixes with improper types properties when http call fails.
  • Avatars (provider, thread, bot) share one config for size/mimes.
  • Switched main queries used for locating threads/calls from using whereHas to custom scope using join.

Removed

  • Random of 5 default group thread avatars. Only one set now.
  • thread_avatars provider_avatars default_thread_avatars from files config array.
  • Following methods from Messenger: getThreadAvatarSizeLimit setThreadAvatarSizeLimit getThreadAvatarMimeTypes setThreadAvatarMimeTypes isProviderAvatarRemovalEnabled setProviderAvatarRemoval getProviderAvatarSizeLimit setProviderAvatarSizeLimit getProviderAvatarMimeTypes setProviderAvatarMimeTypes

[v0.36 (06-24-2021)]

Added

  • assets config array under the routing config section.
  • assets.php routing file.
  • senderIp to NewMessageEvent. Forward IP to bot handlers.

Changed

  • Assets (avatars/images/documents) no longer require authorization.
  • Removed the bool parameter for api on the methodgetProviderAvatarRoute() from the MessengerProvider contract.

Removed

  • Assets, views, web routes. Relocated to Messenger UI addon.
  • All API prefixed routes and responses for assets (images, documents, audio, avatars).
  • site_name from config.
  • web from routing config.
  • provider_avatar from routing config.
  • getSiteName() getWebEndpoint() isWebRoutesEnabled() and getSocketEndpoint() methods from Messenger.

[v0.35 (06-20-2021)]

Added

  • Group thread bots feature!
  • Bot and BotAction models.
  • bots config array
  • default_bot_avatar to files config array.
  • Migrations for bots and bot_actions.
  • MessengerBots facade.
  • Default bot avatar in published images.
  • global helpers for broadcaster() and bots().
  • messenger:purge:bots command.

Changed

  • Thread activeCall relationship to using proper ofMany query.
  • messenger:providers:cache command caches providers with the merged bot provider.
  • Switched injecting cache manager and config repository to using facade/helpers.
  • See above for messenger.php config changes.
  • upgraded UI packages, edited views, and recompiled assets.
  • SystemFeaturesResource implementation changed to using a direct call to the messenger service class.
  • When saving a group threads settings or updating a participants permissions, feature disabled values will be ignored.

Removed

  • SystemFeaturesResource json resource.

[v0.34 (06-03-2021)]

Added

  • Event subscribers for calling and system messages. More config for these to toggle on or off, set queued, and queue channel.
  • Config option to toggle system messages on or off.
  • boolean column chat_bots on threads table.
  • boolean column manage_bots on participants table.
  • SystemFeaturesResource attached to threads collection and thread resource. Shows the current system feature statuses.
  • Groundwork for upcoming bots feature.

Changed

  • Default broadcast driver set in the service provider.
  • push_notifications in config no longer nested array.

Removed

  • Drivers section from config.
  • ALL queued listeners and the Event => Listener map.
  • getBroadcastDriver() and getVideoDriver() methods from messenger.

[v0.33 (05-24-2021)]

Changed

  • Any models using protected $dates were switched to using cast for datetime
  • Storing invite now accepts null or any valid timestamp more than 5 minutes in the future, for the expires time.

[v0.32 (05-18-2021)]

Added

  • Using new latestOfMany eloquent call to gather the latest message for each thread in eager loads.

Changed

  • composer.json now locked to laravel ^8.42
  • Rename relation on thread recentMessage to latestMessage

Removed

  • staudenmeir/eloquent-eager-limit dependency.

[v0.31 (05-13-2021)]

Changed

  • Fine tuned MessageTransformer. Bug fixes on some sentences.
  • Renamed ALL methods on the MessengerProvider contract and matching trait to avoid future conflicts with other laravel packages / implementations.
    • name() to getProviderName()
    • getAvatarColumn() to getProviderAvatarColumn()
    • getLastActiveColumn() to getProviderLastActiveColumn()
    • getAvatarRoute() to getProviderAvatarRoute()
    • getRoute() to getProviderProfileRoute()
    • onlineStatus() to getProviderOnlineStatus()
    • onlineStatusVerbose() to getProviderOnlineStatusVerbose()

[v0.30 (05-11-2021)]

Added

  • MessageTransformer support class to generate and transform message body.

Changed

  • Bugfix in JS where failed message image loaded improper not found image.
  • Yarn upgrade. Assets recompiled.

Removed

  • Message transformer methods from MessageResource class.
  • .svg as a valid default image mime allowed for upload.

[v0.29 (05-02-2021)]

Changed

  • FileService now resets properties after each upload, destroy and destroyDirectory.

Removed

  • getName() method removed from FileService. upload() method returns final file name now.

[v0.28 (04-22-2021)]

Added

  • Support for morph maps on polymorphic relations for providers.

Changed

  • All instances of get_class() replaced with $model->getMorphClass().

Removed

  • getProviderId() and getProviderClass() methods removed from Messenger.

[v0.27 (04-21-2021)]

Removed

  • StoreMessengerIp listener removed. Up to end user to attach listener to heartbeat event should they want to use the IP provided.

Changed

  • instance() method on messenger singleton renamed to getInstance()
  • General major refactoring.

[v0.26 (04-12-2021)]

Added

  • bool column embeds and nullable/text column extra on messages table.
  • Optional extra payload when sending messages to allow custom json to be stored with the message.
  • More extensive model factories.
  • New routes for viewing group avatar when joining with an invitation.

Changed

  • Renamed action class UpdateMessage to EditMessage.

[v0.25 (04-10-2021)]

Added

  • Ignore call option. When ignoring a private call, it will also end the call.

Changed

  • Either party in a private call can end the call.

[v0.24 (04-05-2021)]

Added

  • Message reactions feature. New table message_reactions.
  • Events/broadcast for reactions feature.
  • bool edited and reacted columns on messages table.
  • New providers scope using concat() on polymorph keys.
  • Custom rule to verify an emoji exist in string.

Changed

  • Message edits go by bool edited and not updated_at column now.
  • Emoji converter is now an interface/service.
  • New emoji picker added to the included UI.
  • Emoji converter is now a service/interface.

[v0.23 (03-24-2021)]

Added

  • Message replies.
  • reply_to_id column on the messages table.

Changed

  • All store message actions accept params as array now instead of individual params.

[v0.22 (03-15-2021)]

Added

  • Audio message type to upload audio files. ~ Configs for audio files.
  • Command to purge archived audio files.
  • Routes to store/view/paginate and stream/download audio files.

Changed

  • Updated the UI to include support for audio files in a thread.

Removed

  • message_documents.download toggle in config removed.

[v0.21 (03-11-2021)]

Added

  • New configs to set mime types allowed to upload on each file type.

Changed

  • threads, messages, participants and message_edits tables use precision 6 for timestamps now.

[v0.20 (03-09-2021)]

Changed

  • Allow more mime types on uploads, frontend assets updated with this as well.
  • Misc bug fixes along with image service not resizing gif/svg/webp.

[v0.19 (02-28-2021)]

Added

  • New configs to set upload limit sizes.
  • New commands to temporarily shutdown calling system and end all active calls, as well as put the system back online.

[v0.18 (02-20-2021)]

Changed

  • More file moves/renames.
  • Set broadcast/video driver on demand.

[v0.17 (02-19-2021)]

Removed

  • helpers.php methods except messenger().

Changed

  • New Helpers class and support directory. Moved files around.
  • Added intermediate modal to confirm joining call once page loads.

[v0.16 (02-17-2021)]

Changed

  • Bugfix on join call skipping generating participant resource on response.
  • Broadcast broker resets private/presence each time to method called.

[v0.15 (02-14-2021)]

Removed

  • StoreEditMessage listener.

Changed

  • Edit message action will store the edit history immediately after update message.
  • Put a primary key back onto messenger model and table messengers.

[v0.14 (02-09-2021)]

Added

  • New Exceptions.

Changed

  • Exceptions thrown throughout out package.
  • Moved some authorization logic done in controllers or model into actions.

[v0.13 (02-07-2021)]

Added

  • Edit message table to store edit history.
  • Route to view edit history.
  • Config option to disable both edit message and viewing edit history.

[v0.12 (02-05-2021)]

Added

  • Edit message feature.

[v0.11 (02-03-2021)]

Changed

  • teardown_complete added to calls table used to avoid duplicate tear downs. Added a short cache lockout upon ending a call to avoid race conditions with automated EndCallIfEmpty job.

[v0.10 (02-03-2021)]

Changed

  • To avoid conflicts with channel names across apps, our channels are now prefixed with messenger. All impacted test and frontend assets have been updated to reflect this change.

[v0.9 (02-01-2021)]

Added

  • Test.

[v0.1]

Added

  • Everything.