Skip to content

Commit cf513b7

Browse files
Merge pull request #763 from kuzzleio/beta
fix(workflow): upgrade to ubuntu 24.04
2 parents 50d57ea + e9e993c commit cf513b7

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.github/workflows/pull_request.workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
lint:
77
name: Lint
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
strategy:
1010
matrix:
1111
node-version: ["18", "20"]
@@ -21,7 +21,7 @@ jobs:
2121
2222
unit-tests:
2323
name: Unit Tests
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-24.04
2525
needs: [lint]
2626
strategy:
2727
matrix:
@@ -36,7 +36,7 @@ jobs:
3636

3737
functional-tests:
3838
name: Functional Tests
39-
runs-on: ubuntu-20.04
39+
runs-on: ubuntu-24.04
4040
needs: [unit-tests]
4141
strategy:
4242
matrix:
@@ -54,7 +54,7 @@ jobs:
5454
documentation-snippet-tests:
5555
name: Documentation Snippet Tests
5656
needs: [unit-tests]
57-
runs-on: ubuntu-20.04
57+
runs-on: ubuntu-24.04
5858
steps:
5959
- uses: actions/checkout@v4
6060
- uses: actions/setup-node@v4

.github/workflows/push_branches.workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
release:
1111
name: Release process
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
permissions:
1414
contents: write
1515
issues: write
@@ -40,7 +40,7 @@ jobs:
4040
documentation_deploy:
4141
needs: [release]
4242
name: Documentation - Deploy
43-
runs-on: ubuntu-20.04
43+
runs-on: ubuntu-24.04
4444
steps:
4545
- name: Checkout
4646
uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [7.15.1-beta.1](https://github.com/kuzzleio/sdk-javascript/compare/v7.15.0...v7.15.1-beta.1) (2025-08-05)
2+
3+
4+
### Bug Fixes
5+
6+
* **mResponse:** the mResponseErrors document contain body property instead of _source ([cb7f0b4](https://github.com/kuzzleio/sdk-javascript/commit/cb7f0b4de96cab2e3f0fdb4593d1d57577de4dcd))
7+
* **workflow:** upgrade to ubuntu 24.04 ([f52e71c](https://github.com/kuzzleio/sdk-javascript/commit/f52e71c9aab88787062bdc076c3914f2fff1765f))
8+
19
# [7.15.0](https://github.com/kuzzleio/sdk-javascript/compare/v7.14.0...v7.15.0) (2025-02-12)
210

311

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-sdk",
3-
"version": "7.15.0",
3+
"version": "7.15.1-beta.1",
44
"description": "Official Javascript SDK for Kuzzle",
55
"author": "The Kuzzle Team <[email protected]>",
66
"repository": {

0 commit comments

Comments
 (0)