diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c530730..bf601310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,50 @@ +# 42.2.0 (Mon Mar 24 2025) + +:tada: This release contains work from new contributors! :tada: + +Thanks for all your work! + +:heart: Lucas ([@cz-lucas](https://github.com/cz-lucas)) + +:heart: Endrik Einberg ([@enduity](https://github.com/enduity)) + +#### 🐛 Bug Fix + +- `@gitbeaker/rest` + - fix: Typing of Error description can be incorrect depending on the respose payload [#3703](https://github.com/jdalrymple/gitbeaker/pull/3703) ([@jdalrymple](https://github.com/jdalrymple)) +- `@gitbeaker/core` + - Allow using falsey values in isForm requests [#3702](https://github.com/jdalrymple/gitbeaker/pull/3702) ([@Scrumplex](https://github.com/Scrumplex) [@jdalrymple](https://github.com/jdalrymple)) + +#### 🔨 Technical Debt + +- `@gitbeaker/rest` + - Export error classes in rest package [#3690](https://github.com/jdalrymple/gitbeaker/pull/3690) ([@enduity](https://github.com/enduity)) + +#### 🗃️ Typescript Definitions + +- `@gitbeaker/core` + - Added masked_and_hidden option to the ProjectVariables [#3701](https://github.com/jdalrymple/gitbeaker/pull/3701) ([@cz-lucas](https://github.com/cz-lucas)) + - Make offset pagination for listing all CI Pipelines explicit [#3694](https://github.com/jdalrymple/gitbeaker/pull/3694) ([@jdalrymple](https://github.com/jdalrymple)) + - Remove filtering options from the Commit.mergeRequests function [#3698](https://github.com/jdalrymple/gitbeaker/pull/3698) ([@jdalrymple](https://github.com/jdalrymple)) + - Support ci_pipeline_variables_minimum_override_role in the Projects API [#3696](https://github.com/jdalrymple/gitbeaker/pull/3696) ([@jdalrymple](https://github.com/jdalrymple)) + - Fixing typo in CreateAndEditPushRuleOptions [#3697](https://github.com/jdalrymple/gitbeaker/pull/3697) ([@jdalrymple](https://github.com/jdalrymple)) + - Make an Issues milestone property optional [#3695](https://github.com/jdalrymple/gitbeaker/pull/3695) ([@jdalrymple](https://github.com/jdalrymple)) + - Adding missing Id attribute to the WebhookUserSchema [#3693](https://github.com/jdalrymple/gitbeaker/pull/3693) ([@jdalrymple](https://github.com/jdalrymple)) + +#### ⚠️ Pushed to `main` + +- `@gitbeaker/rest` + - Adding missing test keys [skip-ci] ([@jdalrymple](https://github.com/jdalrymple)) + +#### Authors: 4 + +- Endrik Einberg ([@enduity](https://github.com/enduity)) +- Justin Dalrymple ([@jdalrymple](https://github.com/jdalrymple)) +- Lucas ([@cz-lucas](https://github.com/cz-lucas)) +- Sefa Eyeoglu ([@Scrumplex](https://github.com/Scrumplex)) + +--- + # 42.1.0 (Mon Jan 20 2025) :tada: This release contains work from a new contributor! :tada: diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 6bdef6f3..a4ee3341 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,31 @@ +# v42.2.0 (Mon Mar 24 2025) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Lucas ([@cz-lucas](https://github.com/cz-lucas)), for all your work! + +#### 🐛 Bug Fix + +- Allow using falsey values in isForm requests [#3702](https://github.com/jdalrymple/gitbeaker/pull/3702) ([@Scrumplex](https://github.com/Scrumplex) [@jdalrymple](https://github.com/jdalrymple)) + +#### 🗃️ Typescript Definitions + +- Added masked_and_hidden option to the ProjectVariables [#3701](https://github.com/jdalrymple/gitbeaker/pull/3701) ([@cz-lucas](https://github.com/cz-lucas)) +- Make offset pagination for listing all CI Pipelines explicit [#3694](https://github.com/jdalrymple/gitbeaker/pull/3694) ([@jdalrymple](https://github.com/jdalrymple)) +- Remove filtering options from the Commit.mergeRequests function [#3698](https://github.com/jdalrymple/gitbeaker/pull/3698) ([@jdalrymple](https://github.com/jdalrymple)) +- Support ci_pipeline_variables_minimum_override_role in the Projects API [#3696](https://github.com/jdalrymple/gitbeaker/pull/3696) ([@jdalrymple](https://github.com/jdalrymple)) +- Fixing typo in CreateAndEditPushRuleOptions [#3697](https://github.com/jdalrymple/gitbeaker/pull/3697) ([@jdalrymple](https://github.com/jdalrymple)) +- Make an Issues milestone property optional [#3695](https://github.com/jdalrymple/gitbeaker/pull/3695) ([@jdalrymple](https://github.com/jdalrymple)) +- Adding missing Id attribute to the WebhookUserSchema [#3693](https://github.com/jdalrymple/gitbeaker/pull/3693) ([@jdalrymple](https://github.com/jdalrymple)) + +#### Authors: 3 + +- Justin Dalrymple ([@jdalrymple](https://github.com/jdalrymple)) +- Lucas ([@cz-lucas](https://github.com/cz-lucas)) +- Sefa Eyeoglu ([@Scrumplex](https://github.com/Scrumplex)) + +--- + # v42.1.0 (Mon Jan 20 2025) :tada: This release contains work from a new contributor! :tada: diff --git a/packages/rest/CHANGELOG.md b/packages/rest/CHANGELOG.md index d6c25f93..5a428585 100644 --- a/packages/rest/CHANGELOG.md +++ b/packages/rest/CHANGELOG.md @@ -1,3 +1,28 @@ +# v42.2.0 (Mon Mar 24 2025) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Endrik Einberg ([@enduity](https://github.com/enduity)), for all your work! + +#### 🐛 Bug Fix + +- fix: Typing of Error description can be incorrect depending on the respose payload [#3703](https://github.com/jdalrymple/gitbeaker/pull/3703) ([@jdalrymple](https://github.com/jdalrymple)) + +#### 🔨 Technical Debt + +- Export error classes in rest package [#3690](https://github.com/jdalrymple/gitbeaker/pull/3690) ([@enduity](https://github.com/enduity)) + +#### ⚠️ Pushed to `main` + +- Adding missing test keys [skip-ci] ([@jdalrymple](https://github.com/jdalrymple)) + +#### Authors: 2 + +- Endrik Einberg ([@enduity](https://github.com/enduity)) +- Justin Dalrymple ([@jdalrymple](https://github.com/jdalrymple)) + +--- + # v41.2.0 (Sun Nov 10 2024) #### 🐛 Bug Fix diff --git a/packages/rest/test/e2e/browser/General.ts b/packages/rest/test/e2e/browser/General.ts index f60e8f53..ac6e1d69 100644 --- a/packages/rest/test/e2e/browser/General.ts +++ b/packages/rest/test/e2e/browser/General.ts @@ -5,9 +5,9 @@ const { describe } = it; describe('Browser Import', () => { const keys = [ - "GitbeakerRequestError", - "GitbeakerRetryError", - "GitbeakerTimeoutError", + 'GitbeakerRequestError', + 'GitbeakerRetryError', + 'GitbeakerTimeoutError', 'AccessLevel', 'Agents', 'AlertManagement',