Skip to content

Commit fedfbad

Browse files
committed
Upgrade to use v2.x release candidate package versions
1 parent b41ca0c commit fedfbad

File tree

8 files changed

+36
-14
lines changed

8 files changed

+36
-14
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ This serves two purposes:
8686
- **Dependency:** Updated illuminate/support and illuminate/view to ^11.0 in [#2141](https://github.com/hydephp/develop/pull/2141)
8787
- **Dependency:** Updated minimum PHP requirement to 8.2 in [#2141](https://github.com/hydephp/develop/pull/2141)
8888
- **Dependency:** Upgraded from Laravel 10 to Laravel 11 in [#2141](https://github.com/hydephp/develop/pull/2141)
89+
- **Dependency:** Upgraded to HydeFront v4 in [#2214](https://github.com/hydephp/develop/pull/2214)
8990
- **Medium:** The `route` function will now throw a `RouteNotFoundException` if the route does not exist in [#1741](https://github.com/hydephp/develop/pull/1741)
9091
- **Minor:** Changed the default build task message to make it more concise in [#1659](https://github.com/hydephp/develop/pull/1659)
9192
- **Minor:** Data collection files are now validated for syntax errors during discovery in [#1732](https://github.com/hydephp/develop/pull/1732)

package-lock.json

Lines changed: 27 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"@tailwindcss/typography": "^0.5.15",
1010
"@tailwindcss/vite": "^4.1.4",
1111
"autoprefixer": "^10.4.20",
12-
"hydefront": "^3.4.1",
12+
"hyde-vite-plugin": "^1.0.0-RC.1",
13+
"hydefront": "^4.0.0-RC.1",
1314
"postcss": "^8.4.49",
1415
"prettier": "3.3.3",
1516
"tailwindcss": "^4.1.4",

packages/framework/src/Facades/HydeFront.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class HydeFront
1818
{
1919
/** @var string The HydeFront SemVer tag to load. This constant is set to match the styles used for the installed framework version. */
20-
protected const HYDEFRONT_VERSION = 'v3.4';
20+
protected const HYDEFRONT_VERSION = 'v4.0';
2121

2222
/** @var string The HydeFront CDN path pattern used to assemble CDN links. */
2323
protected const HYDEFRONT_CDN_URL = 'https://cdn.jsdelivr.net/npm/hydefront@%s/dist/%s';

packages/framework/tests/Unit/Facades/HydeFrontFacadeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testVersionReturnsString()
3535

3636
public function testCdnLinkReturnsCorrectUrl()
3737
{
38-
$expected = 'https://cdn.jsdelivr.net/npm/hydefront@v3.4/dist/app.css';
38+
$expected = 'https://cdn.jsdelivr.net/npm/hydefront@v4.0/dist/app.css';
3939
$this->assertSame($expected, HydeFront::cdnLink());
4040
}
4141

packages/hyde/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"@tailwindcss/typography": "^0.5.15",
1010
"@tailwindcss/vite": "^4.1.4",
1111
"autoprefixer": "^10.4.20",
12+
"hyde-vite-plugin": "^0.1.0",
1213
"hydefront": "^3.4.1",
1314
"postcss": "^8.4.49",
1415
"prettier": "3.3.3",

packages/hydefront/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/hydefront/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hydefront",
3-
"version": "3.4.1",
3+
"version": "4.0.0-RC.1",
44
"description": "Frontend assets for HydePHP",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)