khamaileon

Results 27 comments of khamaileon

2.3.1 works too. It's the [vue-i18n-extract upgrade](https://github.com/intlify/vue-cli-plugin-i18n/commit/4ef7b1a4538dad156ef64c4b739811e402a9ba7c) that causing this.

@pollitux If I understand your problem well, it seems to me that it comes from the serialization. msgpack works only with primitive types. You can try with another serialization library....

Hi @bernardcooke53 👋 Thanks for the answer. Do you know how to use that option in a Github action pipeline? ```yaml steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name:...

Found it (well, guessed 😅) ```yaml steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Python Semantic Release uses: python-semantic-release/[email protected] with: github_token: ${{ secrets.GITHUB_TOKEN }} vcs_release: true ```

Oh yes, thanks for the correction. Future readers would have been disappointed 😄

Is there anything missing to merge it?

For the moment, it works with OTP and Google. I haven't found the corresponding fields in Valhalla. I'd like to improve the unit tests before adding more providers.

I see your point. I wanted to be explicit because API input and output formats are often very disparate. For example, OTP takes a local datetime as input and returns...

@nilsnolde I committed a "naive" version of the feature. But with hindsight, I think the "aware" version is the best. If you want to use python datetime objects, they have...