Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE(all): [v16] Bump dependency package versions #926

Merged
merged 17 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
54 changes: 29 additions & 25 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,20 @@
"validate": "yarn test && yarn smoke-test && yarn lint"
},
"dependencies": {
"@oclif/core": "4.0.28",
"@oclif/plugin-autocomplete": "3.2.6",
"@oclif/plugin-help": "6.2.15",
"@oclif/plugin-not-found": "3.2.22",
"@oclif/plugin-version": "2.2.15",
"adm-zip": "0.5.10",
"archiver": "5.3.1",
"browserify": "17.0.0",
"@oclif/core": "4.0.33",
"@oclif/plugin-autocomplete": "3.2.11",
"@oclif/plugin-help": "6.2.18",
"@oclif/plugin-not-found": "3.2.29",
"@oclif/plugin-version": "2.2.16",
"adm-zip": "0.5.16",
"archiver": "7.0.1",
"browserify": "17.0.1",
"chrono-node": "2.7.7",
"cli-table3": "0.6.3",
"cli-table3": "0.6.5",
"colors": "1.4.0",
"debug": "4.3.4",
"debug": "4.3.7",
"dotenv": "16.4.5",
"fs-extra": "11.1.1",
"fs-extra": "11.2.0",
"gulp-filter": "7.0.0",
"gulp-prettier": "4.0.0",
"ignore": "5.2.4",
Expand All @@ -62,22 +62,22 @@
"klaw": "4.1.0",
"lodash": "4.17.21",
"luxon": "3.5.0",
"marked": "4.2.12",
"marked-terminal": "5.2.0",
"marked": "14.1.4",
"marked-terminal": "7.2.1",
"minimatch": "9.0.3",
"node-fetch": "2.6.7",
"node-fetch": "2.7.0",
"open": "10.1.0",
"ora": "5.4.0",
"parse-gitignore": "0.5.1",
"prettier": "2.8.8",
"read": "2.1.0",
"semver": "7.5.2",
"read": "4.0.0",
"semver": "7.6.3",
"string-length": "4.0.2",
"through2": "4.0.2",
"tmp": "0.2.1",
"traverse": "0.6.7",
"tmp": "0.2.3",
"traverse": "0.6.10",
"update-notifier": "5.1.0",
"yeoman-environment": "3.3.0",
"yeoman-environment": "3.19.3",
"yeoman-generator": "5.9.0"
},
"devDependencies": {
Expand All @@ -97,15 +97,19 @@
},
"oclif": {
"commands": "src/oclif/commands",
"additionalHelpFlags": ["-h"],
"additionalVersionFlags": ["-v"],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"bin": "zapier",
"dirname": "zapier",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-version"
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-version"
],
"hooks": {
"init": [
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/src/oclif/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ class InitCommand extends BaseCommand {
const env = yeoman.createEnv();
env.registerStub(ProjectGenerator, 'zapier:integration');

env.run('zapier:integration', { path, template }, () => {
this.log();
this.log(`A new integration has been created in directory "${path}".`);
this.log(`Read all about it in "${join(path, 'README.md')}".`);
});
await env.run('zapier:integration', { path, template });

this.log();
this.log(`A new integration has been created in directory "${path}".`);
this.log(`Read all about it in "${join(path, 'README.md')}".`);
Comment on lines -18 to +22
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switching from callback to promises/async. Side note: this should have been broken in v3.0.0 (see last point in changelog) but enforcement was broken until v3.5.0 (see last point in changelog)

}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/tests/utils/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('build (runs slowly)', function () {
smartPaths.filter((p) => p.endsWith('.ts')).length.should.equal(0);
smartPaths.should.not.containEql('tsconfig.json');

smartPaths.length.should.be.within(200, 300);
smartPaths.length.should.be.within(200, 301);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a new file: node_modules/dotenv/package.json 🤷🏻‍♂️

});

it('should list all the files', () => {
Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
"@zapier/secret-scrubber": "^1.1.1",
"bluebird": "3.7.2",
"content-disposition": "0.5.4",
"dotenv": "12.0.4 ",
"form-data": "4.0.0",
"dotenv": "16.4.5",
"form-data": "4.0.1",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"node-abort-controller": "3.1.1",
"node-fetch": "2.6.7",
"node-fetch": "2.7.0",
"oauth-sign": "0.9.0",
"semver": "7.5.2",
"semver": "7.6.3",
"zapier-platform-schema": "15.19.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"validate": "yarn test && yarn lint && yarn smoke-test"
},
"dependencies": {
"jsonschema": "1.2.2",
"jsonschema": "1.4.1",
"lodash": "4.17.21"
},
"devDependencies": {
Expand Down
Loading
Loading