-
Notifications
You must be signed in to change notification settings - Fork 44
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
👟 Reproduction steps
In the latest release (16.0.0) the updateIntegerAttribute
and updateFloatAttribute
input parameters changed from:
databaseId, collectionId, key, required, min, max, xdefault?, newKey?
sdk-for-node/src/services/databases.ts
Line 1042 in f75abab
updateIntegerAttribute(databaseId: string, collectionId: string, key: string, required: boolean, min: number, max: number, xdefault?: number, newKey?: string): Promise<Models.AttributeInteger> { |
to
databaseId, collectionId, key, required, xdefault?, min?, max?, newKey?
sdk-for-node/src/services/databases.ts
Line 1031 in 91783da
updateIntegerAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: number, min?: number, max?: number, newKey?: string): Promise<Models.AttributeInteger> { |
but the release notes does not mention this.
I got a lot of errors in my app (Invalid 'max' param: Value must be a valid integer
) until I checked the code changes :)
👍 Expected behavior
Release notes should mention this
👎 Actual Behavior
Release notes did not mention this
🎲 Appwrite version
Different version (specify in environment)
💻 Operating system
Linux
🧱 Your Environment
No response
👀 Have you spent some time to check if this issue has been raised before?
- I checked and didn't find similar issue
🏢 Have you read the Code of Conduct?
- I have read the Code of Conduct
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working