Skip to content

Commit

Permalink
[ci] release 2023-04 (#817)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 7e1a787 commit 8d21adc
Show file tree
Hide file tree
Showing 27 changed files with 115 additions and 106 deletions.
5 changes: 0 additions & 5 deletions .changeset/clean-dancers-exercise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-numbers-admire.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/eleven-pandas-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-comics-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-pets-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-ducks-wonder.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/nervous-bears-look.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/polite-deers-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-terms-unite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-news-retire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-insects-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-pens-live.md

This file was deleted.

20 changes: 20 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @shopify/cli-hydrogen

## 4.1.2

### Patch Changes

- Add command to pull environment variables from a Hydrogen storefront defined in the Shopify Admin ([#809](https://github.com/Shopify/hydrogen/pull/809)) by [@graygilmore](https://github.com/graygilmore)

- Update docs links on successful project creation ([#810](https://github.com/Shopify/hydrogen/pull/810)) by [@gfscott](https://github.com/gfscott)

- New `--debug` flag for the `dev` command that attaches a Node inspector to the development server. ([#869](https://github.com/Shopify/hydrogen/pull/869)) by [@frandiox](https://github.com/frandiox)

- Ensure request logs are shown in MiniOxygen during development. ([#836](https://github.com/Shopify/hydrogen/pull/836)) by [@frandiox](https://github.com/frandiox)

Provide [custom Oxygen headers](https://shopify.dev/docs/custom-storefronts/oxygen/worker-runtime-apis#custom-headers) in local MiniOxygen.

- Add new commands for merchants to be able to list and link Hydrogen storefronts on Shopify ([#784](https://github.com/Shopify/hydrogen/pull/784)) by [@graygilmore](https://github.com/graygilmore)

- Updated dependencies [[`025385b6`](https://github.com/Shopify/hydrogen/commit/025385b6f9f58a76ffb15d9f505dfbf2b5e21427), [`0a009a3b`](https://github.com/Shopify/hydrogen/commit/0a009a3ba06dadd8f9d799575d7f88590f82a966)]:
- @shopify/remix-oxygen@1.0.6
- @shopify/hydrogen-react@2023.4.1

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/oclif.manifest.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"version": "4.1.1",
"version": "4.1.2",
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"scripts": {
Expand All @@ -27,8 +27,8 @@
},
"peerDependencies": {
"@remix-run/react": "^1.15.0",
"@shopify/hydrogen-react": "^2023.4.0",
"@shopify/remix-oxygen": "^1.0.5"
"@shopify/hydrogen-react": "^2023.4.1",
"@shopify/remix-oxygen": "^1.0.6"
},
"dependencies": {
"@oclif/core": "2.1.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-hydrogen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@shopify/cli-hydrogen": "^4.1.1"
"@shopify/cli-hydrogen": "^4.1.2"
},
"bin": "dist/create-app.js",
"files": [
Expand Down
15 changes: 15 additions & 0 deletions packages/hydrogen-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @shopify/hydrogen-react

## 2023.4.1

### Patch Changes

- Adds `parseGid()` which is a helper function that takes in a [Shopify GID](https://shopify.dev/docs/api/usage/gids) and returns the `resource` and `id` from it. For example: ([#845](https://github.com/Shopify/hydrogen/pull/845)) by [@frehner](https://github.com/frehner)

```js
import {parseGid} from '@shopify/hydrogen-react';

const {id, resource} = parseGid('gid://shopify/Order/123');

console.log(id); // 123
console.log(resource); // Order
```

## 2023.4.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/hydrogen-react",
"version": "2023.4.0",
"version": "2023.4.1",
"description": "React components, hooks, and utilities for creating custom Shopify storefronts",
"homepage": "https://github.com/Shopify/hydrogen/tree/main/packages/hydrogen-react",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/hydrogen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @shopify/hydrogen

## 2023.4.1

### Patch Changes

- Adds `parseGid()` which is a helper function that takes in a [Shopify GID](https://shopify.dev/docs/api/usage/gids) and returns the `resource` and `id` from it. For example: ([#845](https://github.com/Shopify/hydrogen/pull/845)) by [@frehner](https://github.com/frehner)

```js
import {parseGid} from '@shopify/hydrogen-react';

const {id, resource} = parseGid('gid://shopify/Order/123');

console.log(id); // 123
console.log(resource); // Order
```

- Avoid warning about missing `buyerIp` when using private access tokens in development. ([#836](https://github.com/Shopify/hydrogen/pull/836)) by [@frandiox](https://github.com/frandiox)

- Updated dependencies [[`0a009a3b`](https://github.com/Shopify/hydrogen/commit/0a009a3ba06dadd8f9d799575d7f88590f82a966)]:
- @shopify/hydrogen-react@2023.4.1

## 2023.4.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/hydrogen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@shopify:registry": "https://registry.npmjs.org"
},
"type": "module",
"version": "2023.4.0",
"version": "2023.4.1",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/index.cjs",
"module": "dist/production/index.js",
Expand Down Expand Up @@ -54,7 +54,7 @@
"dist"
],
"dependencies": {
"@shopify/hydrogen-react": "2023.4.0",
"@shopify/hydrogen-react": "2023.4.1",
"react": "^18.2.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = '2023.4.0';
export const LIB_VERSION = '2023.4.1';
21 changes: 21 additions & 0 deletions packages/remix-oxygen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @shopify/remix-oxygen

## 1.0.6

### Patch Changes

- Add a default `Powered-By: Shopify-Hydrogen` header. It can be disabled by passing `poweredByHeader: false` in the configuration object of `createRequestHandler`: ([#872](https://github.com/Shopify/hydrogen/pull/872)) by [@blittle](https://github.com/blittle)

```ts
import {createRequestHandler} from '@shopify/remix-oxygen';

export default {
async fetch(request) {
// ...
const handleRequest = createRequestHandler({
// ... other properties included
poweredByHeader: false,
});
// ...
},
};
```

## 1.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-oxygen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@shopify:registry": "https://registry.npmjs.org"
},
"type": "module",
"version": "1.0.5",
"version": "1.0.6",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/index.cjs",
"module": "dist/production/index.js",
Expand Down
19 changes: 19 additions & 0 deletions templates/demo-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# demo-store

## 1.0.0

### Major Changes

- All routes were changed from having a `$lang` path parameter to having a `$locale` path parameter. See #860 for more details. ([#864](https://github.com/Shopify/hydrogen/pull/864)) by [@frehner](https://github.com/frehner)

### Patch Changes

- Add `.shopify` to the .gitignore file to support upcoming CLI changes ([#784](https://github.com/Shopify/hydrogen/pull/784)) by [@graygilmore](https://github.com/graygilmore)

- Move GraphQL fragments from the beginning of the template literal to the end of it, so that we don't get the EOF error in VSCode. ([#833](https://github.com/Shopify/hydrogen/pull/833)) by [@frehner](https://github.com/frehner)

- Updated Tailwind configuration file with a new dynamic opacity placeholder for colors ([#851](https://github.com/Shopify/hydrogen/pull/851)) by [@blanklob](https://github.com/blanklob)

- Updated dependencies [[`685bb696`](https://github.com/Shopify/hydrogen/commit/685bb696a9bd03b8a7fe8bcefa3630d6ba0c99c8), [`025385b6`](https://github.com/Shopify/hydrogen/commit/025385b6f9f58a76ffb15d9f505dfbf2b5e21427), [`35a87107`](https://github.com/Shopify/hydrogen/commit/35a871073941e008e104e9c491719d4cade8b49a), [`33f33edd`](https://github.com/Shopify/hydrogen/commit/33f33edd205bbc113047533c71c71ad53bc91b3e), [`0a009a3b`](https://github.com/Shopify/hydrogen/commit/0a009a3ba06dadd8f9d799575d7f88590f82a966), [`9c2e67c5`](https://github.com/Shopify/hydrogen/commit/9c2e67c52ec1c77062cb667505560afb757372a9), [`9c2e67c5`](https://github.com/Shopify/hydrogen/commit/9c2e67c52ec1c77062cb667505560afb757372a9), [`3d458e2b`](https://github.com/Shopify/hydrogen/commit/3d458e2b3c66a4daac798598cadba38b9ecd8a1e)]:
- @shopify/cli-hydrogen@4.1.2
- @shopify/remix-oxygen@1.0.6
- @shopify/hydrogen@2023.4.1

## 0.2.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions templates/demo-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "demo-store",
"private": true,
"sideEffects": false,
"version": "0.2.1",
"version": "1.0.0",
"scripts": {
"dev": "shopify hydrogen dev",
"build": "shopify hydrogen build",
Expand All @@ -20,9 +20,9 @@
"@headlessui/react": "^1.7.2",
"@remix-run/react": "1.15.0",
"@shopify/cli": "3.45.0",
"@shopify/cli-hydrogen": "^4.1.1",
"@shopify/hydrogen": "^2023.4.0",
"@shopify/remix-oxygen": "^1.0.5",
"@shopify/cli-hydrogen": "^4.1.2",
"@shopify/hydrogen": "^2023.4.1",
"@shopify/remix-oxygen": "^1.0.6",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"graphql": "^16.6.0",
Expand Down
6 changes: 3 additions & 3 deletions templates/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"dependencies": {
"@remix-run/react": "1.15.0",
"@shopify/cli": "3.45.0",
"@shopify/cli-hydrogen": "^4.1.1",
"@shopify/hydrogen": "^2023.4.0",
"@shopify/remix-oxygen": "^1.0.5",
"@shopify/cli-hydrogen": "^4.1.2",
"@shopify/hydrogen": "^2023.4.1",
"@shopify/remix-oxygen": "^1.0.6",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.6.6",
Expand Down
6 changes: 3 additions & 3 deletions templates/skeleton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"dependencies": {
"@remix-run/react": "1.15.0",
"@shopify/cli": "3.45.0",
"@shopify/cli-hydrogen": "^4.1.1",
"@shopify/hydrogen": "^2023.4.0",
"@shopify/remix-oxygen": "^1.0.5",
"@shopify/cli-hydrogen": "^4.1.2",
"@shopify/hydrogen": "^2023.4.1",
"@shopify/remix-oxygen": "^1.0.6",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.6.6",
Expand Down

0 comments on commit 8d21adc

Please sign in to comment.