Skip to content

Commit 09d51b8

Browse files
Prepare 2.2.1
1 parent 7d9230d commit 09d51b8

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
uses: ./.github/workflows/tests.yml
2222
with:
2323
version: 2.2.x
24-
last_published_version: 2.2.0
24+
last_published_version: 2.2.1
2525
use_default_github_ref: true
2626
secrets: inherit

.github/workflows/deploy-2.2.x.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: ./.github/workflows/tests.yml
1919
with:
2020
version: 2.2.x
21-
last_published_version: 2.2.0
21+
last_published_version: 2.2.1
2222
secrets:
2323
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
2424
PACKAGIST_URL: ${{ secrets.PACKAGIST_URL }}
@@ -32,7 +32,7 @@ jobs:
3232
uses: ./.github/workflows/deploy-int.yml
3333
with:
3434
version: 2.2.x
35-
last_published_version: 2.2.x-dev
35+
last_published_version: 2.2.1
3636
secrets:
3737
AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }}
3838
AWS_HOSTNAME: ${{ secrets.AWS_HOSTNAME_STABLE }}

.github/workflows/deploy-demo-llm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: ./.github/workflows/tests.yml
1717
with:
1818
version: ${{ github.ref_name }}
19-
last_published_version: 2.2.0
19+
last_published_version: 2.2.1
2020
secrets: inherit
2121

2222
deploy-demo-llm:
@@ -28,7 +28,7 @@ jobs:
2828
uses: ./.github/workflows/deploy-int.yml
2929
with:
3030
version: ${{ github.ref_name }}
31-
last_published_version: 2.2.0
31+
last_published_version: 2.2.1
3232
secrets:
3333
AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }}
3434
AWS_HOSTNAME: ${{ secrets.AWS_HOSTNAME_DEMO_LLM }}

.github/workflows/deploy-demo-oro.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: ./.github/workflows/tests.yml
1717
with:
1818
version: ${{ github.ref_name }}
19-
last_published_version: 2.2.0
19+
last_published_version: 2.2.1
2020
secrets: inherit
2121

2222
deploy-demo-shopware:
@@ -28,7 +28,7 @@ jobs:
2828
uses: ./.github/workflows/deploy-int.yml
2929
with:
3030
version: ${{ github.ref_name }}
31-
last_published_version: 2.2.0
31+
last_published_version: 2.2.1
3232
add_sample_data: false
3333
secrets:
3434
AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }}

.github/workflows/deploy-demo-shopware.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: ./.github/workflows/tests.yml
1717
with:
1818
version: ${{ github.ref_name }}
19-
last_published_version: 2.2.0
19+
last_published_version: 2.2.1
2020
secrets: inherit
2121

2222
deploy-demo-shopware:
@@ -28,7 +28,7 @@ jobs:
2828
uses: ./.github/workflows/deploy-int.yml
2929
with:
3030
version: ${{ github.ref_name }}
31-
last_published_version: 2.2.0
31+
last_published_version: 2.2.1
3232
secrets:
3333
AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }}
3434
AWS_HOSTNAME: ${{ secrets.AWS_HOSTNAME_DEMO_SHOPWARE }}

.github/workflows/deploy-demo-sylius.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: ./.github/workflows/tests.yml
1717
with:
1818
version: ${{ github.ref_name }}
19-
last_published_version: 2.2.0
19+
last_published_version: 2.2.1
2020
secrets: inherit
2121

2222
deploy-demo-sylius:
@@ -28,7 +28,7 @@ jobs:
2828
uses: ./.github/workflows/deploy-int.yml
2929
with:
3030
version: ${{ github.ref_name }}
31-
last_published_version: 2.2.0
31+
last_published_version: 2.2.1
3232
secrets:
3333
AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }}
3434
AWS_HOSTNAME: ${{ secrets.AWS_HOSTNAME_DEMO_SYLIUS }}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ init-dev-env: .env ## Initialize current environment with dev repositories
8383
cd front && yarn install --frozen-lockfile --network-timeout 120000 && cd -
8484
sh ./hooks/initHooksPath.sh
8585

86-
switch-dev-env: ## Switch current environment with dev repositories on a composer version, pass the parameter "v=" to set the composer version, example: make switch-dev-env v=2.0.0
87-
@$(eval v ?= 2.2.0)
86+
switch-dev-env: ## Switch current environment with dev repositories on a composer version, pass the parameter "v=" to set the composer version, example: make switch-dev-env v=2.2.1
87+
@$(eval v ?= 2.2.1)
8888
$(DOCKER_COMP) up -d --wait php # Wait php container to be ready
8989
$(COMPOSER) config repositories.gally-standard '{ "type": "path", "url": "./packages/gally-standard", "options": { "versions": { "gally/gally-standard": "$(v)"}} }'
9090
$(COMPOSER) config repositories.gally-premium '{ "type": "path", "url": "./packages/gally-premium", "options": { "versions": { "gally/gally-premium": "$(v)"}} }'

api/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"doctrine/doctrine-bundle": "^2.7",
1212
"doctrine/doctrine-migrations-bundle": "^3.2",
1313
"doctrine/orm": "^2.12",
14-
"gally/gally-standard": "2.2.0",
14+
"gally/gally-standard": "2.2.1",
1515
"lexik/jwt-authentication-bundle": "^2.14",
1616
"nelmio/cors-bundle": "^2.2",
1717
"opensearch-project/opensearch-php": "^2.3",

api/composer.lock

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

front/example-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@elastic-suite/gally-admin-shared": "2.2.0",
6+
"@elastic-suite/gally-admin-shared": "2.2.1",
77
"@emotion/react": "11.10.4",
88
"@emotion/styled": "11.10.4",
99
"@mui/icons-material": "5.10.6",

0 commit comments

Comments
 (0)