Jay Lee
Jay Lee
Today some Calendar commands use admin credentials / oauth2.txt while others use service account DwD / oauth2service.json. There's some history behind this, Calendar has always been somewhat unique among Google...
https://developers.google.com/workspace/calendar/api/v3/reference/calendars#resource `autoAcceptInvitations` is a new attribute recently added. Let's make sure GAM is capable of setting this.
https://workspaceupdates.googleblog.com/2025/11/secondary-calendar-management-with-dedicated-owners.html Google is changing how secondary calendars are owned which presents some API behavior changes. Let's make sure GAM can report and handle these changes.
https://github.com/jay0lee/google-api-tracker/commit/b23aafef6396bca38e9a7fae3a19d4c83bdc8889
https://cloud.google.com/identity/docs/reference/rest/v1beta1/policies/create Create, patch and delete methods now exist for policy APIs. Let's investigate their usage. There's no docs on which policies can be written yet nor are there examples I...
Builds are dying with errors like: https://github.com/GAM-team/GAM/actions/runs/18858079852/job/53810542391 the issue appears to be: https://github.com/LudovicRousseau/pyscard/issues/240 which is fixed but needs a new pyscard release. Until then we'll need to install pyscard from...
Running a command with: ``` gam config debug_level 1 ```` offers significant details on the API calls GAM is making that can be vital in troubleshooting an issue. However it...
https://docs.python.org/3/howto/free-threading-python.html We should consider eventually moving to Python free threading. This means the infamous Python global interpreter lock (GIL) is disabled and can offer better performance on modern multi-core hyper...
https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ - The `macos-13` x86-64 image we are using will start browning out in Nov and be turned off in Dec. We should just go ahead and remove it here...
First draft of a formal release process / checklist is at: https://github.com/GAM-team/GAM/wiki/GAM-Release-Process @taers232c can you offer your thoughts here?