Skip to content

Commit 4be8515

Browse files
committed
Merge branch 'main' into feat/llmo-global-config
2 parents e0d616c + 03dacc9 commit 4be8515

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2440
-2055
lines changed

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/actions/configure-aws/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
steps:
1818
- name: Configure AWS Credentials
1919
id: creds
20-
uses: aws-actions/configure-aws-credentials@v4
20+
uses: aws-actions/configure-aws-credentials@v5
2121
with:
2222
aws-region: us-east-1
2323
role-to-assume: ${{ inputs.aws_role_to_assume }}

.github/actions/setup-node-npm/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: "composite"
66
steps:
77
- name: Set up Node
8-
uses: actions/setup-node@v4
8+
uses: actions/setup-node@v5
99
with:
1010
node-version: 22.18
1111

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
persist-credentials: 'false'
2222
- name: Setup Node & NPM
@@ -41,7 +41,7 @@ jobs:
4141
if: github.ref == 'refs/heads/main'
4242
steps:
4343
- name: Check out
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
persist-credentials: 'false'
4747

@@ -70,7 +70,7 @@ jobs:
7070
if: github.ref == 'refs/heads/main'
7171
steps:
7272
- name: Check out
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v5
7474
with:
7575
persist-credentials: 'false'
7676

@@ -95,7 +95,7 @@ jobs:
9595
if: github.ref != 'refs/heads/main'
9696
steps:
9797
- name: Check out
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999
with:
100100
persist-credentials: 'false'
101101

.github/workflows/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup Node & NPM
2020
uses: ./.github/actions/setup-node-npm

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## [1.176.6](https://github.com/adobe/spacecat-api-service/compare/v1.176.5...v1.176.6) (2025-09-05)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.4.21 ([#1225](https://github.com/adobe/spacecat-api-service/issues/1225)) ([fe33c6c](https://github.com/adobe/spacecat-api-service/commit/fe33c6ceb9ff3ef1f73504e7407aa09a3217c374))
7+
8+
## [1.176.5](https://github.com/adobe/spacecat-api-service/compare/v1.176.4...v1.176.5) (2025-09-05)
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.4.20 ([#1223](https://github.com/adobe/spacecat-api-service/issues/1223)) ([c1e1824](https://github.com/adobe/spacecat-api-service/commit/c1e1824b01fa358675bb1da9ffca9f3840b8481e))
14+
15+
## [1.176.4](https://github.com/adobe/spacecat-api-service/compare/v1.176.3...v1.176.4) (2025-09-05)
16+
17+
18+
### Bug Fixes
19+
20+
* remove unnecessary logs to reduce Coralogix usage ([#1214](https://github.com/adobe/spacecat-api-service/issues/1214)) ([148e945](https://github.com/adobe/spacecat-api-service/commit/148e94546f437fdf4bc6f81749beeec65587a01e))
21+
22+
## [1.176.3](https://github.com/adobe/spacecat-api-service/compare/v1.176.2...v1.176.3) (2025-09-05)
23+
24+
25+
### Bug Fixes
26+
27+
* **deps:** update external major (major) ([#1080](https://github.com/adobe/spacecat-api-service/issues/1080)) ([2d91327](https://github.com/adobe/spacecat-api-service/commit/2d91327e0eb9d554420bee70c3f56b5b67620ff3))
28+
129
## [1.176.2](https://github.com/adobe/spacecat-api-service/compare/v1.176.1...v1.176.2) (2025-09-04)
230

331

.eslintrc.cjs renamed to eslint.config.js

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,32 @@
1010
* governing permissions and limitations under the License.
1111
*/
1212

13-
module.exports = {
14-
root: true,
15-
extends: '@adobe/helix',
16-
overrides: [
17-
{
18-
files: ['*.test.js', 'test/e2e/**/*'],
19-
rules: {
20-
'no-unused-expressions': 'off',
21-
},
13+
import { defineConfig, globalIgnores } from '@eslint/config-helpers'
14+
import {recommended, source, test} from '@adobe/eslint-config-helix';
15+
16+
export default defineConfig([
17+
globalIgnores([
18+
'.vscode/*',
19+
'.idea/*',
20+
'coverage/*',
21+
'test/*/fixtures/*'
22+
]),
23+
{
24+
extends: [ recommended ],
25+
plugins: {
26+
import: recommended.plugins.import,
27+
},
28+
rules: {
29+
'no-unused-expressions': 'off',
30+
'import/no-unresolved': ['error', { ignore: ['@octokit/rest'] }],
2231
},
23-
],
24-
};
32+
},
33+
{
34+
...source,
35+
files: [...source.files],
36+
},
37+
{
38+
...test,
39+
files: [...test.files],
40+
}
41+
]);

0 commit comments

Comments
 (0)