René's URL Explorer Experiment


Title: Asterisk Java road map proposal · Issue #405 · asterisk-java/asterisk-java · GitHub

Open Graph Title: Asterisk Java road map proposal · Issue #405 · asterisk-java/asterisk-java

X Title: Asterisk Java road map proposal · Issue #405 · asterisk-java/asterisk-java

Description: Hello 👋 Dear @asterisk-java/contributors, @asterisk-java/owners and everyone who want to support us! I would like to invite all of you to this conversation. These are the next steps of making the asterisk-java project great again. ❗ Disc...

Open Graph Description: Hello 👋 Dear @asterisk-java/contributors, @asterisk-java/owners and everyone who want to support us! I would like to invite all of you to this conversation. These are the next steps of making the a...

X Description: Hello 👋 Dear @asterisk-java/contributors, @asterisk-java/owners and everyone who want to support us! I would like to invite all of you to this conversation. These are the next steps of making the a...

Opengraph URL: https://github.com/asterisk-java/asterisk-java/issues/405

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Asterisk Java road map proposal","articleBody":"Hello :wave:\r\n\r\nDear @asterisk-java/contributors, @asterisk-java/owners and everyone who want to support us!\r\n\r\nI would like to invite all of you to this conversation.\r\nThese are the next steps of making the asterisk-java project great again.\r\n\r\n---\r\n\r\n### :exclamation: Disclaimer \r\nThis is only a *proof-of-concept* and should be treated as a *proposal* and a **base for the discussion**.\r\n\r\n\u003csub\u003eI hope responses will be faster.\u003c/sub\u003e\r\n\r\n---\r\n\r\n\u003e :bangbang:\r\n\u003e If you don't agree with any changes or proposals, **let me know** by using the reaction button, or more helpfully, by giving ***constructive feedback*** on what is wrong and how it should be handled.\r\n\r\n---\r\n\r\nI've diagnosed a couple of problematic areas.\r\n\r\n## 1. Code maintenance and releases\r\n\r\n### :boom: Problems:\r\n* Right now, releases are done by some weird Dart release scripts, which are neither Java nor GitHub friendly. \r\n* We don't have any changelog. Nowadays, this is bad practice and very uninformative.\r\n* In addition, a lot of changes are made without any issue or even a short description of the reason for changes.\r\n\r\n### :bulb: Solutions:\r\n* Do release using GitHub Releases connected with GitHub Actions and Maven Release Plugin (or another way, but using Java).\r\n* GitHub Releases helps us with the changelog.\r\n* All changes must have an appropriate issue or pull request with a short description. Master (maybe main?) should be blocked for direct pushes. Every change should be done via pull requests (for everyone!) and reviewed.\r\n\r\n## 2. Project structure\r\n\r\n### :boom: Problems:\r\n* Right now everything is mixed into one module. If you want to run only fastagi or manager - you can't.\r\n* There aren't boundaries between modules.\r\n\r\n### :bulb: Solutions:\r\nI suggest the following project structure:\r\n\r\n```\r\nasterisk-java-parent        (POM)\r\n├── asterisk-java-agi       (POM)\r\n│   ├── asterisk-java-agi-asyncagi  (JAR)    dependencies: asterisk-java-agi-command, asterisk-java-agi-core, asterisk-java-ami-manager\r\n│   ├── asterisk-java-agi-command   (JAR)\r\n│   ├── asterisk-java-agi-core      (JAR)\r\n│   └── asterisk-java-agi-fastagi   (JAR)    dependencies: asterisk-java-agi-core, asterisk-java-agi-command\r\n├── asterisk-java-ami       (POM)\r\n│   ├── asterisk-java-ami-action    (JAR)\r\n│   ├── asterisk-java-ami-event     (JAR)\r\n│   └── asterisk-java-ami-manager   (JAR)   dependencies: asterisk-java-ami-action, asterisk-java-ami-event\r\n├── asterisk-java-common    (JAR)\r\n├── asterisk-java-live      (JAR)           dependencies: asterisk-java-ami-manager\r\n└── asterisk-java-pbx       (JAR)           dependencies: asterisk-java-agi-fastagi, asterisk-java-ami-action, asterisk-java-ami-event\r\n```\r\n\r\nWhy are modules good? \r\n* They give an overview of how asterisk-java and Asterisk itself are designed. They also provide boundaries of responsibility.\r\n* Prevent mixing objects (exceptions, models, etc.) between modules.\r\n* Gives possibility to extend in the future (we can easily add e.g. ARI module).\r\n\r\n## 3. Supported versions\r\n\r\n### :boom: Problems:\r\nCurrently the project doesn't have clearly defined Asterisk and Java supported versions.\r\n\r\n### :bulb: Solutions:\r\n\r\n#### Java\r\n* All LTS versions shlould be supported and tested (8, 11, 17).\r\n* If any Java version becomes EOL, we should drop support in the next major release (for Java 8 it's 2025-03-31).\r\n\r\n#### Asterisk\r\nFor Asterisk versions 16, 18 and 20 the major should be 4.x.x. When 16 reaches its EOL in 2023-10-09, we should change\r\nthe major to 5.x.x. We should also change the major version when a new Asterisk LTS version is released.\r\n\r\n##### asterisk-java project release cycle:\r\n\r\n| Asterisk Java | Asterisk   | Java          | EOL        | Reason                                                       |\r\n|---------------|------------|---------------|------------|--------------------------------------------------------------|\r\n| 4.x.x         | 16, 18, 20 | 8, 11, 17     | 2023-10-09 | Java 21 released\u003cbr/\u003eAsterisk 16 EOL                         |\r\n| 5.x.x         | 18, 20     | 8, 11, 17, 21 | 2024-10-19 | Asterisk 22 released                                         |\r\n| 6.x.x         | 18, 20, 22 | 8, 11, 17, 21 | 2025-03-31 | Java 8 EOL                                                   |\r\n| 7.x.x         | 18, 20, 22 | 11, 17, 21    | 2025-10-20 | Asterisk 18 EOL                                              |\r\n| 8.x.x         | 20, 22     | 11, 17, 21    | 2026-10-19 | Java 11 EOL\u003cbr/\u003eJava 27(?) released\u003cbr/\u003eAsterisk 24 released |\r\n\r\n#### :exclamation: Disclaimer\r\nWith this release process I have a lot of confusion. I'm not 100% sure it's a good way to do it.\r\n\r\n## 4. Labels\r\n\r\n### :boom: Problems:\r\n* Without labels, we cannot make any automation.\r\n* Also issues and pull requests are uncategorized.\r\n\r\n### :bulb: Solutions:\r\nCreate labels and use it.\r\n\r\nConnected with particular Asterisk version.\r\n```\r\nasterisk/16\r\nasterisk/18\r\nasterisk/20\r\n...\r\n```\r\n\r\nType of issue or pull request.\r\n```\r\nkind/bug\r\nkind/breaking\r\nkind/dependencies\r\nkind/documentation\r\nkind/enhancement\r\nkind/feature\r\nkind/question\r\nkind/refactor\r\nkind/wontfix\r\n```\r\n\r\nAdditional information for issue or pull request.\r\n```\r\nmeta/skip-changelog\r\n```\r\n\r\nConnected for particular module.\r\n```\r\nmodule/agi\r\nmodule/ami\r\nmodule/live\r\nmodule/pbx\r\n```\r\n\r\n## 5. Cleanup branches\r\n\r\n### :boom: Problem:\r\nThere is a bunch of the stale branches.\r\n\r\n### :bulb: Solution:\r\nRemove all of them, and leave only master.\r\n\r\n## 6. Integration tests\r\n\r\n### :boom: Problem:\r\nRight now, there aren't any integration tests. We are not sure that our lib working with supported Asterisk versions.\r\n\r\n### :bulb: Solution:\r\nWe should running integration test for each supported Asterisk version. To achieve this, we can use Testcontainers.\r\n\r\nHere is a proof-of-concept of super easy and a little bit dumb example, but this prove it's possible to run integration tests automatically.\r\n\r\nhttps://github.com/piotrooo/asterisk-java/commit/dbefe8ba44260a72d7090caf7b46e4709343c63c\r\n\r\nTests should be run for all supported Asterisk versions.\r\n\r\n## 7. Web page asterisk-java.org\r\n\r\n### :boom: Problem:\r\nWeb page is very outdated.\r\n\r\n### :bulb: Solution:\r\n* Create new web page with introduction, modules overview, documentation, some explanations.\r\n* We should use some static site generator like [MkDocs](https://www.mkdocs.org/) or [AsciiDoc](https://asciidoc.org/) or some other.\r\n\r\n## 8. Logo\r\n\r\n### :boom: Problem:\r\nLast but not least, asterisk-java doesn't have own logo :sob:\r\n\r\n### :bulb: Solution:\r\nI've asked my good friend @tomekbbk, who is also a graphic and UX designer in company where I've working, to create logo.\r\nThis is what he designed for us:\r\n\r\n![Logo_b_textmdpi](https://user-images.githubusercontent.com/2005054/194589419-493b8786-83e4-4cfc-adde-6ad030e20361.png)\r\n\r\n![Sygnetmdpi](https://user-images.githubusercontent.com/2005054/194589515-baa36106-4b3c-4a79-9443-1247d2542887.png)\r\n\r\nBTW. Connect Java coffee cup with Asterisk logo = FTW :star_struck:\r\n\r\n---\r\n\r\n## How should we start?\r\n\r\n###### In my opinion\r\n\r\n1. Create labels for issues and pull requests and start to use them\r\n2. Cleanup release cycle - use maven plugin and generate change log (GitHub Actions and GitHub Releases)\r\n3. Block master for direct pushes\r\n4. Cleanup stale branches\r\n5. Try to address and fix at least couple of issues\r\n6. Modularize project\r\n7. Add integration tests\r\n8. Web page\r\n\r\n_After that changes, version **4.0.0** should be  #released!_\r\n\r\n---\r\n\r\n### If something needs more clarification let me know. I'll try to response.\r\n","author":{"url":"https://github.com/piotrooo","@type":"Person","name":"piotrooo"},"datePublished":"2022-10-07T14:08:54.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/405/asterisk-java/issues/405"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:58ff5f57-020c-65ca-0af3-e6f12c4febd1
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id80F2:3EFEAF:46FCCB8:60077E5:69733FC5
html-safe-nonce37160ac4ea5a195ced5e5bc5b83e8eb5b1b08a685142641bba3971da4f5f16bc
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MEYyOjNFRkVBRjo0NkZDQ0I4OjYwMDc3RTU6Njk3MzNGQzUiLCJ2aXNpdG9yX2lkIjoiNDgwMDc5OTU1NDg2Mjc5MjY0NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace50ede082f03031f23da48a6016702d40bb1f80b5a44ee7de43da447c5cb3e5f
hovercard-subject-tagissue:1401240895
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/asterisk-java/asterisk-java/405/issue_layout
twitter:imagehttps://opengraph.githubassets.com/94daf23f2d5010e723642881e4bc284fc8e6cff41a27e412f66132465b6e9802/asterisk-java/asterisk-java/issues/405
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/94daf23f2d5010e723642881e4bc284fc8e6cff41a27e412f66132465b6e9802/asterisk-java/asterisk-java/issues/405
og:image:altHello 👋 Dear @asterisk-java/contributors, @asterisk-java/owners and everyone who want to support us! I would like to invite all of you to this conversation. These are the next steps of making the a...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepiotrooo
hostnamegithub.com
expected-hostnamegithub.com
None574266c5e0389fb19fcea86ddb6d5b0008f148ada57d7a37ec4c90a19caee8f6
turbo-cache-controlno-preview
go-importgithub.com/asterisk-java/asterisk-java git https://github.com/asterisk-java/asterisk-java.git
octolytics-dimension-user_id12164530
octolytics-dimension-user_loginasterisk-java
octolytics-dimension-repository_id1195396
octolytics-dimension-repository_nwoasterisk-java/asterisk-java
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1195396
octolytics-dimension-repository_network_root_nwoasterisk-java/asterisk-java
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3c64ddf9c1ec6ebf99c7b6faf0c61676d36f64c0
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/asterisk-java/asterisk-java/issues/405#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fasterisk-java%2Fasterisk-java%2Fissues%2F405
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fasterisk-java%2Fasterisk-java%2Fissues%2F405
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=asterisk-java%2Fasterisk-java
Reloadhttps://github.com/asterisk-java/asterisk-java/issues/405
Reloadhttps://github.com/asterisk-java/asterisk-java/issues/405
Reloadhttps://github.com/asterisk-java/asterisk-java/issues/405
asterisk-java https://github.com/asterisk-java
asterisk-javahttps://github.com/asterisk-java/asterisk-java
Notifications https://github.com/login?return_to=%2Fasterisk-java%2Fasterisk-java
Fork 297 https://github.com/login?return_to=%2Fasterisk-java%2Fasterisk-java
Star 450 https://github.com/login?return_to=%2Fasterisk-java%2Fasterisk-java
Code https://github.com/asterisk-java/asterisk-java
Issues 24 https://github.com/asterisk-java/asterisk-java/issues
Pull requests 5 https://github.com/asterisk-java/asterisk-java/pulls
Discussions https://github.com/asterisk-java/asterisk-java/discussions
Actions https://github.com/asterisk-java/asterisk-java/actions
Wiki https://github.com/asterisk-java/asterisk-java/wiki
Security 0 https://github.com/asterisk-java/asterisk-java/security
Insights https://github.com/asterisk-java/asterisk-java/pulse
Code https://github.com/asterisk-java/asterisk-java
Issues https://github.com/asterisk-java/asterisk-java/issues
Pull requests https://github.com/asterisk-java/asterisk-java/pulls
Discussions https://github.com/asterisk-java/asterisk-java/discussions
Actions https://github.com/asterisk-java/asterisk-java/actions
Wiki https://github.com/asterisk-java/asterisk-java/wiki
Security https://github.com/asterisk-java/asterisk-java/security
Insights https://github.com/asterisk-java/asterisk-java/pulse
New issuehttps://github.com/login?return_to=https://github.com/asterisk-java/asterisk-java/issues/405
New issuehttps://github.com/login?return_to=https://github.com/asterisk-java/asterisk-java/issues/405
Asterisk Java road map proposalhttps://github.com/asterisk-java/asterisk-java/issues/405#top
https://github.com/piotrooo
https://github.com/piotrooo
piotrooohttps://github.com/piotrooo
on Oct 7, 2022https://github.com/asterisk-java/asterisk-java/issues/405#issue-1401240895
piotrooo@dbefe8bhttps://github.com/piotrooo/asterisk-java/commit/dbefe8ba44260a72d7090caf7b46e4709343c63c
MkDocshttps://www.mkdocs.org/
AsciiDochttps://asciidoc.org/
@tomekbbkhttps://github.com/tomekbbk
https://user-images.githubusercontent.com/2005054/194589419-493b8786-83e4-4cfc-adde-6ad030e20361.png
https://user-images.githubusercontent.com/2005054/194589515-baa36106-4b3c-4a79-9443-1247d2542887.png
Asterisk Java Projecthttps://github.com/orgs/asterisk-java/projects/2
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.