-
-
Notifications
You must be signed in to change notification settings - Fork 229
feat!: release v6 #2362
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
Draft
jonaslagoni
wants to merge
26
commits into
master
Choose a base branch
from
next
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
feat!: release v6 #2362
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
e5a8172
chore: add migration docs (#2358)
jonaslagoni f6a213f
fix: move jsonproperty annotation to getter (#2359)
jonaslagoni f05e773
docs: add json schema docs and examples (#2360)
jonaslagoni c6c6716
fix: ci not working for mac and block release (#2364)
jonaslagoni a324bce
chore(release): v5.10.2-next.1 (#2365)
asyncapi-bot 234cf9d
fix!: remove python deprecated option (#2363)
jonaslagoni cc17937
chore(release): v6.0.0-next.1 (#2366)
asyncapi-bot 91b85c8
fix!: remove deprecated interpreter options (#2361)
jonaslagoni ee1c359
chore(release): v6.0.0-next.2 (#2368)
asyncapi-bot a1c2d61
feat!: improve anonym messages (#2367)
jonaslagoni 8ef6b11
chore(release): v6.0.0-next.3 (#2370)
asyncapi-bot 454bc04
feat: support non-object model types for Rust (#2372)
jadinm 21068b8
chore(release): v6.0.0-next.4 (#2375)
asyncapi-bot 07d0cbf
feat!: improve anonym names (#2378)
jonaslagoni c9c363a
chore: merge branch 'master' into next
jonaslagoni 919e6ce
feat: update with master (#2380)
jonaslagoni 5876835
feat: trigger release (#2381)
jonaslagoni 9d436f5
feat: trigger release (#2382)
jonaslagoni 97fa422
chore(release): v6.0.0-next.5 (#2383)
asyncapi-bot c192e80
Merge branch 'master' into next
jonaslagoni 1d6e35a
fix!: typescript date mapping (#2393)
AarishMansur 29eac76
fix: bunch of changes cross language (#2395)
jonaslagoni ab6232f
feat: upgrade node to v20 (#2434)
jonaslagoni 9696fba
chore: add agents template (#2440)
jonaslagoni 7a7454f
fix: upgrade node to v22 (#2441)
jonaslagoni daa2412
chore(release): v6.0.0-next.6 (#2442)
asyncapi-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,4 +14,5 @@ java_runtime_node | |
| .scala-build | ||
|
|
||
| .cursorrules | ||
| .cursor | ||
| .cursor | ||
| .claude | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v18 | ||
| v22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Migration from v4 to v5 | ||
|
|
||
| There are no required changes to move from v4 to v5. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 8 days ago
In general, the fix is to explicitly declare a
permissionsblock in the workflow (at the root level or per job) that grants only the scopes required. This workflow just checks out code and runs Node.js and Go commands, so it only needs read access to repository contents; no write scopes are required.The best fix with minimal functional impact is to add a root-level
permissionsblock directly under thename:declaration so it applies to all jobs. In.github/workflows/runtime-go-testing.yml, add:on new lines after line 1 (
name: Runtime Testing Go Models). No other changes, imports, or additional configuration are needed.