Preface
Our organization has purchased a javascript library and has found a bug that we need fixed for our next release. Since we purchased the library, we have a reasonable expectation of support, so the best/correct solution is to open a bug with the maintainers (optionally providing a patch) and wait until the next release when the bug is fixed.
However, there is business value to fixing the bug ourselves, since we may not be able to wait until the next release of the library to release our own product. We have determined that this business value trumps the preferred solution of waiting for the library maintainers to fix the bug and re-release.
Problem
We need the most optimal strategy for fixing the bug so that we can deploy our application without waiting for the library to fix the bug.
Current Solution & Weaknesses
Solution: Since the library is javascript, we have the source. License-permitting, we can locally version-control the source, create a branch, and make the bug fixes in the branch. Upon the next release of the library, we can update our versioned copy, merging as necessary, and then branch again if we need to make new fixes or enhancements later on.
Weakness: Changing the library code itself means that we are mucking with the internal implementation of the library, which may drastically change in future releases and cause merging nightmares that could introduce bugs.
Weakness: It introduces complexity internally for our developers. If the current developers implement this version-control solution, and then in a year a different developer needs to work with the application, the new developer may have no idea how the local solution works (since it's not really conventional).
Weakness: To me, it just doesn't feel right. I'm a proponent of "coding to the API", and modifying the library code feels like it's violating this (although the API is also wrong, since there's a bug). In general, it makes me cringe a bit to think of essentially forking the library and maintaining our own copy of it
Questions
Is the proposed solution the best solution, or is there a better and more acceptable alternative?
If the proposed solution is the best, how can I solve the weaknesses?
Ideally, I'd like the solution to be broader than the specific scope of this question. For example, the solution should also work if we were dealing with an open source Java library and needed to add specific business logic that only applies to us (and the library was not built in a way that we could conveniently extend).