-
Notifications
You must be signed in to change notification settings - Fork 158
Comparing changes
Open a pull request
base repository: ua-parser/uap-python
base: 1.0.0a2
head repository: ua-parser/uap-python
compare: master
- 14 commits
- 13 files changed
- 3 contributors
Commits on Nov 28, 2024
-
Hopefully I've not missed one hidden somewhere. Also update the development status because y not. Closes #234
Configuration menu - View commit details
-
Copy full SHA for 9594776 - Browse repository at this point
Copy the full SHA 9594776View commit details -
Link readme to the default / stable documentation not latest
It doesn't seem like you can deep link into the default? Not entirely clear, I'll probably have to read up on rtfd redirections but that's probably fine for now.
Configuration menu - View commit details
-
Copy full SHA for 3bd09b7 - Browse repository at this point
Copy the full SHA 3bd09b7View commit details
Commits on Dec 5, 2024
-
Turns out I did a booboo which was predictable, and if we want to track the versioning of uap-core we can't just start diverging. post-releases provide a path forwards, but was not initially predicted. Special case the existing stable releases in the script, might do something smarter eventually if necessary but...
Configuration menu - View commit details
-
Copy full SHA for e5bbe5a - Browse repository at this point
Copy the full SHA e5bbe5aView commit details -
Remove dependency from ua-parser-builtins
It's not super useful, and apparently it causes issues for some tools / workflows (TBF I was surprised pip was fine with it). Fixes #246
Configuration menu - View commit details
-
Copy full SHA for ca65e02 - Browse repository at this point
Copy the full SHA ca65e02View commit details
Commits on Dec 7, 2024
-
Specify the PyPy version to target in tox
This helps ensure that PyPy 3.10 is actually getting tested locally.
Configuration menu - View commit details
-
Copy full SHA for e5a1348 - Browse repository at this point
Copy the full SHA e5a1348View commit details
Commits on Dec 22, 2024
-
- Can't switch release actions to trusted publishing, see #224. - Remove git credentials persistence everywhere. - Fix "unsafe" template expansion in release-builtins. It should not be accessible to any untrusted third party as it's only on `workflow_dispatch` and `schedule`, but it can't hurt. Fixes #249
Configuration menu - View commit details
-
Copy full SHA for 9f170aa - Browse repository at this point
Copy the full SHA 9f170aaView commit details
Commits on Feb 1, 2025
-
I assume ruff's updated a few things since last time it was run, as it now fails.
Configuration menu - View commit details
-
Copy full SHA for 5f5f338 - Browse repository at this point
Copy the full SHA 5f5f338View commit details -
Fix memoisation of lazy parser & bump version
Reported by @Rafiot: the lazy parser is not memoised, this has limited effect on the basic / pure Python parser as its initialisation is trivial, but it *significantly* impact the re2 and regex parsers as they need to process regexes into a filter tree. The memoization was mistakenly removed in #230: while refactoring initialisation I removed the setting of the `parser` global. - add a test to ensure the parser is correctly memoized, not re-instantiated every time - reinstate setting the global - add a mutex on `__getattr__`, it should only be used on first access and avoids two threads creating an expensive parser at the same time (which is a waste of CPU) Fixes #253
Configuration menu - View commit details
-
Copy full SHA for ce12905 - Browse repository at this point
Copy the full SHA ce12905View commit details
Commits on Feb 15, 2025
-
builtins: fallback to package.json for uap-core version
In case where uap-core isn't a git repo (e.g. git archive), use uap-core's `package.json` as a fallback for getting a version.
Configuration menu - View commit details
-
Copy full SHA for 1b64406 - Browse repository at this point
Copy the full SHA 1b64406View commit details -
Fix fallback input for release action
Apparently the way submodules repos are configured leads to the branches not being mirrored locally (?) As such, the release job's fallback of checking out `'master'` fails whether triggered[^1] or scheduled[^2]. [^1]: https://github.com/ua-parser/uap-python/actions/runs/13090871627 [^2]: https://github.com/ua-parser/uap-python/actions/runs/13092233962
Configuration menu - View commit details
-
Copy full SHA for 2ca789e - Browse repository at this point
Copy the full SHA 2ca789eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea7a5ae - Browse repository at this point
Copy the full SHA ea7a5aeView commit details -
Since the environment is required via `workflow_dispatch`, the only fallback is scheduled release in which case we're publishing to pypy.
Configuration menu - View commit details
-
Copy full SHA for 60b35ec - Browse repository at this point
Copy the full SHA 60b35ecView commit details
Commits on Mar 3, 2025
-
Fix fallback input for release action for real
Turns out `'master'` probably worked all along as a fallback, the problem is that I was using `'master '`, with a trailing space, which was not a branch git managed to find for obvious reason, and since I carried the error into the fully qualified reference... is still didn't work. And manual triggers didn't have the issue because the tag was `required`, so I'd have to input the tag by hand every time, and the fallback value would be bypassed. - fix the fallback value - remove the requirement on `tag`, such that it's possible to manually trigger the action in a default state
Configuration menu - View commit details
-
Copy full SHA for 997990f - Browse repository at this point
Copy the full SHA 997990fView commit details
Commits on Jun 9, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 911b7a3 - Browse repository at this point
Copy the full SHA 911b7a3View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.0.0a2...master