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

[Merged by Bors] - Migration guide 0.9-0.10 #530

Closed
wants to merge 27 commits into from

Conversation

IceSentry
Copy link
Contributor

@IceSentry IceSentry commented Feb 4, 2023

First draft of the 0.10 migration guide.

This is generated by #469 and then modified manually

Since this is easy to generate, I will re-generate it multiple time before release so changing the contents of guides is encouraged, but changing ordering should be done closer to release to avoid dealing with multiple conflicts.

For this migration guide, I added tags for areas of each PR, added a bit of spacing and a line for each heading
image

This is why there are some css files in this pr.

Copy link
Member

@james7132 james7132 left a comment

Choose a reason for hiding this comment

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

Should we consider a scheme for grouping/prioritizing certain changes? The ones that break builds are immediately obvious, but the behavioral/default changes, especially the ones that affect safety, seem like they deserve to be highlighted separately.

content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
<div class="migration-guide-area-tag">ECS</div>
</div>

- Safety invariants on `bevy_ptr` types’ `new` `byte_add` and `byte_offset` methods have been changed. All callers should re-audit for soundness.
Copy link
Member

Choose a reason for hiding this comment

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

Breaking changes to safety invariants seem like they could insidiously hard to find, and the consequences result in UB. Should we show some higher priority to these?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Right now, the only sort is by area and then by close date. I have no issue with changing ordering, although, I think this should keep the area ordering. So in this case, keep it close to other ECS related guides. As mentioned in another comment, I'd prefer waiting until closer to release before actually moving it so I'll leave the conversation opened.

content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
@TimJentzsch
Copy link
Contributor

GamepadEventRaw and GamepadEventType have been removed and do not appear in the migration guide

IceSentry and others added 4 commits February 18, 2023 15:20
Co-authored-by: James Liu <contact@jamessliu.com>
more clean up


fix pipeline rendering guide


more guides


todo


clean up


re-generate


clean up


trying out some new style


style


clean up


update style


re-generate


manual clean up


clean up


clean up


re generate headings and soft breaks
@IceSentry
Copy link
Contributor Author

bors try

bors bot added a commit that referenced this pull request Feb 20, 2023
@bors
Copy link

bors bot commented Feb 20, 2023

try

Build failed:

Copy link
Contributor

@afonsolage afonsolage left a comment

Choose a reason for hiding this comment

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

Made a full pass on all changes. I wasn't able to check if all migration guides are correct, but I did what I could.

content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
content/learn/book/migration-guides/0.9-0.10/_index.md Outdated Show resolved Hide resolved
Copy link
Contributor

@nicopap nicopap left a comment

Choose a reason for hiding this comment

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

When migrating to 0.10.0, I had to replace usage of

Before:

// cam: Camera
cam.target
  .get_render_target_info(&windows, &images)?
  .physical_size
  .as_vec2()

After:

// cam: Camera
cam.physical_viewport_size()?.as_vec2()

Not sure where this goes, but it's a change I had to do when migrating

@james7132
Copy link
Member

Just leaving a note here not to forget to add bevyengine/bevy#7778 if it gets merged before 0.10 is ready. It's not necessarily a breaking change, but it does document a new safety invariant that should be publicly documented in some way.

IceSentry and others added 4 commits March 3, 2023 00:55
Co-authored-by: Edgar Geier <geieredgar@gmail.com>
Co-authored-by: Afonso Lage <lage.afonso@gmail.com>
Co-authored-by: TimJentzsch <TimJentzsch.github.com@timjen.net>
Co-authored-by: Rob Parrett <robparrett@gmail.com>
Co-authored-by: ickshonpe <david.curthoys@googlemail.com>
Co-authored-by: Rob Parrett <robparrett@gmail.com>
@IceSentry
Copy link
Contributor Author

@nicopap it looks like all those functions still exists, so I'm not sure anything needs to be migrated.

Co-authored-by: Liam Gallagher <ljpgallagher@xtra.co.nz>

### [Remove `TextError::ExceedMaxTextAtlases(usize)` variant](https://github.com/bevyengine/bevy/pull/6796)

<div class="migration-guide-area-tags">
Copy link
Member

Choose a reason for hiding this comment

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

Formatting is broken in the preview starting here. Is there an unclosed tag or something?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It seems to work correctly for me when running it with zola locally, do you have a screenshot?

@alice-i-cecile
Copy link
Member

alice-i-cecile commented Mar 4, 2023

A lot of users have been asking about multiple fixed timesteps, so here's a suggestion to add a section.

Multiple fixed timesteps

Only one fixed timestep is supported. If you were relying on this functionality, you should swap to using timers, via the on_timer(MY_PERIOD) run condition.

Co-authored-by: JoJoJet <21144246+JoJoJet@users.noreply.github.com>
@IceSentry
Copy link
Contributor Author

IceSentry commented Mar 4, 2023

@alice-i-cecile do you know what PR is related to this change? Should I just add it to the schedule_v3 section?

@alice-i-cecile
Copy link
Member

It was part of the ScheduleV3 rewrite. Just stick it in that section.

IceSentry and others added 2 commits March 4, 2023 16:19
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
Copy link
Member

@cart cart left a comment

Choose a reason for hiding this comment

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

Great work yall! Another fantastic release :)

@cart
Copy link
Member

cart commented Mar 4, 2023

bors r+

bors bot pushed a commit that referenced this pull request Mar 5, 2023
First draft of the 0.10 migration guide.

This is generated by #469 and then modified manually

Since this is easy to generate, I will re-generate it multiple time before release so changing the contents of guides is encouraged, but changing ordering should be done closer to release to avoid dealing with multiple conflicts.

For this migration guide, I added tags for areas of each PR, added a bit of spacing and a line for each heading
![image](https://user-images.githubusercontent.com/8348954/216899165-6f99a25f-e32d-42a4-bad4-8e23c7aac366.png)

This is why there are some css files in this pr.


Co-authored-by: IceSentry <IceSentry@users.noreply.github.com>
Co-authored-by: Carter Anderson <mcanders1@gmail.com>
@bors
Copy link

bors bot commented Mar 5, 2023

Pull request successfully merged into master.

Build succeeded:

@bors bors bot changed the title Migration guide 0.9-0.10 [Merged by Bors] - Migration guide 0.9-0.10 Mar 5, 2023
@bors bors bot closed this Mar 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.