-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Linear - update relative imports #15312
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 3 Skipped Deployments
|
WalkthroughThis pull request involves version updates across multiple files in the Linear component for Pipedream. The changes primarily include incrementing version numbers for various actions, sources, and the main package. The most notable change is updating the import statement in Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
components/linear/sources/project-updated-instant/project-updated-instant.mjs (1)
Line range hint
6-8
: Consider addressing ESLint suppressions in future.These ESLint suppressions for required properties might indicate areas that need attention in a future update.
Would you like me to create an issue to track the removal of these ESLint suppressions?
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (12)
components/linear/actions/create-issue/create-issue.mjs
(1 hunks)components/linear/actions/get-issue/get-issue.mjs
(1 hunks)components/linear/actions/get-teams/get-teams.mjs
(1 hunks)components/linear/actions/search-issues/search-issues.mjs
(1 hunks)components/linear/actions/update-issue/update-issue.mjs
(1 hunks)components/linear/linear.app.mjs
(1 hunks)components/linear/package.json
(2 hunks)components/linear/sources/comment-created-instant/comment-created-instant.mjs
(1 hunks)components/linear/sources/issue-created-instant/issue-created-instant.mjs
(1 hunks)components/linear/sources/issue-updated-instant/issue-updated-instant.mjs
(1 hunks)components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs
(1 hunks)components/linear/sources/project-updated-instant/project-updated-instant.mjs
(2 hunks)
✅ Files skipped from review due to trivial changes (10)
- components/linear/actions/create-issue/create-issue.mjs
- components/linear/actions/get-teams/get-teams.mjs
- components/linear/actions/search-issues/search-issues.mjs
- components/linear/actions/update-issue/update-issue.mjs
- components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs
- components/linear/actions/get-issue/get-issue.mjs
- components/linear/sources/comment-created-instant/comment-created-instant.mjs
- components/linear/sources/issue-updated-instant/issue-updated-instant.mjs
- components/linear/package.json
- components/linear/sources/issue-created-instant/issue-created-instant.mjs
🔇 Additional comments (3)
components/linear/linear.app.mjs (1)
1-1
: LGTM! Import updated to use published package.The change from relative import to package import aligns with the PR objectives and improves maintainability.
Let's verify the package import works correctly:
✅ Verification successful
✓ Import change verified and consistent with codebase structure
The package
@pipedream/linear_app
is properly declared in package.json, and all files in the new implementation consistently use package imports.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the linear_app package is properly referenced # Check if the package is listed in package.json jq -r '.dependencies["@pipedream/linear_app"]' components/linear/package.json # Check for any other relative imports that might need updating rg -g '!node_modules' -g '*.{mjs,js}' '../linear_app'Length of output: 2650
components/linear/sources/project-updated-instant/project-updated-instant.mjs (2)
1-1
: LGTM! Import updated to use published package.The change from relative import to package import is consistent with the PR objectives.
14-14
: Version bump looks good.The version increment from 0.0.1 to 0.0.2 follows semantic versioning for patch updates.
Hi everyone, all test cases are passed! Ready for release! Test report |
Follow up to this PR
Summary by CodeRabbit
Version Updates
Import Changes