Matthew
Matthew
Where exactly are you doing this? I'm using the CLI tool pysemver and there's no options for this, hence the FR/bug. ``` $ pysemver bump build -h usage: semver bump...
I'm not on any "branch". I simply executed `pip install semver` and this is what I got. Seems I need to wait until that feature/branch is merged to main. ```...
Learned about this neato feature of pip: `$ pip install git+https://github.com/python-semver/python-semver.git@466-token` ``` $ pysemver --version semver 3.0.4 $ pysemver bump prerelease 1.1.0 1.1.0-rc.1 $ pysemver bump prerelease --token "ee" 1.1.0...
"it doesn't affect me, so I don't care" Nice attitude buddy. Anyways, it's still a valid bug for the rest of the world who might do things differently.
@itforgeuk fixed my issue using buildah inside K8S as executor for private gitlab pipeline. thanks!
I did this using GuzzleHttp, which I believe notion-sdk-php ends up using when used with CakePHP (the framework I use). ``` public static function addImage(string $imageLocation, string $imageName): string {...
I implemented something very similar in my own Notion class. I turned it into a "cron job" using [cakephp-queue](https://github.com/dereuromark/cakephp-queue) which runs weekly, and stores the users in `Cache::write('notionusers', $allUsers);` (simple...
``` 2025-09-18 00:11:04 error: body failed validation. Fix one: body.properties.Person.people[0].type should be not present, instead was `"person"`. body.properties.Person.people[0].name should be not present, instead was `"Bob Name"`. body.properties.Person.people[0].person should be not...
Must have been an undocumented change. Checkout this docs page for People, https://developers.notion.com/reference/page-property-values#people ``` "people": [{ "object": "user", "id": "c2f20311-9e54-4d11-8c79-7398424ae41e" }] ``` Seems the API now only wants the user's...
It would appear that Notion's own API service doesn't honor the API_VERSION anyways since this library uses the now outdated API version, sends older API data structures, but receives errors...