Releases: Weaverse/pilot
Releases · Weaverse/pilot
v2.6.10
What's Changed
- Add global loading component by @paul-phan in #111
- Dev by @hta218 in #112
- Update to latest Hydrogen version by @paul-phan in #113
- Refactor by @paul-phan in #115
- Weaverse v3.1.7 by @paul-phan in #116
- Dev by @hta218 in #117
- Update .gitignore to include pnpm lock file by @hta218 in #118
- Dev by @hta218 in #119
- Refactor, update Weaverse v3.1.9 by @paul-phan in #120
- Refactoring theme, update sections by @hta218 in #121
- Dev by @hta218 in #122
- Merge dev by @hta218 in #123
Full Changelog: v2.6.5...v2.6.10
v2.6.5
What's Changed
- add contact form by @viethung26 in #103
- Dev by @hta218 in #105
- Migrate to Vite by @paul-phan in #106
- Update Cart & New Analytics integration by @paul-phan in #107
- Dev by @hta218 in #108
- Update theme schema & atom components by @hta218 in #109
- Dev by @hta218 in #110
Full Changelog: v2.5.3...v2.6.5
v2.5.3
What's Changed
- Add Product List demo by @paul-phan in #100
- Add /cart/add route by @paul-phan in #101
- Update image hotspot and description by @dangthang1903 in #102
- Refactor components/sections by @hta218 in #104
Full Changelog: v2.5.1...v2.5.3
v2.5.1
v2.5.0
What's Changed
- Weaverse SDKs v2.8.11 by @paul-phan in #77
- Fix Single product demo by @paul-phan in #79
- Update meta-demo.tsx by @paul-phan in #80
- Experimenting View Transition API by @paul-phan in #81
- Replace google font with @fontsource/roboto by @paul-phan in #82
- Add package-lock.json file as npm ci will require it for build by @paul-phan in #83
- Use
shrinkwrap
instead by @paul-phan in #84 - Update product page by @viethung26 in #85
- Add more sections/components by @paul-phan in #87
- Weaverse SDKs v2.9.0 by @paul-phan in #88
- Ignore script by default since we got bug throw from @shopify/oxygen by @paul-phan in #89
- Fix minor bugs by @viethung26 in #90
- Update support for custom page template by @paul-phan in #93
- Fix Input type prop not being passed by @paul-phan in #94
- Update project to use new Customer Account API by @paul-phan in #95
- v2.5.0 by @hta218 in #96
Full Changelog: v2.4.2...v2.5.0
v2.4.2
What's Changed
- Update colection header section by @dangthang1903 in #53
- Add count down section by @dangthang1903 in #52
- Dev by @paul-phan in #54
- feat: add deploy to Vercel button by @paul-phan in #55
- v2.4.0 by @paul-phan in #56
- Update more sections by @dangthang1903 in #57
- v2.8.0 by @paul-phan in #59
- chore: allow legacy peer deps by @paul-phan in #60
- add swatches by @viethung26 in #62
- v2.4.1 by @hta218 in #61
- update swatch by @viethung26 in #64
- [WIP] v2.4.1 by @hta218 in #63
- update Weaverse SDKs v2.8.1 by @paul-phan in #65
- Update more sections and add component button by @dangthang1903 in #58
- Dev by @paul-phan in #66
- add product media by @viethung26 in #67
- Update image with text section by @dangthang1903 in #68
- remove git-hooks by @paul-phan in #69
- Dev by @paul-phan in #70
- chore: fix minor bug by @viethung26 in #71
- Update toolbar for child components by @dangthang1903 in #74
- chore: add metaobject demo section by @viethung26 in #75
Full Changelog: v2.3.1...v2.4.2
v2.3.1
v2.3.0
v2.2.4
Patch changes
- Upgrade
@weaverse/hydrogen
tov2.1.2
- Save
cache
&waitUntil
to weaverse client
// <root>/app/weaverse/create-weaverse.server.ts
export function createWeaverseClient(args: CreateWeaverseArgs) {
return new WeaverseClient({
...args,
countries,
themeSchema,
components,
});
}
v2.2.3
Minor changes
- Upgrade
@weaverse/hydrogen
tov2.1.0
- Load Weaverse's page without needing to pass loader's
args
export async function loader(args: RouteLoaderArgs) {
return defer({
weaverseData: await context.weaverse.loadPage(),
// More route's loader data...
});
}
weaverse
client is now available in component's loader function
export let loader = async (args: ComponentLoaderArgs<HeroSectionData>) => {
let {weaverse, data} = args;
let {hero} = await weaverse.storefront.query<SeoCollectionContentQuery>(
HOMEPAGE_SEO_QUERY,
{
variables: {handle: data.collectionHandle || 'frontpage'},
},
);
return hero;
};
- Added 2 new sections: Collection Hero (#11) & Hero Image (#14). Thanks @dangthang1903 for his first contributions to Pilot!