-
Notifications
You must be signed in to change notification settings - Fork 342
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
Migrate Elyra extensions to support JupyterLab 4.x #3201
base: main
Are you sure you want to change the base?
Commits on Dec 20, 2023
-
Update Elyra's version to 4.0.0
Signed-off-by: Luciano Resende <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b93e553 - Browse repository at this point
Copy the full SHA b93e553View commit details -
Update 3rd party extensions to Lab4 compatible
Signed-off-by: Luciano Resende <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0689538 - Browse repository at this point
Copy the full SHA 0689538View commit details -
Initial JupyterLab 4.0 support
Signed-off-by: Luciano Resende <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a44617 - Browse repository at this point
Copy the full SHA 8a44617View commit details
Commits on Jan 5, 2024
-
Signed-off-by: Luciano Resende <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 03b134c - Browse repository at this point
Copy the full SHA 03b134cView commit details -
Signed-off-by: Luciano Resende <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 95332e5 - Browse repository at this point
Copy the full SHA 95332e5View commit details
Commits on Sep 2, 2024
-
Fixed issues with yarn module and build errors.
Updated LauncherModel to accommodate changes in @lumino/algorithm. Resolved build errors related to missing properties and import issues.
Configuration menu - View commit details
-
Copy full SHA for 1d2921d - Browse repository at this point
Copy the full SHA 1d2921dView commit details -
Type and import errors fixed in components.
Resolved type errors related to missing children property in Dropzone.tsx, ExpandableComponent.tsx, and ExpandableErrorDialog.tsx. Fixed import issues in FormEditor.tsx by addressing missing members and correcting import statements. Improved TypeScript type inference and resolved implicit 'any' types in parameters and binding elements in JSONComponent.tsx.
Configuration menu - View commit details
-
Copy full SHA for 2896da0 - Browse repository at this point
Copy the full SHA 2896da0View commit details -
Fixing compile errors for ui-components
TypeScript Error: Incompatibility Component Structure: Clarification Prop Types: Consistency and Definition
Configuration menu - View commit details
-
Copy full SHA for c3f6009 - Browse repository at this point
Copy the full SHA c3f6009View commit details -
Unable to find the documentation regarding changes that made the types unavailable, and defined new types base on available specifications in 3.6x. `Property 'IConfig' does not exist on type 'typeof CodeEditor'.ts(2339)` `Namespace '.../node_modules/@jupyterlab/codeeditor/lib/editor".CodeEditor' has no exported member 'IConfig'.ts(2694)`
Configuration menu - View commit details
-
Copy full SHA for 2405e13 - Browse repository at this point
Copy the full SHA 2405e13View commit details -
python editor is not able to build
Note: to compile python editor, build script editor first
Configuration menu - View commit details
-
Copy full SHA for 80a73c4 - Browse repository at this point
Copy the full SHA 80a73c4View commit details -
Updated CodeBlock to uses updated version of CodeEditor. Changed the implementation base on the source code for IOptions: https://github.com/jupyterlab/jupyterlab/blob/d274f84/packages/codeeditor/src/editor.ts#L553
Configuration menu - View commit details
-
Copy full SHA for aa5ab50 - Browse repository at this point
Copy the full SHA aa5ab50View commit details -
fixed type errors for TagsField
Configuration menu - View commit details
-
Copy full SHA for c08691b - Browse repository at this point
Copy the full SHA c08691bView commit details -
Changed IFormComponentRegistry in metadata and meta-data common to use IFormRendererRegistry for 4.x.
Configuration menu - View commit details
-
Copy full SHA for b14dc7c - Browse repository at this point
Copy the full SHA b14dc7cView commit details -
resolved build error with ui-components
The fields prop was removed from FieldTemplateProps in a recent update. Resolved the integration by passing a templates object to the fields prop. Also added validator, which is now a required prop for 5.x Form. But still need to work on resolving precise type configurations. src: https://rjsf-team.github.io/react-jsonschema-form/docs/migration-guides/v5.x%20upgrade%20guide#rjsfcore-breaking-changes
Configuration menu - View commit details
-
Copy full SHA for f550613 - Browse repository at this point
Copy the full SHA f550613View commit details -
Updated Scala editor to be compatible with 4.x. The code used to use IConfig which is no longer in use. But config options is now currently under IOptions. But we need to see if It displays properly on frontend. But the code currently builds.
Configuration menu - View commit details
-
Copy full SHA for 79ee2e8 - Browse repository at this point
Copy the full SHA 79ee2e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89d0502 - Browse repository at this point
Copy the full SHA 89d0502View commit details -
Revert "Updated yarn.lock for @rjsf/validator-ajv8"
This reverts commit 0f9df32.
Configuration menu - View commit details
-
Copy full SHA for cb219fd - Browse repository at this point
Copy the full SHA cb219fdView commit details -
Updated r-editor to be compatible with Jupyter Lab 4.x. Similar changes to scala-editor.
Configuration menu - View commit details
-
Copy full SHA for 666ed15 - Browse repository at this point
Copy the full SHA 666ed15View commit details -
The fixing method componentRegistry.addRenderer
Because involved react component and does not directly conform to the IFormRenderer interface use assertion to satisfy the type requirements of the addRenderer method. Also improve types definition for imported component in ui-components. Now able to build metadata.
Configuration menu - View commit details
-
Copy full SHA for 6be4527 - Browse repository at this point
Copy the full SHA 6be4527View commit details -
I have resolved most of the errors currently in the pipeline editor however I got stuck attempting to fix the error: error TS2322: Type '{ children: Element[]; theme: any; }' is not assignable to type 'IntrinsicAttributes & { theme: DeepPartial<Theme>; }'. Property 'children' does not exist on type 'IntrinsicAttributes & { theme: DeepPartial<Theme>; }'.
Configuration menu - View commit details
-
Copy full SHA for 98a73d8 - Browse repository at this point
Copy the full SHA 98a73d8View commit details -
Refactored code snippet insertion for JupyterLab 4.x compatibility
Updated CodeSnippetDisplay class to extend MetadataDisplay with the correct props type Replace usage of deprecated ContentFactory, but still exist issue when missing documentation.
Configuration menu - View commit details
-
Copy full SHA for 5ba3399 - Browse repository at this point
Copy the full SHA 5ba3399View commit details -
tried to fix the first code cell creation error, but still have issue when inserting cell to notebook widget
Configuration menu - View commit details
-
Copy full SHA for b6337d0 - Browse repository at this point
Copy the full SHA b6337d0View commit details -
Just figured out how to properly add codecell.
Configuration menu - View commit details
-
Copy full SHA for d00506b - Browse repository at this point
Copy the full SHA d00506bView commit details -
Fixed some method calling base on documentation.
Configuration menu - View commit details
-
Copy full SHA for f235037 - Browse repository at this point
Copy the full SHA f235037View commit details -
Resolved final error in pipeline editor. Now it's able to build.
Configuration menu - View commit details
-
Copy full SHA for 57a506b - Browse repository at this point
Copy the full SHA 57a506bView commit details -
updated code snippet display functionality
- .value.text does not work for updating the content of Cell, Replaced with .setSource. - Refresh no longer exists, replaced with redo. Can't find any documentation about this change. - fixed creation of preview editor
Configuration menu - View commit details
-
Copy full SHA for 16f06f6 - Browse repository at this point
Copy the full SHA 16f06f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13a2e50 - Browse repository at this point
Copy the full SHA 13a2e50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85191c6 - Browse repository at this point
Copy the full SHA 85191c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cd175b - Browse repository at this point
Copy the full SHA 1cd175bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a0ea29 - Browse repository at this point
Copy the full SHA 8a0ea29View commit details -
Configuration menu - View commit details
-
Copy full SHA for c88adbf - Browse repository at this point
Copy the full SHA c88adbfView commit details -
This reverts commit ac10f57.
Configuration menu - View commit details
-
Copy full SHA for 6255f7a - Browse repository at this point
Copy the full SHA 6255f7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 321179c - Browse repository at this point
Copy the full SHA 321179cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f4ab3d9 - Browse repository at this point
Copy the full SHA f4ab3d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03367bf - Browse repository at this point
Copy the full SHA 03367bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0d82ea - Browse repository at this point
Copy the full SHA a0d82eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 61a3e3c - Browse repository at this point
Copy the full SHA 61a3e3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71dbca6 - Browse repository at this point
Copy the full SHA 71dbca6View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba63cdf - Browse repository at this point
Copy the full SHA ba63cdfView commit details -
Revert "Update build.yml for GitHub workflow"
This reverts commit b2630c7.
Configuration menu - View commit details
-
Copy full SHA for 88de1e7 - Browse repository at this point
Copy the full SHA 88de1e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7245e13 - Browse repository at this point
Copy the full SHA 7245e13View commit details -
Revert "Update build.yml for yarn workflow error"
This reverts commit 9ab11eb.
Configuration menu - View commit details
-
Copy full SHA for 5991055 - Browse repository at this point
Copy the full SHA 5991055View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b7817d - Browse repository at this point
Copy the full SHA 4b7817dView commit details -
trying to adjust workflow build issue
Configuration menu - View commit details
-
Copy full SHA for abee693 - Browse repository at this point
Copy the full SHA abee693View commit details -
Configuration menu - View commit details
-
Copy full SHA for 897459e - Browse repository at this point
Copy the full SHA 897459eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c46ec87 - Browse repository at this point
Copy the full SHA c46ec87View commit details