-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into np/feat/abi-refactor
- Loading branch information
Showing
14 changed files
with
138 additions
and
99 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
--- | ||
|
||
chore: release deprecation script |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@fuel-ts/versions": patch | ||
"@internal/forc": patch | ||
--- | ||
|
||
chore: updated forc version to `0.66.5` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "Deprecate Old Versions" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
deprecate_versions: | ||
type: boolean | ||
description: Deprecate versions? Otherwise dry-run mode will be used. | ||
default: false | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
deprecate-npm-versions: | ||
name: Deprecate versions next, pr and rc | ||
runs-on: buildjet-4vcpu-ubuntu-2204 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: CI Setup | ||
uses: ./.github/actions/ci-setup | ||
|
||
- name: Deprecate | ||
run: pnpm release:deprecate | ||
env: | ||
DEPRECATE_VERSIONS: ${{ github.event.inputs.deprecate_versions }} |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.66.4 | ||
0.66.5 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
6 changes: 3 additions & 3 deletions
6
packages/fuel-gauge/test/fixtures/forc-projects/abi-contract/src/main.sw
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import { compare } from 'compare-versions'; | ||
import { exec } from 'node:child_process'; | ||
import { readFileSync, readdirSync } from 'node:fs'; | ||
import { join } from 'node:path'; | ||
|
||
const { log, error } = console; | ||
|
||
const deprecateTags = /next|pr|rc/; | ||
const { version: currentVersion } = JSON.parse( | ||
readFileSync(join(process.cwd(), '/packages/fuels/package.json')).toString() | ||
); | ||
const deprecateVersions = process.env.DEPRECATE_VERSIONS === 'true'; | ||
|
||
const getPublicPackages = () => { | ||
const packagesDir = join(__dirname, '../packages'); | ||
const packages = readdirSync(packagesDir, { withFileTypes: true }); | ||
const packagesNames = packages.map((p) => { | ||
try { | ||
const packageContent = readFileSync(join(packagesDir, p.name, 'package.json'), 'utf8'); | ||
const packageJson = JSON.parse(packageContent.toString()); | ||
return packageJson.private ? null : packageJson.name; | ||
} catch (err) { | ||
return null; | ||
} | ||
}); | ||
return packagesNames.filter((p) => !!p); | ||
}; | ||
|
||
const getVersionsToDeprecate = async (packageName: string) => { | ||
const { versions } = await fetch(`https://registry.npmjs.org/${packageName}`).then((resp) => | ||
resp.json() | ||
); | ||
|
||
// Only deprecate certain tags | ||
const validVersions = Object.keys(versions).filter( | ||
(version) => version.search(deprecateTags) > -1 && !compare(version, currentVersion, '>=') | ||
); | ||
|
||
// Remove the latest next tag from the deprecation list | ||
const latestNextVersion = validVersions.filter((version) => version.search('next') > -1).pop(); | ||
return validVersions.filter((version) => version !== latestNextVersion); | ||
}; | ||
|
||
const main = async () => { | ||
const packages = getPublicPackages(); | ||
await Promise.allSettled( | ||
packages.map(async (packageName) => { | ||
const versionsToDeprecate = await getVersionsToDeprecate(packageName); | ||
|
||
log('The following versions will be deprecated:'); | ||
log(versionsToDeprecate.map((v) => ` - ${v}`).join('\n')); | ||
|
||
if (deprecateVersions) { | ||
await Promise.allSettled( | ||
versionsToDeprecate.map( | ||
async (versionToDelete) => | ||
new Promise((resolve, reject) => { | ||
exec( | ||
`npm deprecate ${packageName}@${versionToDelete} "Version no longer supported."`, | ||
(err, _stdout, stderr) => { | ||
if (err) { | ||
log(`❌ Error ${packageName}@${versionToDelete} not deprecated!\n`); | ||
reject(err); | ||
return; | ||
} | ||
if (stderr) { | ||
log(`❌ Error ${packageName}@${versionToDelete} not deprecated!\n`); | ||
reject(new Error(stderr)); | ||
return; | ||
} | ||
log(`✅ Package ${packageName}@${versionToDelete} deprecated!\n`); | ||
resolve(true); | ||
} | ||
); | ||
}) | ||
) | ||
); | ||
} | ||
}) | ||
); | ||
}; | ||
|
||
main().catch((err) => { | ||
error(err); | ||
process.exit(1); | ||
}); |
This file was deleted.
Oops, something went wrong.