You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
60Along the lines of what you've said here, the reality is that people make mistakes, including library authors. Once you've published a mistake like this in your API, it's difficult to resolve without breaking clients. A major release is when such things are addressed by responsible library authors.JimmyJames– JimmyJames2021-09-02 18:59:40 +00:00Commented Sep 2, 2021 at 18:59
-
52Btw, "Major is going to break things" (& Minor is adding new things but backward compatible and Patch is just bugfix) is called Semantic VersioningJan 'splite' K.– Jan 'splite' K.2021-09-03 07:42:21 +00:00Commented Sep 3, 2021 at 7:42
-
2What infuriates me is that they then drop the old library. "Ok, now that GTK2 is out, no need to ship GTK+ any more". Or "Now that Java16 is out, no need to ship Java15 any more" — yes, there bloody well is; our build system won't work with Java16.Edward Falk– Edward Falk2021-09-04 06:51:09 +00:00Commented Sep 4, 2021 at 6:51
-
6@EdwardFalk Especially for major libraries that you depend on, you are responsible for knowing their published release plans. For instance, you should know that Java has LTS versions and non-LTS versions, and non-LTS versions will not be supported after the next release. If you need LTS support, use an LTS version. Personally, I'd hate if more languages/libraries took the Python approach of "support the old version forever because people can't be asked to upgrade, splitting the community as people continue to make new code on the old version". Either upgrade, or accept you don't get updates.Azuaron– Azuaron2021-09-04 10:38:18 +00:00Commented Sep 4, 2021 at 10:38
-
2@EdwardFalk as long as it's OS, there is no dropping. What was made remains available and usable forever. Of course, people that put out free libraries are not obliged to keep work on some legacy version because you want new features there :)Džuris– Džuris2021-09-04 15:49:00 +00:00Commented Sep 4, 2021 at 15:49
|
Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-php