@bigbinary/neeto-audit-frontend 2.0.9 → 2.0.11

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.
@@ -32,7 +32,6 @@ jobs:
32
32
  uses: pnpm/action-setup@v2
33
33
  id: pnpm-install
34
34
  with:
35
- version: latest
36
35
  run_install: false
37
36
 
38
37
  - name: Get pnpm store directory
package/dist/index.js CHANGED
@@ -30948,7 +30948,7 @@ RedirectableRequest.prototype._processResponse = function (response) {
30948
30948
  redirectUrl.protocol !== "https:" ||
30949
30949
  redirectUrl.host !== currentHost &&
30950
30950
  !isSubdomain(redirectUrl.host, currentHost)) {
30951
- removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
30951
+ removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers);
30952
30952
  }
30953
30953
 
30954
30954
  // Evaluate the beforeRedirect callback
@@ -33486,14 +33486,14 @@ const updateBigbinaryPackages = async (recommendedList) => {
33486
33486
  while (retries < MAX_RETRIES) {
33487
33487
  try {
33488
33488
  const {
33489
- data: { repos }
33489
+ data: { nanos }
33490
33490
  } = await axios.get(
33491
- "https://nanos-release-tool-staging.neetodeployapp.com/api/v1/repos"
33491
+ "https://ops.neetotower.com/api/v1/public/nanos"
33492
33492
  );
33493
33493
 
33494
33494
  const trackedPackages = filterBy(
33495
33495
  { name: includes(__, auditPackages) },
33496
- repos
33496
+ nanos
33497
33497
  );
33498
33498
 
33499
33499
  trackedPackages.forEach(({ name, current_version }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-audit-frontend",
3
- "version": "2.0.9",
3
+ "version": "2.0.11",
4
4
  "description": "Audits neeto frontend codebase for issues and suggests a fix.",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -30,14 +30,14 @@ const updateBigbinaryPackages = async (recommendedList) => {
30
30
  while (!success && retries < MAX_RETRIES) {
31
31
  try {
32
32
  const {
33
- data: { repos }
33
+ data: { nanos }
34
34
  } = await axios.get(
35
- "https://nanos-release-tool-staging.neetodeployapp.com/api/v1/repos"
35
+ "https://ops.neetotower.com/api/v1/public/nanos"
36
36
  );
37
37
 
38
38
  const trackedPackages = filterBy(
39
39
  { name: includes(__, auditPackages) },
40
- repos
40
+ nanos
41
41
  );
42
42
 
43
43
  trackedPackages.forEach(({ name, current_version }) => {