Home / Companies / Svix / Blog / September 2023

September 2023 Summaries

2 posts from Svix

Filter
Month: Year:
Post Summaries Back to Blog
Feature flags, also known as feature toggles, are checks in code that determine behavior based on conditions and can be used to gradually release new features to users while still allowing them to access existing ones. Svix has added support for hiding event types behind feature flags, which allows developers to control who sees a specific event type by setting a feature flag on it. When creating an event type with a feature flag set, only consumers with an access token bearing the same flag can see this event type in the event catalog. To use this feature, create an event type with a feature flag and then create a consumer access token with the same feature flag, which will allow that user to see the new event type when accessing the dashboard. Once ready to release the event type to all consumers, simply update the event type without the feature flag, allowing all users to see it in the catalog.
Sep 13, 2023 747 words in the original blog post.
The text discusses various HTTP implementation quirks that developers should be aware of when building web applications and interacting with different servers. These quirks include case-sensitivity in headers, invalid header names, header ordering, duplicate headers, multiple values for a single header, query parameter handling, TLS cipher negotiation, incomplete certificate chains, and basic authentication. The authors emphasize the importance of being flexible and implementing error-handling mechanisms to ensure smooth operations when dealing with different server implementations.
Sep 06, 2023 1,178 words in the original blog post.