Skip to content

Commit

Permalink
feature #1317 [Turbo] Allowing version 8 (weaverryan)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.x branch.

Discussion
----------

[Turbo] Allowing version 8

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes
| Issues        | None
| License       | MIT

Turbo 8 is now beta! This allows Turbo 8 to be installed. There are no BC breaks that would affect us that i'm aware of, which is not surprising as we do very little with Turbo other than supply it to the user.

Once we merge and release this, users installing TurboBundle will get v8 by default, even while in beta stage. From AssetMapper's perspective, that happens because https://data.jsdelivr.com/v1/packages/npm/`@hotwired`/turbo/resolved already selects beta. I can't find any specifier - e.g. https://data.jsdelivr.com/v1/packages/npm/`@hotwired`/turbo/resolved?specifier=stable that selects the latest, non-beta version.

Cheers!

Commits
-------

7fe845b Allowing version 8 of Turbo
  • Loading branch information
weaverryan committed Feb 7, 2024
2 parents b275c44 + 7fe845b commit c1b369e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Turbo/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
},
"importmap": {
"@hotwired/turbo": "^7.0.1",
"@hotwired/turbo": "^7.1.0 || ^8.0",
"@hotwired/stimulus": "^3.0.0"
}
},
Expand All @@ -30,7 +30,7 @@
"@hotwired/stimulus": "^3.0.0"
},
"devDependencies": {
"@hotwired/turbo": "^7.1.0",
"@hotwired/turbo": "^7.1.0 || ^8.0",
"@hotwired/stimulus": "^3.0.0"
}
}

0 comments on commit c1b369e

Please sign in to comment.