Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .config/rollup.dist.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,13 @@ async function copyExternalPackages() {
// Cleanup package files.
await Promise.all(
[
[blessedPath, ['lib/**/*.js', 'usr/**/**', 'vendor/**/*.js']],
// Keep blessed's terminfo (the flat files in usr/, e.g. usr/xterm) but
// NOT usr/fonts/** — the OFL-1.1 Terminus bitmap font is only used by the
// unused BigText widget, and shipping it forces an OFL-1.1 license. The
// 'usr/*' glob matches one level deep, so usr/fonts/<file> is dropped.
// Re-verify usr/ contents on a blessed upgrade (a nested terminfo dir
// would be dropped too).
[blessedPath, ['lib/**/*.js', 'usr/*', 'vendor/**/*.js']],
[blessedContribPath, ['lib/**/*.js', 'index.js']],
[
socketRegistryPath,
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [1.1.117](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.117) - 2026-06-08

### Changed
- The published package no longer bundles the unused Terminus bitmap font (pulled in transitively by the vendored `blessed` dependency), so its declared license is now `MIT` instead of `MIT AND OFL-1.1`.

## [1.1.116](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.116) - 2026-06-06

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "socket",
"version": "1.1.116",
"version": "1.1.117",
"description": "CLI for Socket.dev",
"homepage": "https://github.com/SocketDev/socket-cli",
"license": "MIT AND OFL-1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-cli.git"
Expand Down
Loading