socket 1.1.87 → 1.1.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [1.1.89](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.89) - 2026-04-30
8
+
9
+ ### Fixed
10
+ - `socket scan create` now matches manifest filenames case-insensitively, so capitalized files such as `Pipfile` and `Pipfile.lock` are no longer silently dropped from the scan.
11
+
12
+ ## [1.1.88](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.88) - 2026-04-29
13
+
14
+ ### Changed
15
+ - Updated the Coana CLI to v `15.1.0`.
16
+
7
17
  ## [1.1.87](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.87) - 2026-04-28
8
18
 
9
19
  ### Changed
package/dist/cli.js CHANGED
@@ -2208,7 +2208,9 @@ function filterToCdxSpdxAndFactsFiles(filepaths, supportedFiles) {
2208
2208
  return true;
2209
2209
  }
2210
2210
  // Include CDX and SPDX files.
2211
- return vendor.micromatchExports.some(filepath, patterns);
2211
+ return vendor.micromatchExports.some(filepath, patterns, {
2212
+ nocase: true
2213
+ });
2212
2214
  });
2213
2215
  }
2214
2216
  async function handleCreateNewScan({
@@ -15613,5 +15615,5 @@ process.on('unhandledRejection', async (reason, promise) => {
15613
15615
  // eslint-disable-next-line n/no-process-exit
15614
15616
  process.exit(1);
15615
15617
  });
15616
- //# debugId=88bbd944-b943-4785-a2f1-659724fdd70f
15618
+ //# debugId=6e6c11a1-66cb-495b-a9aa-426b4995d18c
15617
15619
  //# sourceMappingURL=cli.js.map