Deprecate delighted package - Delighted sunset June 30, 2026#28
Draft
Deprecate delighted package - Delighted sunset June 30, 2026#28
Conversation
Delighted is being sunset on June 30, 2026. This is the final release of the delighted Node.js package. Changes: - Bump version to 2.2.0 - Add console.warn() deprecation notice on require - Add deprecation banner to README (visible on npm page) - Add deprecation entry to CHANGELOG See: https://help.delighted.com/article/840-delighted-sunset-faq
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
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.
Summary
Delighted is being sunset on June 30, 2026. This is the final release of the
delightedNode.js package (v2.2.0), marking it as deprecated.For more information, visit the Delighted Sunset FAQ.
Changes
delighted.js: Addedconsole.warn()deprecation notice at the top of the entry point. Every user whorequire('delighted')will see the warning in their server logs.lib/Delighted.js: BumpedVERSIONfrom'2.1.0'to'2.2.0'.package.json: Bumpedversionfrom"2.1.0"to"2.2.0".README.md: Added deprecation banner at the top. This is the first thing users see on the npm package page.CHANGELOG.md: Added2.2.0deprecation entry.What users will see
On
npm install delighted: npm deprecation warning (already applied vianpm deprecate).On
require('delighted'):Pre-merge validation (all passed)
node -e "require('./delighted')('test')"console.warndeprecation message printed to stderrnpm deprecate(retroactive)After merging
v2.2.0npm publish --tag latestLocal validation steps
1. Test runtime warning (from repo root)
node -e "var d = require('./delighted')('test')"You should see the
[delighted] DEPRECATION NOTICEmessage on stderr.2. Verify npm deprecation is already active
3. Verify version constants match