-
Notifications
You must be signed in to change notification settings - Fork 214
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
Remove deprecated 3.x APIs in core-common #7572
Draft
MichaelSwigerAtBentley
wants to merge
23
commits into
master
Choose a base branch
from
mike/remove-deprecated-corecommon
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+145
−313
Draft
Changes from 14 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
274667f
Remove isManagedWithIModel
MichaelSwigerAtBentley 2b29b19
Remove override methods
MichaelSwigerAtBentley 80e67e0
Remove getLocalizedStringWithNamespace
MichaelSwigerAtBentley c0dc76a
Remove TerrainProviderName
MichaelSwigerAtBentley 6e2f826
Remove deprecated props
MichaelSwigerAtBentley 1a9a2c8
Remove BackendTypes
MichaelSwigerAtBentley 7036308
Update NextVersion
MichaelSwigerAtBentley 582f844
Update NextVersion
MichaelSwigerAtBentley 76974ed
BackgroundMapSettings Removal
MichaelSwigerAtBentley 3123e2d
Merge branch 'master' of https://github.com/iTwin/itwinjs-core into m…
MichaelSwigerAtBentley 15c7a2a
Remove RenderMaterial.Params
MichaelSwigerAtBentley 8af7cde
Remove RenderTexture.Params
MichaelSwigerAtBentley a5de240
Remove getViewThumbnail
MichaelSwigerAtBentley c812de2
Revert "BackgroundMapSettings Removal"
MichaelSwigerAtBentley c7846d9
Update Barrel File
MichaelSwigerAtBentley c18fbba
Update override tests
MichaelSwigerAtBentley 6df6e5c
Merge branch 'master' of https://github.com/iTwin/itwinjs-core into m…
MichaelSwigerAtBentley 8c3ff42
Revert "Remove getViewThumbnail"
MichaelSwigerAtBentley 89d1d50
Remove Deprecated Props from ViewStateHydrator
MichaelSwigerAtBentley 3d1e450
Swap Backend for node:stream
MichaelSwigerAtBentley b689236
Revert "Remove BackendTypes"
MichaelSwigerAtBentley 9dfb919
Swap out RenderTexture.Params
MichaelSwigerAtBentley f85395b
Revert "Swap Backend for node:stream"
MichaelSwigerAtBentley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
These params are also still in use, I'm going to try swapping them out for CreateRenderMaterialArgs
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.
RenderTexture.Params is being using in multiple places in core\frontend
I was able to change one of the files, ParseImdlDoucment.ts, but I'm not sure if its implemented correctly as there is some logic around parsing colors.
@aruniverse @ben-polinsky Who would be best to talk to for more info on how to proceed.
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.
@pmconne will be your best starting point
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.
Looks like some of the core-frontend usage is being cleaned up in #7591.
Bear in mind that removing deprecated APIs just means making them unavailable to consumers of the public API. While generally we'll want to delete the APIs entirely, if it's too complicated to clean up our internal usage of a particular one, we can instead move it to /src/internal, and export it from cross-package.ts if it's used in other packages within itwinjs-core.