Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix: 0.2.9 #18

Merged
merged 4 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
## Versions

- (**1.0.3**: abandonnée: pas de sens de ce système de version.)
- **0.1.0**: Projet initial en **javasciript**
- **0.1.0**: Projet initial en **javascript**
- **0.2.0**: Réécriture en **typescript**
- **1.0.0**: Quand le module sera stable

## 0.2.9
- Hotfix: Utilisation de la libraire `buffer` pour la compatibilité react native

## 0.2.8
- Prise en charge de la **double authentification**
- Avec ajout des types
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ keywords:
- ecoledirecte
- papillon
license: GPL-3.0
version: 0.2.7
date-released: '2024-03-30'
version: 0.2.9
date-released: '2024-04-14'
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@papillonapp/ed-core",
"version": "0.2.8",
"version": "0.2.9",
"description": "API EcoleDirecte pour PapillonApp (c)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -56,6 +56,7 @@
},
"dependencies": {
"@types/uuid": "^9.0.8",
"buffer": "^6.0.3",
"uuid": "^9.0.1"
}
}
2 changes: 2 additions & 0 deletions src/utils/base64.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import {Buffer} from "buffer";

/**
* This function decodes the b64 input string, and decode uri escaped chars, if escape function exists.
*
Expand Down
Loading