@shriyanss/js-recon 1.4.1-alpha.7 → 1.4.1-alpha.8

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.
@@ -17,6 +17,7 @@ on:
17
17
  jobs:
18
18
  update-homebrew-tap:
19
19
  runs-on: ubuntu-latest
20
+ environment: homebrew-publish
20
21
  steps:
21
22
  - name: Fetch published tarball and compute SHA256
22
23
  id: sha256
@@ -31,6 +32,7 @@ jobs:
31
32
  uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
32
33
  with:
33
34
  repository: shriyanss/homebrew-tap
35
+ token: ${{ secrets.HOMEBREW_TAP_GH_PAT }}
34
36
  path: homebrew-tap
35
37
 
36
38
  - name: Update formula fields
package/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Change Log
2
2
 
3
- ## 1.4.1-alpha.7 - (unreleased)
3
+ ## 1.4.1-alpha.8 - (unreleased)
4
+
5
+ ### Changed
6
+
7
+ - CI: `promote-js-recon.yml`'s Homebrew tap job now reads its push token (`HOMEBREW_TAP_GH_PAT`) from a scoped `homebrew-publish` GitHub Environment, restoring push access after the previous repo-wide `HOMEBREW_TAP_TOKEN` was retired. (`ci`)
8
+
9
+ ## 1.4.1-alpha.7 - 2026-07-14
4
10
 
5
11
  ### Changed
6
12
 
@@ -1,6 +1,6 @@
1
1
  const githubURL = "https://github.com/shriyanss/js-recon";
2
2
  const modulesDocs = "https://js-recon.io/docs/category/modules";
3
- const version = "1.4.1-alpha.7";
3
+ const version = "1.4.1-alpha.8";
4
4
  const toolDesc = "JavaScript Enumeration and SAST";
5
5
  const axiosNonHttpMethods = ["isAxiosError"]; // methods available in axios, which are not for making HTTP requests
6
6
  let CONFIG = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shriyanss/js-recon",
3
- "version": "1.4.1-alpha.7",
3
+ "version": "1.4.1-alpha.8",
4
4
  "description": "JS Recon Tool",
5
5
  "main": "build/index.js",
6
6
  "type": "module",