Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major Release v36.0.0 - Improved Typing, and API support (16.0) #2258

Merged
merged 24 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9df303a
Major Release
jdalrymple Mar 31, 2023
edc2027
Adding additional support for 15.11
jdalrymple Mar 31, 2023
f66a1a4
Reviewing types and support part 2
jdalrymple Mar 31, 2023
8bbe9b4
Reviewing types and support part 3
jdalrymple Apr 1, 2023
0314b2b
Reviewing types and support part 4
jdalrymple Apr 4, 2023
53d9098
Reviewing types and support part 5
jdalrymple Apr 4, 2023
ad20631
Reviewing types and support part 6
jdalrymple Apr 4, 2023
b719aa3
Reviewing types and support part 7
jdalrymple Apr 5, 2023
ee3fc44
Fixing url generation
jdalrymple Apr 5, 2023
afb7978
Adding tests for url validation
jdalrymple Apr 6, 2023
d09acb1
Fixing edge case in ci script
jdalrymple Apr 6, 2023
4dd06ed
Fixing additional caveats with the URL handling
jdalrymple Apr 6, 2023
004b897
Reviewing types and support part 8
jdalrymple Apr 6, 2023
d0a0ab5
Reviewing types and support part 9
jdalrymple Apr 8, 2023
421ca0a
Reviewing types and support part 10
jdalrymple Apr 10, 2023
3b88fdf
Allow undefined value
jdalrymple Apr 11, 2023
a28c6ac
Reviewing types and support part 11
jdalrymple Apr 13, 2023
623a256
Reviewing types and support part 12
jdalrymple Apr 22, 2023
df21bda
Reviewing types and support part 13
jdalrymple Apr 26, 2023
d846b00
Updating packages
jdalrymple Apr 26, 2023
93851bb
Merge branch 'support-gitlab-5.11' into 1897-explicit-typing
jdalrymple Apr 26, 2023
790f262
Update merge requests diffs method
jdalrymple Apr 26, 2023
5b2f2b2
Updating unit tests
jdalrymple Apr 26, 2023
a2be651
Updating e2e tests
jdalrymple Apr 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
420 changes: 384 additions & 36 deletions .all-contributorsrc

Large diffs are not rendered by default.

66 changes: 34 additions & 32 deletions .autorc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,58 +6,60 @@ plugins:
- first-time-contributor
- all-contributors
- ./scripts/auto-before-commit-changelog-plugin.js
- - omit-release-notes
- username:
- coqbot
- - omit-commits
- username:
- coqbot

prereleaseBranches:
- next

noDefaultLabels: true

labels:
- name: breaking
changelogTitle: πŸ’₯ Breaking Change
description: Increment the major version when merged
description: Changes are not backwards compatible
releaseType: major

- name: feature
changelogTitle: πŸ’₯ Feature
description: A new feature addtion
- name: type:feature
changelogTitle: ✨ Feature
description: Changes add a new feature
releaseType: minor

- name: enhancement
changelogTitle: πŸš€ Enhancement
description: Increment the minor version when merged
- name: type:bug
changelogTitle: πŸ› Bug Fix
description: Changes fix a minor bug
releaseType: minor

- name: bug
changelogTitle: πŸ› Bug Fix
description: Fixing a minor bug
- name: type:hot fix
changelogTitle: πŸš‘ Hot Fix
description: Changes fix a critical bug
releaseType: minor

- name: patch
changelogTitle: 🀷 Misc
description: Increment the patch version when merged
- name: type:technical debt
changelogTitle: πŸ”¨ Technical Debt
description: Changes only affect the internal code, improving performance/quality
releaseType: patch

- name: security
changelogTitle: πŸΏβ€β™€οΈ Security
- name: type:security
changelogTitle: πŸ”’ Security
description: Changes improve the code security
releaseType: patch

- name: technical debt
changelogTitle: πŸ‘·πŸΌβ€β™€οΈ Technical Debt
description: Changes only affect the internal code, improving performance/quaility
- name: type:dependencies
changelogTitle: ↕️ Dependencies
description: Changes upgrade or remove dependencies
releaseType: patch

- name: dependencies
changelogTitle: πŸ”© Dependencies
description: Dependencies Updates
- name: type:testing
changelogTitle: 🚨 Tests
description: Changes affect test code
releaseType: none

- name: test
changelogTitle: πŸ”© Tests
description: Test Updates
releaseType: none

- name: documentation
changelogTitle: πŸ“ Documentation
- name: type:documentation
changelogTitle: πŸ“š Documentation
description: Changes only affect the documentation
releaseType: none

- name: skip-release
description: Preserve the current version when merged
releaseType: skip
Loading