my favorite part is about gdscript changes.
with 2.x, code should be something like this.
get_node("name").set_pos(get_node("name").get_pos() + Vector2(1,0))
but with 3.x, it can be done like this
$name.position.x += 1
it's really simple and intuitive.