Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cache: 'pnpm'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v1
uses: actions/configure-pages@v2
- name: Install dependencies
run: pnpm install
- name: Build doc
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/globals": "^28.1.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"@scaleway/eslint-config-react": "^3.5.5",
"@scaleway/eslint-config-react": "^3.5.8",
"@types/jest": "^28.1.7",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"cross-env": "^7.0.3",
Expand All @@ -94,10 +94,10 @@
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"read-pkg": "^7.1.0",
"rollup": "^2.78.1",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-visualizer": "^5.8.0",
"typedoc": "^0.23.11",
"rollup-plugin-visualizer": "^5.8.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.2"
},
"packageManager": "pnpm@7.9.5"
Expand Down
8 changes: 8 additions & 0 deletions packages/clients/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0-beta.9](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/sdk@0.1.0-beta.8...@scaleway/sdk@0.1.0-beta.9) (2022-09-05)

**Note:** Version bump only for package @scaleway/sdk





## [0.1.0-beta.8](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/sdk@0.1.0-beta.7...@scaleway/sdk@0.1.0-beta.8) (2022-08-26)


Expand Down
2 changes: 1 addition & 1 deletion packages/clients/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scaleway/sdk",
"version": "0.1.0-beta.8",
"version": "0.1.0-beta.9",
"license": "Apache-2.0",
"description": "Scaleway SDK.",
"keywords": [
Expand Down
7 changes: 4 additions & 3 deletions packages/clients/src/api/rdb/v1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,9 +777,10 @@ export class RdbV1GenAPI extends API {
)

/**
* Resetting a read replica resyncs data from the leader node. This operation
* can take some time, depending on the database's size. During this
* operation, the read replica will not be available. Endpoints will not change.
* When you resync a read replica, first it is reset, and then its data is
* resynchronized from the primary node. Your read replica will be unavailable
* during the resync process. The duration of this process is proportional to
* your Database Instance size. The configured endpoints will not change.
*
* @param request - The request {@link ResetReadReplicaRequest}
* @returns A Promise of ReadReplica
Expand Down
4 changes: 3 additions & 1 deletion packages/clients/src/api/redis/v1alpha1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ export class RedisV1Alpha1GenAPI extends API {
enrichForPagination('clusters', this.pageOfListClusters, request)

/**
* Migrate a cluster
* Upgrade your Database for Redis® cluster to a new version or scale it
* vertically / horizontally. Please note: scaling horizontally your Database
* for Redis® cluster will renew its TLS certificate.
*
* @param request - The request {@link MigrateClusterRequest}
* @returns A Promise of Cluster
Expand Down
2 changes: 1 addition & 1 deletion packages/clients/src/scw/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const version = 'v0.1.0-beta.8'
export const version = 'v0.1.0-beta.9'

export const userAgent = `scaleway-sdk-js/${version}`
Loading